HabrSeptember 7, 2026🇷🇺Translated from Russian

Exploiting SSTI Vulnerability in Messenger Machine on Standoff 365 Leads to RCE and Corporate Chat Access

A comprehensive security analysis published on the Positive Technologies blog details the complete exploitation chain against the Messenger machine hosted on the Standoff 365 platform. The researcher, operating under the handle Seven11eleven, systematically progressed through reconnaissance, vulnerability discovery, and post-exploitation phases while targeting two specific business risks.

Reconnaissance and Initial Discovery

Network scanning with nmap revealed two open web services on ports 80 and 3000. Port 80 hosted the custom Messenger application built with FastAPI, while port 3000 exposed the lightweight Gitness platform for Git repositories and CI/CD pipelines. Directory fuzzing using ffuf uncovered Swagger documentation at /api/openapi.json, providing a full map of API endpoints protected by JWT authentication.

Vulnerability Analysis and SSTI Exploitation

After creating test accounts and exploring the friend system, the researcher identified a User Enumeration issue that revealed valid usernames such as eka.balashova. Adding specific friends unlocked the friendship summary feature, which returned server-rendered HTML instead of JSON. Testing confirmed the presence of Server-Side Template Injection in the Mako template engine. Payloads such as ${7*7} executed successfully, while Jinja2-style syntax did not.

Exploitation progressed to arbitrary code execution using the payload ${self.module.cache.util.os.popen('whoami').read()}. This technique leveraged Mako's internal object references to reach the os module without direct imports, confirming Remote Code Execution on the target system running as user app.

Post-Exploitation and Business Risk Realization

With RCE achieved, the researcher established a reverse shell and began lateral movement. Analysis of the environment revealed connections to RabbitMQ and Redis instances. Custom listeners were developed to intercept messages and extract sensitive data, ultimately fulfilling the business risks of accessing corporate developer chat logs and obtaining the encryption key used by the city messenger application.

The article concludes with practical recommendations for developers using template engines and message brokers, emphasizing input sanitization, least-privilege principles, and network segmentation.

Related articles

HabrVulnerabilities & Exploits

SCCM Misconfigurations Expose Organizations to Full Infrastructure Takeover

BI.ZONE expert Alexander Kuznetsov details how Microsoft Configuration Manager (SCCM) deployments in 25% of Russian organizations can grant attackers complete control over corporate infrastructure when misconfigured. The article outlines critical risks including administrative privilege escalation, lateral movement, data collection, persistence, and policy manipulation that allow attackers to blend with legitimate maintenance operations. Key recommendations focus on infrastructure isolation, placing Site Server, SMS Provider, and Site Database Server roles in Tier 0 segments, and avoiding single SCCM hierarchies across multiple Active Directory forests or security tiers. The report emphasizes eliminating Network Access Account (NAA) usage in favor of HTTPS or Enhanced HTTP, strictly limiting Client Push Account and domain join account privileges, and auditing computer accounts for site servers. Additional guidance covers PXE deployment risks, database access restrictions, and role-based administrative controls to prevent credential extraction via tools such as SharpSCCM and mimikatz. Overall, the publication provides actionable hardening steps aligned with the principle of least privilege to reduce the attack surface of widely deployed SCCM environments.

Security NEXTVulnerabilities & Exploits

Critical Vulnerability in ASUS Control Center Enterprise Allows Remote Root Access Without Authentication

ASUS has disclosed a severe vulnerability in its terminal management software ASUS Control Center Enterprise (ACC) that could allow unauthenticated remote attackers to obtain root privileges. The issue, tracked as CVE-2026-75754, stems from a combination of hardcoded credentials, missing authentication on critical functions, and server-side request forgery flaws. Attackers can retrieve encryption keys via unauthenticated HTTP requests and then enable SSH on TCP port 2222 using the hardcoded credentials to log in as root. The flaw affects managed devices across an organization, potentially leading to data leakage, tampering, deletion, and full remote control. ASUS released a security advisory on September 4, 2026, and strongly recommends immediate updates. The vulnerability was reported by Security NEXT on September 7, 2026.

Security NEXTVulnerabilities & Exploits

Top 10 Security Stories: Critical Flaws in PaperCut NG/MF, Chrome, WatchGuard and Others Dominate Week

Security NEXT has published its weekly ranking of the ten most-read articles between August 30 and September 5 2026. The list is led by a critical vulnerability in PaperCut NG/MF that is already being exploited in the wild. Google Chrome received two separate updates addressing 38 vulnerabilities, including two rated Critical and one zero-day. WatchGuard Fireware OS, SonicWall SMA 1000, Cisco IOS XR and Apache Tomcat also received urgent patches for severe flaws. Three real-world incidents made the top ten: a customer-data breach at 01 Bank, a ransomware infection at Hands HD and a suspected cloud leak at Corona. The ranking reflects strong reader interest in both newly disclosed vulnerabilities and confirmed exploitation cases.

Security NEXTVulnerabilities & Exploits

CVE-2026-85046 Exploited in Chromium V8 Engine, Affecting Chrome, Edge and Other Browsers

The U.S. Cybersecurity and Infrastructure Security Agency (CISA) has added CVE-2026-85046 to its Known Exploited Vulnerabilities catalog after confirming active exploitation in the wild. The flaw resides in the V8 JavaScript engine of Chromium and stems from a type confusion issue that can allow arbitrary code execution inside the sandbox when a crafted HTML page is processed. Google released a patch for Chrome on September 3, 2026, while the vulnerability carries a CVSS v3.1 base score of 8.8 and is rated High severity. Because numerous browsers including Microsoft Edge, Opera, and Vivaldi are built on Chromium, they are potentially exposed until their respective vendors issue updates. Security teams are advised to verify that all Chromium-based browsers in their environments have been updated to the latest versions containing the fix.