CVE-2025-12683

N/A Unknown

📋 TL;DR

Everything service running as SYSTEM uses a named pipe with NULL DACL, granting all users full permissions. This allows local low-privileged users to potentially cause denial of service or chain with other vulnerabilities for privilege escalation. Affects Everything software users on Windows systems.

💻 Affected Systems

Products:
  • Everything by voidtools
Versions: All versions prior to fix (specific version unknown from provided info)
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Requires Everything service to be running with SYSTEM privileges and GUI component installed.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Local privilege escalation to SYSTEM by chaining with other vulnerabilities, leading to complete system compromise.

🟠

Likely Case

Service denial of service through pipe manipulation, disrupting Everything functionality.

🟢

If Mitigated

Limited impact if proper access controls are implemented on the named pipe.

🌐 Internet-Facing: LOW - Requires local access to the system.
🏢 Internal Only: MEDIUM - Local low-privileged users can exploit this vulnerability.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires local access and knowledge of named pipe manipulation. Privilege escalation requires chaining with additional vulnerabilities.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown - check vendor advisory

Vendor Advisory: https://www.voidtools.com/

Restart Required: Yes

Instructions:

1. Check voidtools website for security updates. 2. Download and install latest version. 3. Restart Everything service and system if required.

🔧 Temporary Workarounds

Set proper DACL on Everything named pipe

windows

Modify named pipe permissions to restrict access to authorized users only

icacls "\\.\pipe\Everything" /grant SYSTEM:F /grant "Authenticated Users":RX
icacls "\\.\pipe\Everything" /remove Everyone

Disable Everything service

windows

Stop and disable the Everything service if not required

sc stop Everything
sc config Everything start= disabled

🧯 If You Can't Patch

  • Implement strict access controls on named pipes using Windows security policies
  • Monitor for unusual named pipe access attempts and Everything service behavior

🔍 How to Verify

Check if Vulnerable:

Check named pipe permissions: 'icacls "\\.\pipe\Everything"' and look for Everyone:(F) or NULL DACL

Check Version:

Check Everything version in GUI: Help → About or run 'Everything.exe --version'

Verify Fix Applied:

Verify named pipe has proper DACL without Everyone or NULL permissions

📡 Detection & Monitoring

Log Indicators:

  • Event ID 4656 (Windows Security Audit) for named pipe access
  • Everything service crashes or unexpected restarts

Network Indicators:

  • Local named pipe communication anomalies

SIEM Query:

EventID=4656 AND ObjectName="\Device\NamedPipe\Everything" AND AccessMask=0x1F01FF

🔗 References

📤 Share & Export