Combine cutting-edge XDR technology, multi-signal threat intelligence and 24/7 Elite Threat Hunters to help you build a world-class security operation.
Our team delivers the fastest response time in the industry. Threat suppression within just 4 hours of being engaged.
Cyber risk and advisory programs that identify security gaps and build security strategies to address them.
24/7 SOC-as-a-Service with unlimited threat hunting and incident handling.
XDR with machine learning that eliminates noise, enables real-time detection and response, and automatically blocks threats.
Seamless integration and threat investigation across your existing tech stack.
Proactive threat intelligence, original threat research and a world-class team of seasoned industry veterans.
Extend your team capabilities and prevent business disruption with expertise from eSentire.
We balance automated blocks with rapid human-led investigations to manage threats.
Guard endpoints by isolating and remediating threats to prevent lateral spread.
Defend brute force attacks, active intrusions and unauthorized scans.
Investigation and threat detection across multi-cloud or hybrid environments.
Remediate misconfigurations, vulnerabilities and policy violations.
Investigate and respond to compromised identities and insider threats.
Stop ransomware before it spreads.
Meet regulatory compliance mandates.
Detect and respond to zero-day exploits.
End misconfigurations and policy violations.
Defend third-party and supply chain risk.
Prevent disruption by outsourcing MDR.
Adopt a risk-based security approach.
Meet insurability requirements with MDR.
Protect your most sensitive data.
Build a proven security program.
Operationalize timely, accurate, and actionable cyber threat intelligence.
THE THREAT In recent weeks, eSentire’s Threat Response Unit (TRU) has traced numerous email account compromise cases to infrastructure hosted on several related hosting…
Dec 10, 2024THE THREATUpdate: Security patches to address this vulnerability were released by Cleo on December 12th. Organizations need to update to Cleo Harmony, VLTrader, and LexiCom versions…
eSentire is The Authority in Managed Detection and Response Services, protecting the critical data and applications of 2000+ organizations in 80+ countries from known and unknown cyber threats. Founded in 2001, the company’s mission is to hunt, investigate and stop cyber threats before they become business disrupting events.
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.
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.
Three MDR package tiers are available based on per-user pricing and level of risk tolerance.
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: