├── .gitattributes ├── .gitignore ├── Amsi ├── Amsi.cpp ├── Amsi.vcxproj └── Amsi.vcxproj.filters ├── LICENSE ├── MPAmsiRun ├── MPAmsiRun.cpp ├── MPAmsiRun.vcxproj ├── MPAmsiRun.vcxproj.filters ├── defender.ico ├── resource.h └── resources.rc ├── Powershell ├── p0shKiller.cpp ├── powershell.ico ├── powershell.vcxproj ├── powershell.vcxproj.filters ├── resource.h └── resources.rc ├── README.txt ├── UacBypass ├── UacBypass.cpp ├── UacBypass.vcxproj ├── UacBypass.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── XORMeter.py ├── ntwdblib ├── ntwdblib.cpp ├── ntwdblib.vcxproj └── ntwdblib.vcxproj.filters └── p0shKiller.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/.gitignore -------------------------------------------------------------------------------- /Amsi/Amsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Amsi/Amsi.cpp -------------------------------------------------------------------------------- /Amsi/Amsi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Amsi/Amsi.vcxproj -------------------------------------------------------------------------------- /Amsi/Amsi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Amsi/Amsi.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/LICENSE -------------------------------------------------------------------------------- /MPAmsiRun/MPAmsiRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/MPAmsiRun/MPAmsiRun.cpp -------------------------------------------------------------------------------- /MPAmsiRun/MPAmsiRun.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/MPAmsiRun/MPAmsiRun.vcxproj -------------------------------------------------------------------------------- /MPAmsiRun/MPAmsiRun.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/MPAmsiRun/MPAmsiRun.vcxproj.filters -------------------------------------------------------------------------------- /MPAmsiRun/defender.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/MPAmsiRun/defender.ico -------------------------------------------------------------------------------- /MPAmsiRun/resource.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define IDI_MYICON 201 3 | -------------------------------------------------------------------------------- /MPAmsiRun/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/MPAmsiRun/resources.rc -------------------------------------------------------------------------------- /Powershell/p0shKiller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Powershell/p0shKiller.cpp -------------------------------------------------------------------------------- /Powershell/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Powershell/powershell.ico -------------------------------------------------------------------------------- /Powershell/powershell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Powershell/powershell.vcxproj -------------------------------------------------------------------------------- /Powershell/powershell.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Powershell/powershell.vcxproj.filters -------------------------------------------------------------------------------- /Powershell/resource.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define IDI_MYICON 201 3 | -------------------------------------------------------------------------------- /Powershell/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/Powershell/resources.rc -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/README.txt -------------------------------------------------------------------------------- /UacBypass/UacBypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/UacBypass/UacBypass.cpp -------------------------------------------------------------------------------- /UacBypass/UacBypass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/UacBypass/UacBypass.vcxproj -------------------------------------------------------------------------------- /UacBypass/UacBypass.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/UacBypass/UacBypass.vcxproj.filters -------------------------------------------------------------------------------- /UacBypass/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/UacBypass/stdafx.cpp -------------------------------------------------------------------------------- /UacBypass/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/UacBypass/stdafx.h -------------------------------------------------------------------------------- /UacBypass/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/UacBypass/targetver.h -------------------------------------------------------------------------------- /XORMeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/XORMeter.py -------------------------------------------------------------------------------- /ntwdblib/ntwdblib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/ntwdblib/ntwdblib.cpp -------------------------------------------------------------------------------- /ntwdblib/ntwdblib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/ntwdblib/ntwdblib.vcxproj -------------------------------------------------------------------------------- /ntwdblib/ntwdblib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/ntwdblib/ntwdblib.vcxproj.filters -------------------------------------------------------------------------------- /p0shKiller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cn33liz/p0shKiller/HEAD/p0shKiller.sln --------------------------------------------------------------------------------