HabrAugust 30, 2026🇷🇺Translated from Russian

AI Agent Uncovers Unauthenticated Router Config Dump Leading to CVE Filing

An experienced security engineer running a home lab with Proxmox VE asked an LLM agent to document router administration methods. The agent was given only basic port information and instructed to verify available functionality. Overnight the agent located an unauthenticated configuration read endpoint on the router’s web interface.

The endpoint returned approximately 37 KB of configuration data containing the administrative password in base64, all WPA2 pre-shared keys, service credentials, and full network settings. The agent confirmed that the corresponding write endpoint correctly required authentication, indicating a design flaw rather than an intentional backdoor. It then used the extracted credentials to obtain a valid session cookie, proving full administrative access was possible from any device on the LAN.

Technical details and classification

The router runs an ancient Boa web server exposing a single-page application built with jQuery. JavaScript bundles revealed the real API endpoints. The flaw was classified as CWE-306 Missing Authentication for Critical Function, with secondary weaknesses CWE-522 and CWE-359. The agent calculated a CVSS 3.1 score of 8.8 (AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H).

External scans confirmed the issue is strictly LAN-facing because WAN management remains disabled. The researcher could not locate current firmware updates due to unresponsive vendor infrastructure, a fact also included in the disclosure.

Path to CVE registration

The agent prepared a bilingual coordinated disclosure report for the vendor and assembled the required fields for the MITRE CNA-LR submission using knowledge of the Vulnogram form. The researcher personally sent the email and submitted the CVE request. A parallel entry was created in VulDB. The 90-day disclosure window is now open.

Key takeaways for agent use in security research

  • Read-only permission boundaries successfully limited the agent to reconnaissance and verification steps.
  • The agent performed exhaustive enumeration of JavaScript files, endpoints, and public vulnerability databases far faster than a human researcher.
  • Final actions requiring accounts or submissions remained under human control.
  • Home labs provide a safe, legal environment for testing autonomous security agents.

Related articles

安全客Vulnerabilities & Exploits

ServiceNow Discloses Three CVSS 10.0 Vulnerabilities Allowing Unauthenticated Remote Code Execution and SQL Injection

ServiceNow has released security updates addressing four vulnerabilities in its AI platform, including three rated CVSS 10.0. The flaws enable unauthenticated attackers to achieve remote code execution, privilege escalation, and arbitrary SQL execution against core ITSM systems used by large enterprises worldwide. Affected components include the GraphQL Composite Data API, system configuration image upload processor, and dynamic schema ORDER BY handling. ServiceNow states it has patched hosted instances and provided hotfixes for self-hosted customers running Xanadu, Yokohama, Zurich, and Australia branches. This follows a July disclosure of a related sandbox escape tracked as CVE-2026-6875 that showed signs of in-the-wild exploitation. No public exploits or confirmed active attacks have been observed for the new issues yet, but the extremely low attack complexity leaves a narrow remediation window for organizations running exposed instances.

HabrVulnerabilities & Exploits

AutoAddPolicy in Paramiko Disables Host Key Verification and Risks Credential Leakage After IP Reassignment

A developer discovered that fourteen deployment and management scripts all contained hardcoded references to a single VPS IP address. When the provider reassigned the address after migration, the scripts connected to an unrelated server belonging to another customer. The root cause was the line ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()), which silently accepts any host key instead of raising an exception. The connection succeeded, the root password stored in VPS_PASS was transmitted, and the operation appeared successful in logs. The author replaced AutoAddPolicy with RejectPolicy, centralized the address in a single vps.py module, and switched to key-based authentication with a password fallback. The same class of issue appears in web tools that fetch arbitrary URLs, requiring strict scheme, IP-range, and redirect checks to block SSRF vectors such as 127.0.0.1 and 169.254.169.254. The case demonstrates that host-key verification protects against routine cloud IP reuse rather than only theoretical man-in-the-middle attacks.

HabrVulnerabilities & Exploits

Developer Exposes 12 Vulnerabilities in FastAPI Todo App After 176 Bots Bypass Protections

A developer building a student-focused todo planner on FastAPI discovered that 176 of 238 new accounts were bots that bypassed three layers of protection including rate limiting and email verification. The issues stemmed from in-memory counters reset on every deployment, uvicorn trusting any X-Forwarded-For header, and email verification never being enforced in code. A full audit revealed additional flaws such as stored XSS via JSON-LD on public Q&A pages and an IDOR allowing any authenticated user to read all tasks in a project by supplying its ID. Fixes included moving rate limits to the database, properly extracting the client IP from the rightmost X-Forwarded-For entry, adding signed form timestamps, and escaping JSON for script contexts. The case highlights common pitfalls when deploying Python web services behind nginx without strict trust boundaries.

HabrVulnerabilities & Exploits

Researcher Achieves SSTI-Based Defacement of First Partner Bank Web Service on Standoff 365

A security researcher known as grizzzer detailed a full attack chain that resulted in defacing the authorization page of the First Partner Bank digital banking service inside the Standoff 365 online polygon. The demonstration began with a successful DNS zone transfer against the fpb.stf domain, revealing the dbo.fpb.stf host that hosted the target application. After identifying the Node.js, Express, and React stack, the researcher discovered that the receipt generation endpoint accepted an undocumented pretty parameter that was passed directly into the Pug template engine. This led to a server-side template injection vulnerability that was escalated to a Node.js reverse shell. With code execution, the attacker located and modified the translation.json localization file, replacing the welcome message with the string pwned by VON visible to all users. The write-up concludes with concrete hardening recommendations including disabling zone transfers, avoiding direct spread of req.query into templates, and restricting outbound connections.