├── .gitattributes ├── .gitignore ├── PPLrevenant.sln ├── PPLrevenant ├── PPLrevenant.cpp ├── PPLrevenant.vcxproj ├── PPLrevenant.vcxproj.filters ├── bcrypt_prov.h ├── common.cpp ├── common.h ├── exploit.cpp ├── exploit.h ├── keyiso.idl ├── keyiso_c.c ├── keyiso_s.c └── ntdll.h └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/.gitignore -------------------------------------------------------------------------------- /PPLrevenant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant.sln -------------------------------------------------------------------------------- /PPLrevenant/PPLrevenant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/PPLrevenant.cpp -------------------------------------------------------------------------------- /PPLrevenant/PPLrevenant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/PPLrevenant.vcxproj -------------------------------------------------------------------------------- /PPLrevenant/PPLrevenant.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/PPLrevenant.vcxproj.filters -------------------------------------------------------------------------------- /PPLrevenant/bcrypt_prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/bcrypt_prov.h -------------------------------------------------------------------------------- /PPLrevenant/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/common.cpp -------------------------------------------------------------------------------- /PPLrevenant/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/common.h -------------------------------------------------------------------------------- /PPLrevenant/exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/exploit.cpp -------------------------------------------------------------------------------- /PPLrevenant/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/exploit.h -------------------------------------------------------------------------------- /PPLrevenant/keyiso.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/keyiso.idl -------------------------------------------------------------------------------- /PPLrevenant/keyiso_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/keyiso_c.c -------------------------------------------------------------------------------- /PPLrevenant/keyiso_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/keyiso_s.c -------------------------------------------------------------------------------- /PPLrevenant/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/PPLrevenant/ntdll.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLrevenant/HEAD/README.md --------------------------------------------------------------------------------