
It didn’t start with an email. The user clicked a Facebook ad — a sponsored post that looked routine — and a tab opened to what looked like an official Microsoft Support page. Within seconds the browser locked up: a dialog they couldn’t dismiss, a fake security scan reporting “1,200 threats,” and their own city and IP address staring back at them — “Your device has been blocked due to illegal activity by the State of Ohio. Contact Microsoft Windows Support: +1-888-671-7340.” The page was hosted on Microsoft’s own Azure cloud. It never asked for a password. It didn’t need to.
That single page is a doorway into one of the most damaging scams online. Tech-support fraud cost victims $1.46 billion in 2024 — the third-costliest category of cybercrime the FBI tracks — and it falls hardest on older adults, who shoulder the bulk of those losses, often tens of thousands of dollars at a time. And it’s accelerating: PIXM has recorded a 5x uptick in such scams in 2026 compared to 2025.

A fake Microsoft Support page: a fake scan, a browser-lock dialog, the visitor’s real geolocation, and a support phone number — all at once.
The scam uses a series of techniques to produce a feeling of panic in the user. While these vary somewhat across campaigns, they typically include the below sequence.
The code behind it is short and unglamorous. The “personal touch,” for instance, takes no hacking at all — the page asks a free location service who you are, then prints your own city and IP into the scare:
fetch("https://ipapi.co/json/") // ask a free "where am I?" service .then(r => r.json()) .then(d => { // then print YOUR city + IP into the threat city.textContent = d.city; region.textContent = d.region; ip.textContent = d.ip; });

↑ The same code writes your location straight into the threat — the page even names your state to make it feel real and official. (We’ve cropped out the precise IP, city, and coordinates it also displayed.)
The “trap” is just as small. A few lines re-trigger the browser’s “Leave site?” prompt every time you try to close the tab and quietly disable the Back button — so a panicking user feels stuck and reaches for the phone:
window.onbeforeunload = () => // re-pop "Leave site?" on every exit attempt "Changes you made may not be saved."; history.pushState(null, "", location.href); onpopstate = () => // and neutralize the Back button history.pushState(null, "", location.href);

↑ The result: the “Leave site?” dialog that won’t go away. onbeforeunload re-pops it on every attempt to close the tab.
Why trap the tab? The lock does three things at once. It manufactures urgency — every second the alarms blare, it feels like damage is happening right now. It removes the easy way out — you can’t simply close the page and move on, so the only exit on offer is the attacker’s phone number. And it isolates you in the moment, before you can step back, breathe, or ask someone whether any of this is real. The result: panic and only one way out.
So what happens on that call? A “technician” answers and walks the victim through installing a legitimate remote-access tool — AnyDesk, TeamViewer, or UltraViewer — which hands the scammer full control of the machine. From there the usual play is the “refund scam”: the scammer opens the victim’s online banking, fakes an accidental over-refund by editing the page or shuffling money between the victim’s own accounts, then pressures them to send back the “difference” in gift cards, cryptocurrency, or a wire transfer — payment rails chosen because they’re nearly impossible to reverse.
The same properties that make it theatrical also make it slippery:
web.core.windows[.]net), complete with valid TLS. Domain-reputation engines see a Microsoft domain and wave it through.It is pure visual social engineering, and the defensive gap sits exactly there: the page is dangerous because of what it looks like, not what it contains.
If you land on one of these pages, the page itself is theater: the alarms are images, the “scan” is a cartoon, and the “lock” is just a script running inside your browser. On its own it hasn’t installed anything or changed your system, and closing the browser ends it. The real danger starts only if you do what it asks — call the number, or (in some Windows versions) paste a “fix” it hands you into the Run box or PowerShell. That last step actually runs code on your machine, so never do it.
For defenders and organizations:
web.core.windows[.]net, herokuapp[.]com, and similar hosts are attacker-controllable; a Microsoft domain in the URL means nothing here.PIXM’s browser extension uses computer vision to detect phishing pages at the point of click based on what they look like and how they behave — independent of domain reputation. If you are interested in seeing how PIXM can help prevent attacks like these for your organization book demos at pixmsecurity.com/request-demo/.