Security Alert: Confirmed Malware
AI Writer
ID: mldeggofnfaiinachdeidpecmflffoam
Supported Languages
Extension Info & Metadata
Publisher Contextual Analysis
- Author
- https://aiwriter.expertView Profile
- Privacy
- Privacy Policy
- MX records exist
- No
- Domain exists
- No
- Is disposable
- No
- Is role-based
- Yes
- Mailbox exists
- No
- Website
- Visit
Create high-quality, SEO-optimized content with AI Writer, the intelligent ai text editor. Elevate your content by tailored keywords
๐ Revolutionize Your Content Creation with Artificial Intelligence Magic Say goodbye to mundane writing tasks! Introducing a phenomenal browser extension that taps into the unlimited potential of artificial intelligence to create high-quality, SEO-optimized articles perfectly tailored to your specific needs. This isn't just an ai text editor; itโs a game-changing ai writer that boosts productivity and ensures your copy stands out! ๐ Elevate Your SEO Strategy with Intelligent AI Writing Tools Why struggle with keyword incorporation when you have an AI text generator ready to intelligently include all the right keywords? This writing tool makes sure your text ranks higher on search engines without sacrificing readability or engagement. ๐ผ Achieve More with AI Content Generator Whether youโre a marketer, blogger, or business owner, our ai content generator is designed to make your life easier. Forget about writer's block! Use this app to generate compelling, keyword-rich text effortlessly. ๐ค Smarter Word with AI Generator Text Our text generator ai is engineered to understand the context and nuances of your requirements. Itโs not just about producing text; itโs about creating meaningful copy that resonates with your audience. ๐ Write Flawlessly with AI Paragraph Writer Why write paragraphs the old-fashioned way when you can streamline the process with an artificial intelligence paragraph writer? Generate coherent, engaging, and informative paragraphs in an instant. ๐ The Magic of AI Paragraph Generator Struggling to generate quality paragraphs? The artificial intelligence paragraph generator has got you covered. It weaves keywords seamlessly into your text, producing high-quality wording every single time. ๐ Master SEO Writing AI with Effortless Ease SEO writing doesnโt have to be a chore. Our AI writing generator ensures that your text is SEO-optimized without compromising the flow or engagement. ๐ง Highlight the Benefits ๐ - Effortless keyword integration - High readability and engagement - Instant artificial intelligence powered SEO tools for improved ranking - Customizable content tailored to your needs - Time-efficient and user-friendly interface ๐ Why Opt for an AI Content Writer? 1. Save Time: Speed up your content creation process significantly. 2. SEO Superpowers: Utilize our tool to enhance your site's visibility. 3. Quality Content: Produce high-quality posts consistently with ai writing generator. 4. Customization: Tailor content to your specific needs with ai seo tools. 5. Engagement: Create engaging, reader-friendly text every time. ๐ก Unleash the Potential of AI Writing Tools Imagine having a partner that can effortlessly create engaging and SEO-optimized content. This seo writer ai makes it possible. Just sit back and watch as the ai writer does the heavy lifting! ๐ What You Can Achieve with this Tool? 1๏ธโฃ Enhanced SEO rankings with seamlessly integrated keywords. 2๏ธโฃ High-quality copy that captivates your audience. 3๏ธโฃ Custom writing tailored to niche requirements. 4๏ธโฃ Faster articla turnaround time with the AI writing tool. 5๏ธโฃ Consistent engagement and readability every single time. ๐ Boost Your Online Presence In today's digital age, leveraging ai for seo is a must. The ai text editor, equipped with intelligent algorithms, helps you stay ahead of the competition with top-notch content. ๐ง User-Friendly Interface Forget complex settings! Our AI writing tools offer an intuitive interface that makes content creation a breeze. Just input your requirements, and let the tool handle the rest. ๐ฏ Targeted Text Creation With the ai text generator, you donโt just create text; you create document that serves a purpose. The ai writing tool ensures your message reaches and resonates with the right audience. ๐ Diverse Applications From blog posts and articles to product descriptions and social media updates, our ai content generator fits all copy creation needs. The ai writer is your versatile companion for diverse writing tasks. ๐ Stay Ahead of Trends Harnessing the power of ai for seo not only improves your current standing but also keeps you ahead of emerging trends. The text generator ai adapts to the ever-changing digital landscape, ensuring your content remains relevant and effective. ๐ Elevate Your Content Strategy Ready to take your content game to the next level? With this powerful AI writing tool, the skyโs the limit. Your days of struggling with words are over; welcome to the future of writing โ powered by artificial intelligence! โ Join the Artificial Intelligence Revolution Today Donโt get left behind! Embrace the future of content creation with our ai paragraph generator and ai seo tools. Watch as your blog ranks higher, engages more and brings your message to life like never before!
This extension requests no permissions and has no recorded risk factors.
The server response field `data.text` is injected directly into the DOM via jQuery's `.html()` without any sanitization. Because the Content Security Policy in index.html includes `unsafe-inline`, inline event handlers (e.g. `onclick`, `onmouseover`) embedded in the server-returned HTML will execute inside the extension popup context. This gives the operator of `aiwriter.expert` the ability to run arbitrary JavaScript in the extension's privileged context at any time simply by changing the API response.
ajax_cfg.success = function(data, status, xhr) { $progress.hide(); console.log('xhr', xhr); console.log('response', data); $('[data-res]') .html(data.text); $('[data-res-wrapper]') .show(); initTextEditor();};Every form submission serialises the full form contents โ including the `product_description` and `keywords` fields โ and POSTs them to an external third-party server (`https://aiwriter.expert/api/generate-text`). The extension declares no permissions yet silently transmits whatever the user types to a remote server controlled by the developer. No privacy disclosure is shown to the user before submission.
var ajax_cfg = {};//ajax_cfg.method = $form.attr('method');ajax_cfg.method = 'post';ajax_cfg.url = 'https://aiwriter.expert/api/generate-text';ajax_cfg.data = new FormData($form[0]);ajax_cfg.processData = false;ajax_cfg.contentType = false;The popup's Content Security Policy explicitly permits `unsafe-inline` for script sources. This nullifies the primary protection CSP provides against injected HTML executing JavaScript, and directly enables the server-controlled HTML injection in `ai_writer.js` line 83 to execute inline event handlers within the extension popup's privileged context.
<meta http - equiv="Content-Security-Policy" content="script - src 'self''unsafe-inline'">On first install the extension immediately opens `https://aiwriter.expert/welcome`, allowing the remote server to record the installation event along with browser fingerprint data included in the HTTP request (IP address, User-Agent, timestamp). `setUninstallURL` similarly fires a beacon to the server when the extension is removed, enabling the operator to track the full install/uninstall lifecycle of every user without any disclosure.
chrome.runtime.onInstalled.addListener((details) => { if (details.reason === chrome.runtime.OnInstalledReason.INSTALL) { // Code to be executed on first install // eg. open a tab with a url chrome.tabs.create({ url: "https://aiwriter.expert/welcome", }); }});const UNINSTALL_URL = "https://aiwriter.expert/uninstall";chrome.runtime.setUninstallURL(UNINSTALL_URL);The entire HTML file is formatted with every tag broken across multiple lines with spaces inserted around operators and attribute assignments (e.g. `< html lang = "ru" >`). This unusual whitespace-fragmented formatting is inconsistent with normal development tooling output and is a known technique to evade regex-based static-analysis rules that scan for specific HTML patterns or attribute values. The `lang="ru"` attribute (Russian) also contrasts with the English-language UI copy.
< !DOCTYPE html> < html lang="ru"> < head> < meta http - equiv="content-type" content="text/html; charset=utf-8">By severity
Versions scanned
Showing 1 of 2 scanned versions with more than one unique finding. Counts are unique findings that include each version.
| Extension Version | Code Review Findings |
|---|---|
| 1.3 | 5 |
Files with findings
3 distinct paths โ top paths by unique finding count:
- index.html2
- js/ai_writer.js2
- js/background.js1
URLs
View the external URLs this extension communicates with to understand its network activity and data interactions.
Gain full insight into all external connections.
Upgrade for full visibility.
Gain full insight into all external connections.
Upgrade for full visibility.
Code Diff
Compare extension code between any two versions.
No comparable text files found between these versions.
Browse and explore files within this extension package
Gain full insight into all external connections.
Upgrade for full visibility.