{"id":107850,"date":"2026-04-15T07:13:52","date_gmt":"2026-04-15T10:13:52","guid":{"rendered":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/"},"modified":"2026-04-15T07:13:55","modified_gmt":"2026-04-15T10:13:55","slug":"this-fake-windows-support-website-delivers-password-stealing-malware","status":"publish","type":"post","link":"https:\/\/ubirataonline.com.br\/en\/this-fake-windows-support-website-delivers-password-stealing-malware\/","title":{"rendered":"This fake Windows support website delivers password-stealing malware"},"content":{"rendered":"<p><\/p>\n<div>\n<p>A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to steal passwords, payment details, and account access. Because the file looks legitimate and avoids detection, it can slip past both users and security tools.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-a-very-convincing-windows-update\"><strong>A very convincing Windows update<\/strong><\/h2>\n<p>We spotted the campaign at <code>microsoft-update[.]support<\/code>, a typosquatted domain dressed up to look like an official Microsoft support page. The site is written entirely in French (but these campaigns tend to spread quickly) and presents a fake cumulative update for Windows version 24H2, complete with a plausible KB article number. A large blue download button invites users to install the update. <\/p>\n<figure class=\"wp-block-image aligncenter size-large\"><figcaption class=\"wp-element-caption\">Fake Windows update site. Look at that convincing URL!<\/figcaption><\/figure>\n<p>What gets downloaded is <code>WindowsUpdate 1.0.0.msi,<\/code> an 83 MB Windows Installer package. At first glance, everything looks legitimate. Its file properties are carefully spoofed: the Author field reads \u201cMicrosoft,\u201d the title reads \u201cInstallation Database,\u201d and the Comments field claims it contains \u201cthe logic and data required to install WindowsUpdate.\u201d <\/p>\n<p>The package was built with WiX Toolset 4.0.0.5512, a legitimate open-source installer framework, and was created on April 4, 2026.<\/p>\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"831\" height=\"573\" src=\"https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/microsoft-update-fake-URL-installer-package-SD.png\" alt=\"Fake Windows update delivers an infostealer\" class=\"wp-image-397069\" srcset=\"https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/microsoft-update-fake-URL-installer-package-SD.png 831w, https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/microsoft-update-fake-URL-installer-package-SD.png?resize=300,207 300w, https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/microsoft-update-fake-URL-installer-package-SD.png?resize=768,530 768w\" sizes=\"auto, (max-width: 831px) 100vw, 831px\"\/><\/figure>\n<h2 class=\"wp-block-heading\" id=\"h-why-this-campaign-is-targeting-france\"><strong>Why this campaign is targeting France<\/strong><\/h2>\n<p>The choice to target French-speaking users is not random. France has suffered a historic cascade of data breaches over the past two years, leaving a staggering volume of personal information circulating on criminal marketplaces.  The breaches provide the raw data, and campaigns like this one turn that into highly believable scams.<\/p>\n<p>In October 2024, Free, France\u2019s second-largest internet service provider, confirmed that an attacker had <a href=\"https:\/\/www.darkreading.com\/cyberattacks-data-breaches\/french-isp-cyberattack-data-breach\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">accessed personal data<\/a> for roughly 19 million subscriber contracts, including bank account details. Just weeks earlier, Soci\u00e9t\u00e9 Fran\u00e7aise du Radiot\u00e9l\u00e9phone (SFR) disclosed its <a href=\"https:\/\/breach-hq.com\/organizations\/societe-francaise-du-radiotelephone-sfr\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">own breach<\/a> exposing customer names, addresses, phone numbers, and banking details.<\/p>\n<p>Earlier in 2024, France Travail, the national public employment service, suffered an intrusion that compromised the records of <a href=\"https:\/\/www.infosecurity-magazine.com\/news\/france-finesemployment-agency-5m\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">43 million people<\/a>, covering current and past jobseekers spanning two decades. Researchers also <a href=\"https:\/\/cybernews.com\/security\/french-records-exposed-by-mysterious-data-hoarder\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">discovered<\/a> an unprotected Elasticsearch server aggregating 90 million records from at least 17 separate French breaches into a single database.<\/p>\n<p>This torrent of leaked data has made France an attractive target for credential theft. <a href=\"https:\/\/www.kelacyber.com\/blog\/understanding-the-infostealer-epidemic\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">KELA\u2019s 2025 infostealer research<\/a> identified France among the top countries for victims, alongside Brazil, India, the US, Spain, the United Kingdom, and Indonesia. <\/p>\n<p>When attackers already have a victim\u2019s name, address, and ISP from a previous leak, a French-language \u201cWindows update\u201d page becomes a far more convincing lure than a generic English one.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-electron-on-the-outside-python-on-the-inside\"><strong>Electron on the outside, Python on the inside<\/strong><\/h2>\n<p>When the MSI executes, it installs an Electron application (essentially a stripped-down Chromium browser bundled with custom JavaScript) to <code>C:Users<user>AppDataLocalProgramsWindowsUpdate<\/user><\/code>. <\/p>\n<p>The main binary, <code>WindowsUpdate.exe<\/code>, is a renamed copy of the standard Electron shell\u2014VirusTotal\u2019s metadata identifies it as <code>electron.exe.<\/code> Across 69 antivirus engines, it drew zero detections because the executable itself is clean. This suggests the malicious logic lives inside the Electron app\u2019s bundled JavaScript (typically packaged as <code>app.asar<\/code>).<\/p>\n<p>Alongside the Electron shell sits <code>AppLauncher.vbs<\/code>, a Visual Basic Script that acts as the initial launcher. The system\u2019s built-in <code>cscript.exe<\/code> interpreter runs the VBS, which then starts the Electron app\u2014a classic living-off-the-land technique that avoids launching the payload directly and keeps the execution chain looking routine in process logs.<\/p>\n<p>But the Electron wrapper is only the outer layer. Once running, <code>WindowsUpdate.exe<\/code> spawns <code>_winhost.exe<\/code>, a renamed Python 3.10 interpreter disguised to resemble a legitimate Windows process. This process unpacks a full Python runtime into<br \/><code>C:Users<user>AppDataLocalTempWinGettools<\/user><\/code>, including <code>python.exe<\/code> and supporting libraries.<\/p>\n<p>It then installs a set of Python packages commonly seen in data theft tools:<\/p>\n<ul class=\"wp-block-list\">\n<li>pycryptodome, used to encrypt stolen data<\/li>\n<li>psutil, used to inspect running processes and detect sandbox environments<\/li>\n<li>pywin32, which enables deep access to the Windows API<\/li>\n<li>PythonForWindows, used to interact with system internals such as processes and privileges<\/li>\n<\/ul>\n<p>Analysis of the Electron app\u2019s JavaScript confirms this. Two heavily obfuscated files, processed using techniques like control-flow flattening and opaque predicates, contain the core functionality.<\/p>\n<p>The larger file (~7 MB) is the main stealer payload, with references to pbkdf2, sha256, and AES decryption routines, as well as a campaign expiry check. The smaller file (~1 MB) targets Discord: because Discord runs on Electron, the script modifies its code to intercept login tokens, payment details, and two-factor authentication changes when the app is opened.<\/p>\n<p>Both files returned zero detections across major antivirus engines\u2014the result of malware that hides inside legitimate software and heavily obfuscated code.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-two-ways-it-survives-a-reboot\"><strong>Two ways it survives a reboot<\/strong><\/h2>\n<p>The malware sets up two independent persistence mechanisms. <\/p>\n<p>First, <code>reg.exe<\/code> writes a value called <code>SecurityHealth<\/code> under the user\u2019s CurrentVersionRun registry key, pointing to <code>WindowsUpdate.exe.<\/code> The value name impersonates Windows Security Health, the service responsible for Defender notifications. It\u2019s something most users and even IT staff would scroll past without suspicion.<\/p>\n<p>Second, <code>cscript.exe<\/code> drops a shortcut file named <code>Spotify.lnk<\/code> into the user\u2019s Startup folder. Anyone who notices it would likely assume Spotify had configured itself to launch at login. <\/p>\n<p>Two persistence mechanisms, two different disguises, each designed to look like something the user would expect to see.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-fingerprinting-the-victim-phoning-home-uploading-the-haul\"><strong>Fingerprinting the victim, phoning home, uploading the haul<\/strong><\/h2>\n<p>Within seconds of launching, <code>WindowsUpdate.exe<\/code> reaches out to <code>www.myexternalip.com<\/code> and <code>ip-api.com<\/code> to discover the victim\u2019s public IP address and geolocation. This kind of reconnaissance is a near-universal trait of infostealers, telling the operator where the victim is and may determine what data gets collected.<\/p>\n<p>The malware then contacts its command-and-control (C2) infrastructure. It reaches <code>datawebsync-lvmv.onrender[.]com<\/code>, a C2 endpoint hosted on Render, and <code>sync-service.system-telemetry.workers[.]dev<\/code>, a relay running on Cloudflare Workers. That second domain is particularly crafty: \u201csystem-telemetry\u201d is exactly the kind of subdomain a network analyst might dismiss as legitimate monitoring traffic during a quick log review.<\/p>\n<p>For exfiltration, the malware turns to <code>store8.gofile[.]io<\/code>, a file-sharing service that allows anonymous uploads. Gofile has become a favourite among commodity stealers because it is free, ephemeral, and produces no paper trail for the operator.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-hundreds-of-processes-killed-before-breakfast\"><strong>Hundreds of processes killed before breakfast<\/strong><\/h2>\n<p>Sandbox telemetry captured more than two hundred separate invocations of <code>taskkill.exe<\/code>, each launched as an individual process. While the specific target processes were not recorded in the condensed telemetry, the sheer volume and pattern is consistent with infostealers that systematically terminate security tools, browser processes (to unlock credential databases), and competing malware before beginning their collection routine. Kill everything that might interfere, then get to work.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-why-the-automated-defences-gave-it-a-pass\"><strong>Why the automated defences gave it a pass<\/strong><\/h2>\n<p>At the time of analysis, VirusTotal showed zero detections across 69 engines for the main executable and 62 for the VBS launcher. No YARA rules matched, and behavioural scoring classified the activity as low risk.<\/p>\n<p>This is not a failure of any single tool. It\u2019s the intended result of the malware\u2019s architecture.\u00a0<\/p>\n<p>The Electron shell is a legitimate binary used by millions of applications. The malicious logic is hidden inside obfuscated JavaScript, which traditional antivirus tools don\u2019t deeply inspect. The Python payload runs under a misleading process name and pulls in components at runtime from what appear to be normal sources.<\/p>\n<p>Individually, each piece looks harmless. It\u2019s only when you follow the full chain\u2014VBS launcher to Electron app to renamed Python process to data collection and exfiltration\u2014that the activity becomes clearly malicious.<\/p>\n<p>Since our analysis, we\u2019ve added detections to protect users from this threat.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-what-this-means-and-what-to-do-next\"><strong>What this means and what to do next<\/strong><\/h2>\n<p>The combination of a localized phishing lure, a legitimately built MSI installer, an Electron wrapper, and a runtime-deployed Python payload shows how commodity stealers are evolving. Each layer serves a purpose: the MSI provides a familiar installation experience, the Electron shell helps the file appear clean, and the Python runtime gives flexible access to the operating system. The entire chain is built from off-the-shelf, legitimate components.<\/p>\n<p>The targeting of French users follows a clear pattern. When tens of millions of personal records are already circulating, the cost of creating a convincing localized lure drops significantly. An attacker who already knows which provider a victim uses can tailor a phishing page to match what they expect to see, whether that\u2019s from their ISP or, in this case, Microsoft.<\/p>\n<p>The most important takeaway is that a zero-detection VirusTotal result does not mean a file is safe. It often means the malicious logic is hidden, e.g. inside obfuscated scripts or delivered at runtime, leaving little for traditional detection methods to flag.<\/p>\n<p>If you think you may have installed this update, here\u2019s what to do:<\/p>\n<ul class=\"wp-block-list\">\n<li>Check your registry key. To do this, press <strong>Windows + R<\/strong>, type <code>regedit<\/code>, and press Enter. Go to <code>HKCUSOFTWAREMicrosoftWindowsCurrentVersionRun<\/code>. Look for an entry named <code>SecurityHealth<\/code> pointing to <code>WindowsUpdate.exe<\/code> in your AppData folder, and delete it.<\/li>\n<li>Look for a <code>Spotify.lnk<\/code> file in your Startup folder that you didn\u2019t create, and remove it Delete the folder <code>C:Users<user>AppDataLocalProgramsWindowsUpdate <\/user><\/code><\/li>\n<li>Clear the temporary files in <code>C:Users<user>AppDataLocalTempWinGettools <\/user><\/code><\/li>\n<li>Change all passwords stored in your browser\u2014assume saved credentials, cookies, and session tokens may have been compromised<\/li>\n<li>Enable two-factor authentication, prioritizing email and financial accounts<\/li>\n<li>Run a full system scan with an up-to-date <a href=\"https:\/\/www.malwarebytes.com\/premium\" target=\"_blank\" rel=\"noreferrer noopener\">antimalware tool<\/a> (ideally one with behavioural detection)<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\" id=\"h-how-to-update-windows-safely\">How to update Windows safely<\/h2>\n<p id=\"h-how-to-update-windows-safelythe-safest-way-to-update-windows-is-through-the-built-in-update-mechanism-open-start-go-to-settings-then-windows-update-and-click-check-for-updates-this-should-always-be-your-first-choice-microsoft-does-also-offer-standalone-update-packages-for-download-through-the-microsoft-update-catalog-at-catalog-update-microsoft-com-but-that-is-the-only-legitimate-source-for-manually-downloaded-updates-any-other-website-offering-a-windows-update-as-a-downloadable-file-should-be-treated-as-suspicious-be-especially-wary-of-pages-that-mimic-the-visual-branding-of-microsoft-support-windows-update-or-the-microsoft-download-center-attackers-have-become-skilled-at-replicating-these-interfaces-down-to-the-pixel-the-url-in-your-browser-s-address-bar-is-the-only-reliable-indicator-legitimate-microsoft-pages-are-served-exclusively-from-domains-ending-in-microsoft-com-a-domain-like-microsoft-update-support-may-look-plausible-at-a-glance-but-it-has-no-connection-to-microsoft-if-you-receive-an-email-sms-or-notification-urging-you-to-install-an-urgent-update-do-not-click-the-link-instead-open-windows-update-directly-through-settings-and-check-for-yourself-when-microsoft-does-require-a-manual-download-such-as-the-installation-assistant-or-media-creation-tool-for-major-version-upgrades-it-is-always-served-from-a-microsoft-com-domain-never-from-a-third-party-site-finally-consider-enabling-automatic-updates-if-you-have-not-already-this-removes-the-window-of-opportunity-in-which-an-attacker-can-convince-you-that-you-need-to-go-looking-for-an-update-manually-because-your-system-will-already-have-it\">The safest way to update Windows is through the built-in update feature. Open <strong>Start<\/strong>, go to <strong>Settings &gt; Windows Update<\/strong>, and click \u201cCheck for updates.\u201d This should always be your first port of call.<\/p>\n<figure class=\"wp-block-image aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" height=\"826\" width=\"1024\" src=\"https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/settings-windows-update.png?w=1024\" alt=\"\" class=\"wp-image-397333\" srcset=\"https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/settings-windows-update.png 1059w, https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/settings-windows-update.png?resize=300,242 300w, https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/settings-windows-update.png?resize=768,619 768w, https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/04\/settings-windows-update.png?resize=1024,826 1024w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\"\/><\/figure>\n<p>Microsoft does offer standalone update packages through the Microsoft Update Catalog (<code>catalog.update.microsoft.com<\/code>), but this is the only legitimate source for manual downloads. Any other website offering a Windows update as a file should be treated as suspicious.<\/p>\n<p>Be wary of pages that mimic Microsoft Support or Windows Update. These can look convincing, but the URL is what matters. Legitimate Microsoft pages are only served from domains ending in <strong>microsoft.com<\/strong>. A domain like <code>microsoft-update[.]support<\/code> may look plausible, but it is not connected to Microsoft.<\/p>\n<p>If you receive an email, text, or notification urging you to install an urgent update, don\u2019t click the link. Instead, open <strong>Settings &gt; Windows Update<\/strong> and check directly.<\/p>\n<p id=\"h-how-to-update-windows-safelythe-safest-way-to-update-windows-is-through-the-built-in-update-mechanism-open-start-go-to-settings-then-windows-update-and-click-check-for-updates-this-should-always-be-your-first-choice-microsoft-does-also-offer-standalone-update-packages-for-download-through-the-microsoft-update-catalog-at-catalog-update-microsoft-com-but-that-is-the-only-legitimate-source-for-manually-downloaded-updates-any-other-website-offering-a-windows-update-as-a-downloadable-file-should-be-treated-as-suspicious-be-especially-wary-of-pages-that-mimic-the-visual-branding-of-microsoft-support-windows-update-or-the-microsoft-download-center-attackers-have-become-skilled-at-replicating-these-interfaces-down-to-the-pixel-the-url-in-your-browser-s-address-bar-is-the-only-reliable-indicator-legitimate-microsoft-pages-are-served-exclusively-from-domains-ending-in-microsoft-com-a-domain-like-microsoft-update-support-may-look-plausible-at-a-glance-but-it-has-no-connection-to-microsoft-if-you-receive-an-email-sms-or-notification-urging-you-to-install-an-urgent-update-do-not-click-the-link-instead-open-windows-update-directly-through-settings-and-check-for-yourself-when-microsoft-does-require-a-manual-download-such-as-the-installation-assistant-or-media-creation-tool-for-major-version-upgrades-it-is-always-served-from-a-microsoft-com-domain-never-from-a-third-party-site-finally-consider-enabling-automatic-updates-if-you-have-not-already-this-removes-the-window-of-opportunity-in-which-an-attacker-can-convince-you-that-you-need-to-go-looking-for-an-update-manually-because-your-system-will-already-have-it\">Finally, consider enabling automatic updates. This removes the need to download updates manually and reduces the chance of being tricked into installing a fake one.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-indicators-of-compromise-iocs\"><strong>Indicators of Compromise (IOCs)<\/strong><\/h2>\n<p><strong>File Hashes (SHA-256)<\/strong><\/p>\n<ul class=\"wp-block-list\">\n<li><code>13c97012b0df84e6491c1d8c4c5dc85f35ab110d067c05ea503a75488d63be60<\/code>\u00a0 (<code>WindowsUpdate.exe<\/code>)<\/li>\n<li><code>c94de13f548ce39911a1c55a5e0f43cddd681deb5a5a9c4de8a0dfe5b082f650<\/code>\u00a0 (<code>AppLauncher.vbs<\/code>)<\/li>\n<\/ul>\n<p><strong>Domains<\/strong><\/p>\n<ul class=\"wp-block-list\">\n<li><code>microsoft-update[.]support<\/code> (phishing lure)<\/li>\n<li><code>datawebsync-lvmv[.]onrender[.]com<\/code> (C2)<\/li>\n<li><code>sync-service[.]system-telemetry[.]workers[.]dev<\/code> (C2 relay)<\/li>\n<li><code>store8[.]gofile[.]io<\/code>\u00a0(exfiltration)<\/li>\n<li><code>www[.]myexternalip[.]com<\/code>\u00a0(IP reconnaissance)<\/li>\n<li><code>ip-api[.]com<\/code>\u00a0(geolocation)<\/li>\n<\/ul>\n<p><strong>File System Artifacts<\/strong><\/p>\n<ul class=\"wp-block-list\">\n<li><code>C:Users<user>AppDataLocalProgramsWindowsUpdateWindowsUpdate.exe<\/user><\/code><\/li>\n<li><code>C:Users<user>AppDataLocalProgramsWindowsUpdateAppLauncher.vbs<\/user><\/code><\/li>\n<li><code>C:Users<user>AppDataRoamingMicrosoftWindowsStart MenuProgramsStartupSpotify.lnk<\/user><\/code><\/li>\n<\/ul><\/div>\n<p><a href=\"https:\/\/www.malwarebytes.com\/blog\/scams\/2026\/04\/this-fake-windows-support-website-delivers-password-stealing-malware\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to steal passwords, payment details, and account access. Because the file looks legitimate and avoids detection, it can slip past both users and security tools. A very convincing Windows update We spotted the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":107852,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"googlesitekit_rrm_CAow2JLhCw:productID":"","_gspb_post_css":"","maa_idioma":"","maa_pais":"","footnotes":""},"categories":[1],"tags":[16814,9535,16982,28492,9222,8695,17783],"class_list":["post-107850","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubirata","tag-delivers","tag-fake","tag-malware","tag-passwordstealing","tag-support","tag-website","tag-windows"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.6 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>This fake Windows support website delivers password-stealing malware - Ubirat\u00e3 Online Not\u00edcias - A realidade ao seu alcance!<\/title>\n<meta name=\"description\" content=\"A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ubirataonline.com.br\/en\/this-fake-windows-support-website-delivers-password-stealing-malware\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"This fake Windows support website delivers password-stealing malware\" \/>\n<meta property=\"og:description\" content=\"A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ubirataonline.com.br\/en\/this-fake-windows-support-website-delivers-password-stealing-malware\/\" \/>\n<meta property=\"og:site_name\" content=\"Ubirat\u00e3 Online Not\u00edcias - A realidade ao seu alcance!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/portalubirataonline\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/portalubirataonline\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-15T10:13:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-15T10:13:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/04\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@x.com\/ubirataonline\" \/>\n<meta name=\"twitter:site\" content=\"@ubirataonline\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/\"},\"author\":{\"name\":\"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#\\\/schema\\\/person\\\/372f87bbd3fdd79b8556b84c98d0bc1c\"},\"headline\":\"This fake Windows support website delivers password-stealing malware\",\"datePublished\":\"2026-04-15T10:13:52+00:00\",\"dateModified\":\"2026-04-15T10:13:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/\"},\"wordCount\":1674,\"publisher\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ubirataonline.com.br\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg\",\"keywords\":[\"Delivers\",\"fake\",\"Malware\",\"passwordstealing\",\"support\",\"Website\",\"Windows\"],\"articleSection\":[\"Ubirat\u00e3\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2026\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/en\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/\",\"url\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/\",\"name\":\"This fake Windows support website delivers password-stealing malware - Ubirat\u00e3 Online Not\u00edcias - A realidade ao seu alcance!\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ubirataonline.com.br\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg\",\"datePublished\":\"2026-04-15T10:13:52+00:00\",\"dateModified\":\"2026-04-15T10:13:55+00:00\",\"description\":\"A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ubirataonline.com.br\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg\",\"contentUrl\":\"https:\\\/\\\/ubirataonline.com.br\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg\",\"width\":1200,\"height\":675,\"caption\":\"Fake Windows update site. Look at that convincing URL!\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\\\/\\\/ubirataonline.com.br\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"This fake Windows support website delivers password-stealing malware\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#website\",\"url\":\"https:\\\/\\\/ubirataonline.com.br\\\/\",\"name\":\"Ubirat\u00e3 Online Not\u00edcias\",\"description\":\"Not\u00edcias de Ubirat\u00e3, regi\u00e3o, Brasil e mundo, com informa\u00e7\u00e3o atualizada e compromisso com o leitor.\",\"publisher\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#organization\"},\"alternateName\":\"Ubirat\u00e3 Online\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ubirataonline.com.br\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#organization\",\"name\":\"Ubirat\u00e3 Online Not\u00edcias\",\"alternateName\":\"Ubirat\u00e3 Online\",\"url\":\"https:\\\/\\\/ubirataonline.com.br\\\/\",\"logo\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#local-main-organization-logo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/portalubirataonline\",\"https:\\\/\\\/x.com\\\/ubirataonline\",\"https:\\\/\\\/mastodon.social\\\/@ubirataonline\",\"https:\\\/\\\/www.facebook.com\\\/groups\\\/311144672285604\",\"https:\\\/\\\/www.facebook.com\\\/UBTAOnline\",\"https:\\\/\\\/www.instagram.com\\\/portalubirataonline\\\/\",\"https:\\\/\\\/twitter.com\\\/ubirataonline\"],\"description\":\"Somos um portal de not\u00edcias independente, criado em 5 de janeiro de 2009, com o objetivo de informar, conectar e valorizar a nossa comunidade de Ubirat\u00e3 e toda aregi\u00e3o. Com conte\u00fado atualizado, confi\u00e1vel e relevante, o Ubirat\u00e3 Online \u00e9 o seu espa\u00e7o para ficar por dentro dos principais acontecimentos locais, regionais, Brasil, Mundo e de interesse geral. Nosso compromisso \u00e9 com a verdade, a transpar\u00eancia e o respeito ao leitor.\",\"legalName\":\"UBIRATA ONLINE NOT\u00cdCIAS\",\"foundingDate\":\"2009-01-05\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"},\"publishingPrinciples\":\"https:\\\/\\\/ubirataonline.com.br\\\/faq\\\/\",\"address\":{\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#local-main-place-address\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":\"-24.5361401\",\"longitude\":\"-52.9921776\"},\"telephone\":[\"+5544998308235\"],\"contactPoint\":{\"@type\":\"ContactPoint\",\"email\":\"contato@ubirataonline.com.br\"},\"openingHoursSpecification\":{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"opens\":\"00:00\",\"closes\":\"23:59\"},\"email\":\"contato@ubirataonline.com.br\",\"vatID\":\"47.621.418\\\/0001-80\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/#\\\/schema\\\/person\\\/372f87bbd3fdd79b8556b84c98d0bc1c\",\"name\":\"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO\",\"pronouns\":\"Ele\",\"description\":\"Desde 2003 trabalhando com not\u00edcias.\",\"sameAs\":[\"http:\\\/\\\/ubirataoline.com.br\",\"https:\\\/\\\/www.facebook.com\\\/portalubirataonline\",\"https:\\\/\\\/www.instagram.com\\\/ubirataonline_oficial\",\"https:\\\/\\\/x.com\\\/x.com\\\/ubirataonline\"],\"honorificPrefix\":\"Mr.\",\"honorificSuffix\":\"MD\",\"birthDate\":\"1980-06-16\",\"gender\":\"masculino\",\"award\":[\"V\u00e1rios pr\u00eamios de melhor portal da cidade\"],\"jobTitle\":\"Diretor\",\"url\":\"https:\\\/\\\/ubirataonline.com.br\\\/en\\\/author\\\/ubirataonline\\\/\"},{\"@type\":\"PostalAddress\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#local-main-place-address\",\"streetAddress\":\"Rua dos Coqueiros, 104 - Bairro Boa Vista, Rua dos Coqueiros, 104 Bairro Boa Vista\",\"addressLocality\":\"UBIRATA\",\"postalCode\":\"85440-000\",\"addressRegion\":\"PR\",\"addressCountry\":\"BR\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ubirataonline.com.br\\\/this-fake-windows-support-website-delivers-password-stealing-malware\\\/#local-main-organization-logo\",\"url\":\"https:\\\/\\\/ubirataonline.com.br\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/logoubirataonline-1.webp\",\"contentUrl\":\"https:\\\/\\\/ubirataonline.com.br\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/logoubirataonline-1.webp\",\"width\":500,\"height\":500,\"caption\":\"Ubirat\u00e3 Online Not\u00edcias\"}]}<\/script>\n<meta name=\"geo.placename\" content=\"UBIRATA\" \/>\n<meta name=\"geo.position\" content=\"-24.5361401;-52.9921776\" \/>\n<meta name=\"geo.region\" content=\"Brazil\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"This fake Windows support website delivers password-stealing malware - Ubirat\u00e3 Online Not\u00edcias - A realidade ao seu alcance!","description":"A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ubirataonline.com.br\/en\/this-fake-windows-support-website-delivers-password-stealing-malware\/","og_locale":"en_US","og_type":"article","og_title":"This fake Windows support website delivers password-stealing malware","og_description":"A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to","og_url":"https:\/\/ubirataonline.com.br\/en\/this-fake-windows-support-website-delivers-password-stealing-malware\/","og_site_name":"Ubirat\u00e3 Online Not\u00edcias - A realidade ao seu alcance!","article_publisher":"https:\/\/www.facebook.com\/portalubirataonline","article_author":"https:\/\/www.facebook.com\/portalubirataonline","article_published_time":"2026-04-15T10:13:52+00:00","article_modified_time":"2026-04-15T10:13:55+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/04\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg","type":"image\/jpeg"}],"author":"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO","twitter_card":"summary_large_image","twitter_creator":"@x.com\/ubirataonline","twitter_site":"@ubirataonline","twitter_misc":{"Written by":"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#article","isPartOf":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/"},"author":{"name":"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO","@id":"https:\/\/ubirataonline.com.br\/#\/schema\/person\/372f87bbd3fdd79b8556b84c98d0bc1c"},"headline":"This fake Windows support website delivers password-stealing malware","datePublished":"2026-04-15T10:13:52+00:00","dateModified":"2026-04-15T10:13:55+00:00","mainEntityOfPage":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/"},"wordCount":1674,"publisher":{"@id":"https:\/\/ubirataonline.com.br\/#organization"},"image":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#primaryimage"},"thumbnailUrl":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/04\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg","keywords":["Delivers","fake","Malware","passwordstealing","support","Website","Windows"],"articleSection":["Ubirat\u00e3"],"inLanguage":"en-US","copyrightYear":"2026","copyrightHolder":{"@id":"https:\/\/ubirataonline.com.br\/en\/#organization"}},{"@type":"WebPage","@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/","url":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/","name":"This fake Windows support website delivers password-stealing malware - Ubirat\u00e3 Online Not\u00edcias - A realidade ao seu alcance!","isPartOf":{"@id":"https:\/\/ubirataonline.com.br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#primaryimage"},"image":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#primaryimage"},"thumbnailUrl":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/04\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg","datePublished":"2026-04-15T10:13:52+00:00","dateModified":"2026-04-15T10:13:55+00:00","description":"A fake Microsoft support website is tricking people into downloading what looks like a normal Windows update. Instead, it installs malware designed to","breadcrumb":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#primaryimage","url":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/04\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg","contentUrl":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/04\/This-fake-Windows-support-website-delivers-password-stealing-malware.jpg","width":1200,"height":675,"caption":"Fake Windows update site. Look at that convincing URL!"},{"@type":"BreadcrumbList","@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/ubirataonline.com.br\/"},{"@type":"ListItem","position":2,"name":"This fake Windows support website delivers password-stealing malware"}]},{"@type":"WebSite","@id":"https:\/\/ubirataonline.com.br\/#website","url":"https:\/\/ubirataonline.com.br\/","name":"Ubirat\u00e3 Online Not\u00edcias","description":"Not\u00edcias de Ubirat\u00e3, regi\u00e3o, Brasil e mundo, com informa\u00e7\u00e3o atualizada e compromisso com o leitor.","publisher":{"@id":"https:\/\/ubirataonline.com.br\/#organization"},"alternateName":"Ubirat\u00e3 Online","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ubirataonline.com.br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/ubirataonline.com.br\/#organization","name":"Ubirat\u00e3 Online Not\u00edcias","alternateName":"Ubirat\u00e3 Online","url":"https:\/\/ubirataonline.com.br\/","logo":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#local-main-organization-logo"},"image":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#local-main-organization-logo"},"sameAs":["https:\/\/www.facebook.com\/portalubirataonline","https:\/\/x.com\/ubirataonline","https:\/\/mastodon.social\/@ubirataonline","https:\/\/www.facebook.com\/groups\/311144672285604","https:\/\/www.facebook.com\/UBTAOnline","https:\/\/www.instagram.com\/portalubirataonline\/","https:\/\/twitter.com\/ubirataonline"],"description":"Somos um portal de not\u00edcias independente, criado em 5 de janeiro de 2009, com o objetivo de informar, conectar e valorizar a nossa comunidade de Ubirat\u00e3 e toda aregi\u00e3o. Com conte\u00fado atualizado, confi\u00e1vel e relevante, o Ubirat\u00e3 Online \u00e9 o seu espa\u00e7o para ficar por dentro dos principais acontecimentos locais, regionais, Brasil, Mundo e de interesse geral. Nosso compromisso \u00e9 com a verdade, a transpar\u00eancia e o respeito ao leitor.","legalName":"UBIRATA ONLINE NOT\u00cdCIAS","foundingDate":"2009-01-05","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"},"publishingPrinciples":"https:\/\/ubirataonline.com.br\/faq\/","address":{"@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#local-main-place-address"},"geo":{"@type":"GeoCoordinates","latitude":"-24.5361401","longitude":"-52.9921776"},"telephone":["+5544998308235"],"contactPoint":{"@type":"ContactPoint","email":"contato@ubirataonline.com.br"},"openingHoursSpecification":{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],"opens":"00:00","closes":"23:59"},"email":"contato@ubirataonline.com.br","vatID":"47.621.418\/0001-80"},{"@type":"Person","@id":"https:\/\/ubirataonline.com.br\/#\/schema\/person\/372f87bbd3fdd79b8556b84c98d0bc1c","name":"REDA\u00c7\u00c3O: UBIRAT\u00c3 ONLINE - F\u00c1BIO AUGUSTO CELESTINO","pronouns":"Ele","description":"Desde 2003 trabalhando com not\u00edcias.","sameAs":["http:\/\/ubirataoline.com.br","https:\/\/www.facebook.com\/portalubirataonline","https:\/\/www.instagram.com\/ubirataonline_oficial","https:\/\/x.com\/x.com\/ubirataonline"],"honorificPrefix":"Mr.","honorificSuffix":"MD","birthDate":"1980-06-16","gender":"masculino","award":["V\u00e1rios pr\u00eamios de melhor portal da cidade"],"jobTitle":"Diretor","url":"https:\/\/ubirataonline.com.br\/en\/author\/ubirataonline\/"},{"@type":"PostalAddress","@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#local-main-place-address","streetAddress":"Rua dos Coqueiros, 104 - Bairro Boa Vista, Rua dos Coqueiros, 104 Bairro Boa Vista","addressLocality":"UBIRATA","postalCode":"85440-000","addressRegion":"PR","addressCountry":"BR"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ubirataonline.com.br\/this-fake-windows-support-website-delivers-password-stealing-malware\/#local-main-organization-logo","url":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/06\/logoubirataonline-1.webp","contentUrl":"https:\/\/ubirataonline.com.br\/wp-content\/uploads\/2026\/06\/logoubirataonline-1.webp","width":500,"height":500,"caption":"Ubirat\u00e3 Online Not\u00edcias"}]},"geo.placename":"UBIRATA","geo.position":{"lat":"-24.5361401","long":"-52.9921776"},"geo.region":"Brazil"},"_links":{"self":[{"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/posts\/107850","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/comments?post=107850"}],"version-history":[{"count":0,"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/posts\/107850\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/media\/107852"}],"wp:attachment":[{"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/media?parent=107850"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/categories?post=107850"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ubirataonline.com.br\/en\/wp-json\/wp\/v2\/tags?post=107850"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}