CVE-2025-71326
Awaiting Analysis Awaiting Analysis - Queue

Unquoted Service Path in AVAST Antivirus 25.11

Vulnerability report for CVE-2025-71326, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-19

Last updated on: 2026-06-22

Assigner: VulnCheck

Description

AVAST Antivirus 25.11 contains an unquoted service path vulnerability in the SecureLine service that allows local non-privileged users to execute code with elevated SYSTEM privileges. Attackers can exploit the unquoted binary path in the service configuration to inject malicious executables that execute with high-level system permissions.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-19
Last Modified
2026-06-22
Generated
2026-07-10
AI Q&A
2026-06-20
EPSS Evaluated
2026-07-08
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
avast antivirus 25.11

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-428 The product uses a search path that contains an unquoted element, in which the element contains whitespace or other separators. This can cause the product to access resources in a parent path.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Compliance Impact

The provided information does not specify how the unquoted service path vulnerability in AVAST Antivirus affects compliance with common standards and regulations such as GDPR or HIPAA.

Executive Summary

CVE-2025-71326 is an unquoted service path vulnerability found in AVAST Antivirus version 25.11, specifically in the SecureLine service.

This vulnerability occurs because the service configuration uses an unquoted binary path, which allows local non-privileged users to execute code with elevated SYSTEM privileges.

Attackers can exploit this by placing malicious executables in directories that appear earlier in the path resolution process, causing the system to run the malicious code with high-level system permissions.

Impact Analysis

This vulnerability can lead to privilege escalation attacks where local non-privileged users gain SYSTEM-level access.

With SYSTEM privileges, attackers can execute arbitrary code with the highest level of permissions on the affected system.

This can compromise the security and integrity of the system, potentially allowing attackers to install malware, steal sensitive data, or disrupt system operations.

Detection Guidance

This vulnerability can be detected by checking the service path configuration of the Avast SecureLine service for unquoted paths. Specifically, look for the SecureLine service binary path which may be unquoted, such as "C:\Program Files\AVAST Software\SecureLine\VpnSvc.exe".

A common method to detect unquoted service paths on Windows is to use the command line to query the service configuration and inspect the ImagePath value.

  • Run the following command in an elevated Command Prompt or PowerShell to list services with unquoted paths: sc qc SecureLine
  • Alternatively, use PowerShell to find all services with unquoted paths: Get-WmiObject win32_service | Where-Object { $_.PathName -match ' ' -and $_.PathName -notmatch '"' } | Select-Object Name, PathName

If the SecureLine service path is unquoted and contains spaces, it indicates the vulnerability is present.

Mitigation Strategies

To mitigate this vulnerability immediately, ensure that the service path for the Avast SecureLine service is properly quoted to prevent path hijacking.

If possible, update Avast Antivirus to a version where this vulnerability is fixed.

As a temporary workaround, manually edit the service configuration to add quotes around the binary path or restrict write permissions on directories in the service path to prevent malicious executable injection.

  • Use the command: sc config SecureLine binPath= ""C:\Program Files\AVAST Software\SecureLine\VpnSvc.exe"" to set the quoted path.
  • Restrict write permissions on the folders in the service path to prevent unprivileged users from placing malicious executables.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2025-71326. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart