Details:
Installation and Autostart Techniques
This backdoor arrives as a file downloaded from the Internet by an unsuspecting user when visiting malicious Web sites. It can also arrive as a file dropped by another malware.
Upon execution, it drops a copy of itself as SERVICES.EXE in the location %Windows%\etc. It also creates the following autostart registry entry to ensure its automatic execution at every system startup:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\
CurrentVersion\Run
Microsoft (R) Windows Protected Content Restoration Service =
"%Windows%\etc\services.exe"
(Note: %Windows% is the Windows folder, which is usually C:\Windows or C:\WINNT.)
It modifies the following registry entries as another autostart technique:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\
CurrentVersion\Winlogon
Shell = "Explorer.exe %Windows%\etc\services.exe"
(Note: The default value of the registry entry above is Shell = "Explorer.exe".)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\
CurrentVersion\Winlogon
Userinit = "%System%\userinit.exe,%Windows%\etc\services.exe"
(Note: %System% is the Windows system folder, which is usually C:\Windows\System on Windows 98 and ME, C:\WINNT\System32 on Windows NT and 2000, or C:\Windows\System32 on Windows XP and Server 2003. The default value of the registry entry above is Userinit = "%System%\userinit.exe".)
HKEY_USERS\.DEFAULT\Software\Microsoft\Windows NT\
CurrentVersion\Windows
Load = "%Windows%\etc\services.exe"
(Note: The default value of the registry entry above is Load = "".)
Moreover, it registers itself as a service by creating the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\ProtectedContentSvc
Backdoor Capabilities
This backdoor opens random ports and allows a remote malicious user access to an affected system. Once connected, the said remote user can issue any of the following commands locally on the machine, thus compromising system security:
- Terminate and/or execute files
- Connect to the Web site koqr{BLOCKED}axx.biz
- Execute commands
- Act as a proxy server
Service Disabling
This backdoor modifies the following registry entries to disable various system services:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\Alerter
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\ALG
Start = "dword:00000004"
(Note: The default value for the registry entries above is Start = "dword:00000003".)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\ERSvc
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\helpsvc
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\Messenger
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\RemoteRegistry
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\SamSs
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\SENS
Start = "dword:00000004"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\srservice
Start = "dword:00000004"
(Note: The default value for the registry entries above is Start = "dword:00000002".)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
Services\SharedAccess
Start = "dword:00000004"
(Note: The default value for the said registry entry above is Start = "dword:00000003".)
It also disables Windows File Protection as part of its malicious routine by modifying the following registry entry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\
CurrentVersion\Winlogon
SFCDisable = "dword:00000004"
(Note: The default value of the registry entry above is SFCDisable = "dword:00000000".)
Other Registry Modifications
This backdoor also modifies the following registry entries to do the specified malicious actions:
To hide files with attribute set to Hidden
HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Explorer\Advanced
Hidden = "dword:00000000"
(Note: The default value data for the said registry entry is user-defined. The value data for showing files with the Hidden attribute is
dword:00000001.)
To hide files and folders with attributes set to System and Hidden
HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Explorer\Advanced
ShowSuperHidden = "dword:00000000"
(Note: The default value data for the said registry entry is user-defined. The value data for showing files with attributes set to System
and Hidden is
dword:00000001.)
To hide file extension names
HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Explorer\Advanced
HideFileExt = "dword:00000001"
(Note: The default value data for the said registry entry is user-defined. The value data for showing file extension names is
dword:00000000.)
To remove Folder Options in the Tools drop-down menu
HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Explorer
NoFolderOptions = "dword:00000001"
Notably, the mentioned registry modification is incorrect, and this backdoor fails to remove the Folder Options in the Tools drop-down menu.
Affected Platforms
This backdoor runs on Windows 98, ME, NT, 2000, XP, and Server 2003.
Analysis By: Zarestel Villanueva Ferrer
Updated By: Mary Grace C. Gabriel