What's Hot

Active Webcam 115 Unquoted Service Path Patched -

The "active webcam 115 unquoted service path patched" news is a welcome relief for the cybersecurity community. It demonstrates that even long-standing, seemingly minor coding oversights can be fixed swiftly when properly reported and prioritized.

However, history teaches us that:

If you are using Active Webcam 115, verify the patch today. If you are responsible for securing Windows endpoints, make unquoted service path enumeration a recurring task in your security hygiene checklist.

The vulnerability may be patched, but the lesson endures: in Windows security, a missing pair of double quotes can be the difference between a functioning service and a full system compromise.


Further Reading & Tools

Stay secure, and always quote your paths.

Active Webcam 11.5 (developed by PY Software) contains a high-risk security vulnerability known as an Unquoted Service Path This flaw is officially tracked as CVE-2021-47790 and was first publicly documented in September 2021 Exploit-DB Vulnerability Overview: CVE-2021-47790

The vulnerability occurs because the application’s Windows service executable path contains spaces and is not enclosed in quotation marks. Path Example: C:\Program Files\Active WebCam\WebCam.exe

Windows interprets spaces as potential ends to a command. If an attacker places a malicious file at C:\Program.exe , Windows may execute it instead of the intended program. A local attacker can gain SYSTEM-level privileges

, allowing them to execute arbitrary code and gain full control over the affected machine. National Institute of Standards and Technology (.gov) Status: "Patched" vs. Manual Fix

While security advisories highlight the issue in version 11.5, there is no widely documented official software update from the vendor that automatically corrects this registry entry. "Patched" in this context often refers to the manual remediation

required by system administrators to secure the installation. How to Verify and Patch Manually

If you have Active Webcam 11.5 installed, you should manually verify and fix the service path using these steps: Detect the Vulnerability: Open a Command Prompt as Administrator and run:

wmic service get name,displayname,pathname,startmode |findstr /i "auto" |findstr /i /v "c:\windows\\" |findstr /i /v """ Active WebCam appears in the results, it is unquoted and vulnerable. Apply the Fix (Registry Editor): and navigate to: active webcam 115 unquoted service path patched

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ACTIVEWEBCAM Modify the value to include double quotes around the path: C:\Program Files\Active WebCam\WebCam.exe "C:\Program Files\Active WebCam\WebCam.exe" Restart Service: Restart the computer or the ACTIVEWEBCAM service for the changes to take effect. Exploit-DB Product Recommendation

Active Webcam 11.5 is an older utility. Given the lack of recent security-focused updates from the vendor, users may consider more modern, actively maintained alternatives for webcam surveillance and streaming to ensure better long-term protection. Axis Communications CVE-2021-47790 Detail - NVD

Understanding the Active Webcam 115 Unquoted Service Path Vulnerability and Its Patch

In the realm of Windows security, one of the most common "low-hanging fruit" vulnerabilities for privilege escalation is the Unquoted Service Path. For users of the legacy surveillance software Active Webcam 115, this specific misconfiguration once posed a significant risk.

This article explores what the Active Webcam 115 unquoted service path vulnerability was, how it allowed for system-level exploitation, and how the issue is effectively patched. What is an Unquoted Service Path?

An unquoted service path occurs when the executable path for a Windows service contains spaces and is not enclosed in quotation marks.

For example, consider this path for Active Webcam:C:\Program Files\Active Webcam\Webcam.exe

If this path is not wrapped in quotes ("C:\Program Files\Active Webcam\Webcam.exe"), Windows interprets the spaces as delimiters. When the service starts, the Operating System attempts to locate and execute files in the following order: C:\Program.exe C:\Program Files\Active.exe C:\Program Files\Active Webcam\Webcam.exe The Security Risk: Privilege Escalation

The danger lies in step 1 or 2. If a malicious actor has "Write" permissions to the root of the C:\ drive or the C:\Program Files\ directory, they can place a malicious executable named Program.exe or Active.exe.

Because most services in Windows—including those used by webcam software—run under the SYSTEM account, the malicious file would be executed with the highest possible privileges. This allows a standard user to "escalate" their permissions to full administrative control over the machine. The Case of Active Webcam 115

Active Webcam version 11.5 (often referred to as Active Webcam 115) was identified as having this specific configuration flaw. Upon installation, the service responsible for managing camera feeds and motion detection was registered in the Windows Service Control Manager without the necessary quotes.

Because Active Webcam is frequently used in security-sensitive environments (home monitoring, small business surveillance), this vulnerability was particularly concerning. It meant that if a guest user or a limited employee account gained access to the computer, they could potentially take over the entire system. How the Vulnerability is Patched

The "patch" for an unquoted service path is straightforward but critical. It involves updating the Windows Registry to ensure the ImagePath value for the service is properly quoted. 1. Manual Registry Fix The "active webcam 115 unquoted service path patched"

Administrators can fix this by navigating to the following Registry key:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[ServiceName]

By locating the ImagePath string and adding double quotes around the entire path, the ambiguity is removed, and Windows will only execute the intended file. 2. Official Software Updates

Later builds and patches for Active Webcam addressed this during the installation process. The installer script was updated to ensure that when the service is registered with the OS, the string is passed with the correct formatting. 3. Automated Remediation

Many security professionals use PowerShell scripts to scan for and fix these vulnerabilities across an entire network. A simple script can identify any service where the path contains a space but lacks quotes and apply the fix automatically. Verifying the Patch

To verify if your Active Webcam 115 installation is patched, you can run the following command in the Windows Command Prompt:

wmic service get name, displayname, pathname, startmode | findstr /i "Active" | findstr /i /v """ Use code with caution.

If the command returns a path without quotes, the system is still vulnerable. If it returns nothing, the path is either quoted correctly or the service is not present. Conclusion

While Active Webcam 115 is an older piece of software, the unquoted service path vulnerability serves as a vital reminder of the importance of secure configuration. Whether you are a developer or a system administrator, ensuring that service paths are explicitly defined is a fundamental step in hardening a Windows environment against local privilege escalation.

Active WebCam version 11.5 was found to have a critical security flaw known as an unquoted service path vulnerability (tracked as CVE-2021-47790). This allows a local attacker to gain administrative control over your computer. What is the Vulnerability?

An unquoted service path happens when a software's file path contains spaces but isn't wrapped in quotation marks in the Windows Registry.

When Windows tries to start the service, it reads the path one segment at a time. For example, if the path is C:\Program Files\Active WebCam\WebCam.exe, Windows might mistakenly try to run a malicious file named C:\Program.exe or C:\Program Files\Active.exe instead. How it was Patched

The software's developer, PY Software, addressed this issue in version 11.6. The fix simply involves adding quotes around the service's executable path in the Windows Registry, ensuring the operating system only runs the intended WebCam.exe file. Steps to Secure Your System

If you are still using version 11.5, you can secure it by following these steps: Active WebCam 11.5 - Unquoted Service Path | Advisories If you are using Active Webcam 115, verify the patch today

Active WebCam 11.5. CVE CVE-2021-47790. CWE-428 Unquoted Search Path or Element. CVSS 8.5. CVSS V4 Vector CVSS:4.0/AV:L/AC:L/AT:N/ Active WebCam Download - 11.6 - TechSpot

About Active WebCam. Active WebCam captures images up to 30 frames per second from any video device including USB, analog cameras, Active WebCam Download - Webcam streaming app


Even with the Active Webcam 115 patch applied, best practices should be followed:

Q1: Is Active Webcam still safe to use after the patch?
Yes, the current patched version is safe regarding this specific vulnerability. Always download from official sources.

Q2: Can this vulnerability be exploited remotely?
No, it requires local code execution ability first, but it can be chained with remote exploits.

Q3: Does the patch require a full uninstall and reinstall?
No, typically the minor update overwrites the service configuration. A reboot is recommended.

Q4: Was there a CVE assigned for this issue?
At the time of writing, some researchers assigned a CVE (e.g., CVE-2022-XXXX), but check the NVD database for official tracking.

Q5: How can I check if my version is patched?
Compare your file version vs. vendor release notes. Run the sc qc command as shown above.


Using tools like sc qc (Service Control) or inspecting the registry, a vulnerable installation would display:

BINARY_PATH_NAME   : C:\Program Files\Active Webcam 115\webcamservice.exe

No double quotes around the path. This is the telltale signature.

Active Webcam is a popular Windows application developed by Pysoft. It turns a PC into a network-enabled surveillance system, supporting motion detection, image capture, email alerts, and remote access. Version 115 was a significant release with added IP camera support and performance enhancements.

Like many utilities of its era (late 2010s to early 2020s), Active Webcam installed a core Windows service to allow background monitoring without requiring a logged-in user. This service was typically named:

Active Webcam Service

And its binary path, when inspected via sc qc or the Registry (HKLM\SYSTEM\CurrentControlSet\Services), revealed the flaw.