├── README.md ├── dist └── ppldump.cna └── src ├── Makefile ├── headers ├── api_functions.h ├── beacon.h ├── exploit.h ├── fileheader.h ├── ntdll.h ├── syscalls.h ├── tdefs.h └── utils.h └── main.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/README.md -------------------------------------------------------------------------------- /dist/ppldump.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/dist/ppldump.cna -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/headers/api_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/api_functions.h -------------------------------------------------------------------------------- /src/headers/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/beacon.h -------------------------------------------------------------------------------- /src/headers/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/exploit.h -------------------------------------------------------------------------------- /src/headers/fileheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/fileheader.h -------------------------------------------------------------------------------- /src/headers/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/ntdll.h -------------------------------------------------------------------------------- /src/headers/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/syscalls.h -------------------------------------------------------------------------------- /src/headers/tdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/tdefs.h -------------------------------------------------------------------------------- /src/headers/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/headers/utils.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/PPLDump_BOF/HEAD/src/main.c --------------------------------------------------------------------------------