├── .gitattributes ├── .gitignore ├── PPLmedic.sln ├── PPLmedic ├── Client.cpp ├── Client.h ├── Exploit.cpp ├── Exploit.h ├── ExploitElevate.cpp ├── ExploitElevate.h ├── PPLmedic.cpp ├── PPLmedic.rc ├── PPLmedic.vcxproj ├── PPLmedic.vcxproj.filters ├── Utils.cpp ├── Utils.h ├── WaaSMedicClient.cpp ├── WaaSMedicClient.h ├── globaldef.h ├── ntstuff.h └── resource.h ├── PPLmedicDll ├── PPLmedicDll.def ├── PPLmedicDll.vcxproj ├── PPLmedicDll.vcxproj.filters ├── Server.cpp ├── Server.h ├── common.cpp ├── common.h ├── dllmain.cpp ├── payload.cpp └── payload.h ├── README.md └── poc.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/.gitignore -------------------------------------------------------------------------------- /PPLmedic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic.sln -------------------------------------------------------------------------------- /PPLmedic/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/Client.cpp -------------------------------------------------------------------------------- /PPLmedic/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/Client.h -------------------------------------------------------------------------------- /PPLmedic/Exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/Exploit.cpp -------------------------------------------------------------------------------- /PPLmedic/Exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/Exploit.h -------------------------------------------------------------------------------- /PPLmedic/ExploitElevate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/ExploitElevate.cpp -------------------------------------------------------------------------------- /PPLmedic/ExploitElevate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/ExploitElevate.h -------------------------------------------------------------------------------- /PPLmedic/PPLmedic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/PPLmedic.cpp -------------------------------------------------------------------------------- /PPLmedic/PPLmedic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/PPLmedic.rc -------------------------------------------------------------------------------- /PPLmedic/PPLmedic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/PPLmedic.vcxproj -------------------------------------------------------------------------------- /PPLmedic/PPLmedic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/PPLmedic.vcxproj.filters -------------------------------------------------------------------------------- /PPLmedic/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/Utils.cpp -------------------------------------------------------------------------------- /PPLmedic/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/Utils.h -------------------------------------------------------------------------------- /PPLmedic/WaaSMedicClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/WaaSMedicClient.cpp -------------------------------------------------------------------------------- /PPLmedic/WaaSMedicClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/WaaSMedicClient.h -------------------------------------------------------------------------------- /PPLmedic/globaldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/globaldef.h -------------------------------------------------------------------------------- /PPLmedic/ntstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/ntstuff.h -------------------------------------------------------------------------------- /PPLmedic/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedic/resource.h -------------------------------------------------------------------------------- /PPLmedicDll/PPLmedicDll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/PPLmedicDll.def -------------------------------------------------------------------------------- /PPLmedicDll/PPLmedicDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/PPLmedicDll.vcxproj -------------------------------------------------------------------------------- /PPLmedicDll/PPLmedicDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/PPLmedicDll.vcxproj.filters -------------------------------------------------------------------------------- /PPLmedicDll/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/Server.cpp -------------------------------------------------------------------------------- /PPLmedicDll/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/Server.h -------------------------------------------------------------------------------- /PPLmedicDll/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/common.cpp -------------------------------------------------------------------------------- /PPLmedicDll/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/common.h -------------------------------------------------------------------------------- /PPLmedicDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/dllmain.cpp -------------------------------------------------------------------------------- /PPLmedicDll/payload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/payload.cpp -------------------------------------------------------------------------------- /PPLmedicDll/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/PPLmedicDll/payload.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/README.md -------------------------------------------------------------------------------- /poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/PPLmedic/HEAD/poc.png --------------------------------------------------------------------------------