Connects to any signal across any vendor stack and powers adaptive AI Operatives that expose, detect, and neutralize cyberattacks.
Atlas Operations CenterSee what our SOC sees, review investigations, and see how we are protecting your business.
Technology IntegrationsAtlas connects to any signal across your current security tools. Whatever you're running, we're running with you.
Extend your team with immediate expertise, hands-on remediation, and the human accountability layer that boards, regulators, and cyber insurers require.
Threat Response UnitProactive threat intelligence, original threat research and a world-class team of seasoned industry veterans.
Response and RemediationPairs machine-speed containment with human judgment, delivering full threat response that's policy-bounded, reversible, and explainable.
MDR that moves first, multi-signal attack surface coverage, and 24/7 Elite threat hunters working as one continuous security program across any vendor stack.
Get unlimited Incident Response with threat suppression guarantee- anytime, anywhere.
Full alignment to the five-stages of CTEM operations; scope, discover, prioritize, validate, and mobilize against exposures attackers would use against you.
Flexible MDR pricing and packages that fit your unique security requirements.
Entry level foundational MDR coverage
Comprehensive Next Level eSentire MDR
Next Level eSentire MDR with Cyber Risk Advisors to continuously advance your security program
Stop ransomware before it spreads.
Identity ResponseStop identity-based cyberattacks.
Zero Day AttacksDetect and respond to zero-day exploits.
Cybersecurity ComplianceMeet regulatory compliance mandates.
Third-Party RiskDefend third-party and supply chain risk.
Cloud MisconfigurationEnd misconfigurations and policy violations.
Cyber RiskAdopt a risk-based security approach.
Mid-Market SecurityMid-market security essentials to prioritize.
Sensitive Data SecurityProtect your most sensitive data.
Cyber InsuranceMeet insurability requirements with MDR.
Cyber Threat IntelligenceOperationalize cyber threat intelligence.
Security LeadershipBuild a proven security program.
On June 9th, 2026, Ivanti disclosed two critical vulnerabilities affecting its Sentry secure mobile gateway solution. These vulnerabilities are identified as CVE-2026-10520 (CVSS: 10.0) and…
On June 8th, 2026, Check Point disclosed a critical zero-day vulnerability impacting its Check Point Remote Access VPN and Mobile Access deployments. Exploitation has been observed and…
eSentire is a leader in Controlled Autonomy SecOps, protecting 2,000+ organizations across 35+ industries around the world. Founded in 2001, the company’s Controlled Autonomy SecOps operating model pairs agentic AI operatives with engineered human-judgment controls, delivering expert-depth security outcomes at machine speed without ceding accountability to opaque automation.
About Us Leadership Careers Event Calendar → Newsroom → Aston Villa Football Club →We provide sophisticated cybersecurity solutions for Managed Security Service Providers (MSSPs), Managed Service Providers (MSPs), and Value-Added Resellers (VARs). Find out why you should partner with eSentire, the Authority in Managed Detection and Response, today.
Search our site
Multi-Signal MDR with 300+ technology integrations to support your existing investments.
24/7 SOC-as-a-Service with unlimited threat hunting and incident handling.
We offer three flexible MDR pricing packages that can be customized to your unique needs.
The latest security advisories, blogs, reports, industry publications and webinars published by TRU.
Compare eSentire to other Managed Detection and Response vendors to see how we stack up against the competition.
See why 2000+ organizations globally have chosen eSentire for their MDR Solution.
In recent weeks, eSentire’s Threat Response Unit (TRU) has traced numerous email account compromise cases to infrastructure hosted on several related hosting providers. Due to ongoing abuse, we are recommending customers take action to restrict access to their network from this infrastructure.
Recent investigations have identified threat actor-controlled IP addresses tied to two hosting providers:
In the past 30 days, IP addresses tied to both hosting providers accounted for 64% of User Account Compromise (UAC) detections across our customers that leverage eSentire’s log service for Microsoft Entra ID. TRU assesses with moderate confidence a subset of these connections are associated with Storm-1575, the group behind the DadSec Phishing-as-a-Service (PhaaS) operation. This operation has been rebranded as Phoenix and more recently Rockstar 2FA. This is an Adversary-in-the-Middle (AitM) phishing service that relays or proxies credentials from the user to a target service.
According to public business registries, GIS/GIR is registered in Russia and GCS in the United Kingdom. Both entities list the same Russian national as a person with significant control.
TRU assesses these entities are tied to personas advertising Virtual Private Server (VPS) services on underground forums and Telegram, most recently under the FourVPS handle and hosted on 4vps[.]su (Figure 2).
The 4vps[.]su website lists Global Internet Solutions in the page footer (Figure 3) along with matching registration details.
WHOIS record details for 4vps[.]su list support@gir[.]network as the registrant contact (gir[.]network is the website for Global Internet Solutions). Additionally, pivoting on this email address leads to as207713[.]net (the ASN name tied to GIS/GIR). Historical WHOIS records reveal the website was registered by the same individual mentioned above prior to redaction in subsequent record updates.
TRU is also aware of public reporting tying this individual to past business ventures in underground communities. These hosting providers have permitted widespread abuse of their infrastructure in attacks and are actively advertised on underground forums leading us to recommend blocking their infrastructure.
|
Name |
ASN |
Details and Assoc. Ranges |
|
GLOBAL INTERNET SOLUTIONS LLC |
AS207713 |
https://ipinfo.io/AS207713 |
|
GLOBAL CONNECTIVITY SOLUTIONS LLP |
AS215540 |
https://ipinfo.io/AS215540 |
Observed Network Ranges in Customer Cases
|
92.118.112.0/24 |
|
89.23.107.0/24 |
|
89.185.80.0/24 |
|
83.217.11.0/24 |
|
5.181.3.0/24 |
|
212.18.104.0/24 |
|
193.233.48.0/24 |
|
194.87.71.0/24 |
|
194.87.31.0/24 |
|
185.247.184.0/24 |
|
185.161.251.0/24 |
|
185.143.223.0/24 |
|
147.45.178.0/24 |
|
2a05:541:116::/48 |
|
2a00:b703:fff2::/48 |
ASN ORG: global connectivity solutions llp OR global internet solutions llc
User Agent: axios/1.7.7 OR axios/1.7.8 OR axios/1.7.9
Application: OfficeHome
Note: Requires SigninLogs Table and covers user agents and applications observed.
let aadFunc = (tableName: string) {
table(tableName)
| where ResultType == 0 and AppDisplayName == ('OfficeHome')
| where UserAgent contains 'axios'
| limit 100
| extend risks = todynamic(RiskEventTypes_V2)
| extend risk = iif(isnull(risks) or array_length(risks) == 0, dynamic([null]), risks)
| mv-expand risk
| summarize first_time = min(TimeGenerated), last_time = max(TimeGenerated),
IPAddresses = make_list(IPAddress), risks = make_set(risk)
by UserPrincipalName,AppDisplayName,UserAgent
};
let aadSignin = aadFunc("SigninLogs");
let aadNonInt = aadFunc("AADNonInteractiveUserSignInLogs");
union aadSignin, aadNonInt
Example output: