| Posted by: DogMan - 27 January 2026 16:17:41 |
|---|
| What is the purpose of this email?: [quote]Greetings, The following domain is hosted on your servers insurancefirms.co.uk This website was hacked and is used for cloaking. The hacker used a known vulnerability. Please see the hack: https://insurancefirms.co.uk/blank/Why-retail-traders-accumulate-CURB-stock Simply paste the above URL to a browser and you'll see the malicious script. The threat actor compromised the domain insurancefirms.co.uk and created a folder insurancefirms.co.uk/blank and added hundreds of pages to it. You can paste the following search to any search engine to see the results: site:insurancefirms.co.uk/blank You should click on the results from SERP to see the malicious script. Please inform your customer to remove the malicious folder and secure credentials. [/quote] |
| Posted by: sirclesadmin - 27 January 2026 17:42:32 |
|---|
|
While the server is running IIS (Internet Information Services), it is statistically unlikely that the vulnerability lies within the IIS software itself (unless the server is running a strictly obsolete version like IIS 6.0). In 99% of these cases, the "known vulnerability" mentioned in the email refers to the web application running on top of IIS. Given that the target is an insurance firm (which often uses ASP.NET enterprise software) and the result was a folder creation hack, here are the most likely specific vulnerabilities: 1. Telerik UI for ASP.NET AJAX (The #1 Suspect)If this is a corporate website built on ASP.NET, this is the most probable culprit.
2. Unrestricted File UploadInsurance websites frequently have features allowing users to "Upload Claims" or "Submit Documents."
3. WordPress on IISMany companies run WordPress on Windows servers using IIS.
4. ViewState Deserialization
Summary of the Likely Attack PathRegardless of which specific bug let them in, the mechanics on IIS usually look like this:
|
| Posted by: DogMan - 27 January 2026 17:45:36 |
|---|
| The folder is not on the server disk system - how would it work? It must be some sort of virtual folder or forwarded to make all these pages in SERPs [img=https://www.sircles.net/downloads/goggled.png]Googled[/img] |
| Posted by: sirclesadmin - 27 January 2026 17:46:20 |
|---|
|
You are absolutely right to suspect a virtual mechanism. In modern IIS hacks, it is standard practice for attackers to avoid leaving physical files (like a real Since the folder doesn't exist physically, the server is intercepting the request for 1. The "Reverse Proxy" Hack (Most Likely)This is the most common technique for the specific "cloaking" behavior described in the email. The hacker hasn't just created a fake page; they have turned your server into a gateway for their own server.
What to check:
Open your root It will look something like this:
2. The "Malicious Handler" (Code Injection)If they didn't use a rewrite rule, they may have injected code that tells IIS to "handle" any request starting with
3. Database Injection (CMS Specific)If you are running a CMS (like DotNetNuke, Umbraco, or a custom ASP.NET MVC app), the hacker might have injected these pages directly into your database.
|