├── DumpHashes ├── DllMain.c ├── DumpHashes.vcxproj ├── DumpHashes.vcxproj.filters ├── DumpHashes.vcxproj.user ├── HardwareBreakingLib.c ├── HardwareBreakingLib.h ├── Log.c ├── Log.h ├── LsasrvExports.h ├── Source.def └── Structs.h ├── ImpersonateTrustedInstaler.sln ├── ImpersonateTrustedInstaler ├── ImpersonateTrustedInstaler.vcxproj ├── ImpersonateTrustedInstaler.vcxproj.filters ├── ImpersonateTrustedInstaler.vcxproj.user └── Main.c ├── LICENSE └── README.md /DumpHashes/DllMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/DllMain.c -------------------------------------------------------------------------------- /DumpHashes/DumpHashes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/DumpHashes.vcxproj -------------------------------------------------------------------------------- /DumpHashes/DumpHashes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/DumpHashes.vcxproj.filters -------------------------------------------------------------------------------- /DumpHashes/DumpHashes.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/DumpHashes.vcxproj.user -------------------------------------------------------------------------------- /DumpHashes/HardwareBreakingLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/HardwareBreakingLib.c -------------------------------------------------------------------------------- /DumpHashes/HardwareBreakingLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/HardwareBreakingLib.h -------------------------------------------------------------------------------- /DumpHashes/Log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/Log.c -------------------------------------------------------------------------------- /DumpHashes/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/Log.h -------------------------------------------------------------------------------- /DumpHashes/LsasrvExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/LsasrvExports.h -------------------------------------------------------------------------------- /DumpHashes/Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/Source.def -------------------------------------------------------------------------------- /DumpHashes/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/DumpHashes/Structs.h -------------------------------------------------------------------------------- /ImpersonateTrustedInstaler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/ImpersonateTrustedInstaler.sln -------------------------------------------------------------------------------- /ImpersonateTrustedInstaler/ImpersonateTrustedInstaler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/ImpersonateTrustedInstaler/ImpersonateTrustedInstaler.vcxproj -------------------------------------------------------------------------------- /ImpersonateTrustedInstaler/ImpersonateTrustedInstaler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/ImpersonateTrustedInstaler/ImpersonateTrustedInstaler.vcxproj.filters -------------------------------------------------------------------------------- /ImpersonateTrustedInstaler/ImpersonateTrustedInstaler.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/ImpersonateTrustedInstaler/ImpersonateTrustedInstaler.vcxproj.user -------------------------------------------------------------------------------- /ImpersonateTrustedInstaler/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/ImpersonateTrustedInstaler/Main.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maldev-Academy/HookingLsassForCredentials/HEAD/README.md --------------------------------------------------------------------------------