├── .clang-format ├── .gitattributes ├── .gitignore ├── AmsiBypassUacDetector.sln ├── AmsiBypassUacDetector ├── AmsiBypassUacDetector.vcxproj ├── AmsiBypassUacDetector.vcxproj.filters ├── amsiuacprov.cpp ├── amsiuacprov.h ├── appinfo.cpp ├── appinfo.h ├── log.cpp ├── log.h ├── main.cpp ├── ntdll.h ├── patcher.cpp ├── patcher.h ├── register.cpp ├── register.h ├── service.cpp └── service.h ├── LICENSE.txt ├── README.md └── demo.gif /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/.gitignore -------------------------------------------------------------------------------- /AmsiBypassUacDetector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector.sln -------------------------------------------------------------------------------- /AmsiBypassUacDetector/AmsiBypassUacDetector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/AmsiBypassUacDetector.vcxproj -------------------------------------------------------------------------------- /AmsiBypassUacDetector/AmsiBypassUacDetector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/AmsiBypassUacDetector.vcxproj.filters -------------------------------------------------------------------------------- /AmsiBypassUacDetector/amsiuacprov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/amsiuacprov.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/amsiuacprov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/amsiuacprov.h -------------------------------------------------------------------------------- /AmsiBypassUacDetector/appinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/appinfo.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/appinfo.h -------------------------------------------------------------------------------- /AmsiBypassUacDetector/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/log.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/log.h -------------------------------------------------------------------------------- /AmsiBypassUacDetector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/main.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/ntdll.h -------------------------------------------------------------------------------- /AmsiBypassUacDetector/patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/patcher.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/patcher.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | BOOL PatchAmsiPPLVerification(DWORD processId); 6 | -------------------------------------------------------------------------------- /AmsiBypassUacDetector/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/register.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/register.h -------------------------------------------------------------------------------- /AmsiBypassUacDetector/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/service.cpp -------------------------------------------------------------------------------- /AmsiBypassUacDetector/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/AmsiBypassUacDetector/service.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/AmsiBypassUacDetector/HEAD/demo.gif --------------------------------------------------------------------------------