├── README.md ├── Shellcode ├── .gitignore ├── 32bitLocalBinSh │ ├── makefile │ └── shell32.s ├── 32bitPutFileOnDisk │ ├── makefile │ └── shell32.s ├── 32bitSocketReuse │ ├── handler.sh │ ├── makefile │ ├── readme │ ├── shell.py │ └── shell32.s ├── 32bitStager │ ├── makefile │ ├── mapper_payload.s │ ├── readme │ ├── stage │ ├── test.sh │ └── test_shellcode.c ├── 32shellEmulator │ ├── makefile │ ├── readme │ └── shell32.s ├── 64BitLocalBinSh │ ├── makefile │ └── shell64.s ├── 64bitPutFileOnDisk │ ├── makefile │ └── shell64.s ├── 64bitSocketReuse │ ├── handler.sh │ ├── makefile │ ├── readme │ ├── shell.py │ └── shell64.s ├── 64shellEmulator │ ├── makefile │ └── shell64.s ├── README.md ├── getsShellcode │ ├── getsShellcode.s │ ├── makefile │ └── readme ├── include │ ├── elf.s │ ├── getSysCallNum.sh │ ├── runtime │ │ ├── gs.h │ │ └── gs.s │ ├── short32.s │ ├── short64.s │ ├── syscall.s │ └── util.s ├── isis │ ├── example.py │ ├── isis.py │ ├── nasm.py │ ├── nasm │ │ ├── LICENSE │ │ ├── nasm.exe │ │ ├── ndisasm.exe │ │ └── rdoff │ │ │ ├── ldrdf.exe │ │ │ ├── rdf2bin.exe │ │ │ ├── rdf2com.exe │ │ │ ├── rdf2ihx.exe │ │ │ ├── rdf2ith.exe │ │ │ ├── rdf2srec.exe │ │ │ ├── rdfdump.exe │ │ │ ├── rdflib.exe │ │ │ └── rdx.exe │ └── setup.py ├── lib_research │ ├── elf_notes │ ├── lib.c │ ├── loader.s │ ├── loader │ │ ├── elf_offsets.s │ │ ├── handler.sh │ │ ├── loader.s │ │ ├── makefile │ │ └── sendModule.py │ ├── makefile │ ├── prgm_header.py │ └── stage │ │ ├── gdb.init │ │ ├── makefile │ │ └── s.c ├── loader_research │ ├── .gdbinit │ ├── Makefile │ ├── input.c │ ├── mapper.c │ ├── other.c │ ├── test.c │ └── unmap.c ├── reverse32IPv4 │ ├── makefile │ ├── r32.s │ └── readme ├── reverse64IPv4 │ ├── makefile │ ├── r64.s │ └── readme ├── shellcodeAsArray │ └── sa.py └── stage │ ├── makefile │ └── stage.c ├── authoring_talk.pptx ├── dllinjection ├── INJECT_DLL.exe ├── dll_injection.cpp └── readme.md ├── keylogger_nix ├── Makefile ├── configure ├── hookme.c ├── hookme.c~ ├── hookme_sol.c └── offsets.h ├── keylogger_win_cpp ├── Release │ ├── keylogger.exe │ └── keylogger.pdb ├── keylogger.sdf ├── keylogger.sln ├── keylogger.v11.suo └── keylogger │ ├── Debug │ ├── keylogger.Build.CppClean.log │ └── keylogger.log │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── cl.command.1.tlog │ ├── keylogger.Build.CppClean.log │ ├── keylogger.lastbuildstate │ ├── keylogger.log │ ├── keylogger.obj │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link-rc.read.1.tlog │ ├── link-rc.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── vc110.pdb │ ├── keylogger.cpp │ ├── keylogger.vcxproj │ ├── keylogger.vcxproj.filters │ ├── keylogger.vcxproj.user │ ├── keylogger_32 │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── cl.command.1.tlog │ ├── keylogger.lastbuildstate │ ├── keylogger.log │ ├── keylogger.obj │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link-rc.read.1.tlog │ ├── link-rc.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── vc110.pdb │ └── keys_1412185137.txt ├── keylogger_win_py ├── dep.txt ├── keylogger.py └── setup.py ├── kmdhook ├── KMD_Installer.exe ├── SYSENTER_HOOK.sys ├── gdt_call_gate_insert.cpp ├── gdt_call_gate_insert.h ├── kmd_hook_ver2.cpp ├── kmd_install.cpp └── readme.md └── rootkits └── hxdef.zip /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/README.md -------------------------------------------------------------------------------- /Shellcode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/.gitignore -------------------------------------------------------------------------------- /Shellcode/32bitLocalBinSh/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitLocalBinSh/makefile -------------------------------------------------------------------------------- /Shellcode/32bitLocalBinSh/shell32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitLocalBinSh/shell32.s -------------------------------------------------------------------------------- /Shellcode/32bitPutFileOnDisk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitPutFileOnDisk/makefile -------------------------------------------------------------------------------- /Shellcode/32bitPutFileOnDisk/shell32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitPutFileOnDisk/shell32.s -------------------------------------------------------------------------------- /Shellcode/32bitSocketReuse/handler.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | socat TCP-LISTEN:12345,reuseaddr,fork EXEC:"strace ./testShellcode" 3 | 4 | -------------------------------------------------------------------------------- /Shellcode/32bitSocketReuse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitSocketReuse/makefile -------------------------------------------------------------------------------- /Shellcode/32bitSocketReuse/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitSocketReuse/readme -------------------------------------------------------------------------------- /Shellcode/32bitSocketReuse/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitSocketReuse/shell.py -------------------------------------------------------------------------------- /Shellcode/32bitSocketReuse/shell32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitSocketReuse/shell32.s -------------------------------------------------------------------------------- /Shellcode/32bitStager/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitStager/makefile -------------------------------------------------------------------------------- /Shellcode/32bitStager/mapper_payload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitStager/mapper_payload.s -------------------------------------------------------------------------------- /Shellcode/32bitStager/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitStager/readme -------------------------------------------------------------------------------- /Shellcode/32bitStager/stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitStager/stage -------------------------------------------------------------------------------- /Shellcode/32bitStager/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./test_shellcode mapper_payload_test 3 | -------------------------------------------------------------------------------- /Shellcode/32bitStager/test_shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32bitStager/test_shellcode.c -------------------------------------------------------------------------------- /Shellcode/32shellEmulator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32shellEmulator/makefile -------------------------------------------------------------------------------- /Shellcode/32shellEmulator/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32shellEmulator/readme -------------------------------------------------------------------------------- /Shellcode/32shellEmulator/shell32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/32shellEmulator/shell32.s -------------------------------------------------------------------------------- /Shellcode/64BitLocalBinSh/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64BitLocalBinSh/makefile -------------------------------------------------------------------------------- /Shellcode/64BitLocalBinSh/shell64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64BitLocalBinSh/shell64.s -------------------------------------------------------------------------------- /Shellcode/64bitPutFileOnDisk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64bitPutFileOnDisk/makefile -------------------------------------------------------------------------------- /Shellcode/64bitPutFileOnDisk/shell64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64bitPutFileOnDisk/shell64.s -------------------------------------------------------------------------------- /Shellcode/64bitSocketReuse/handler.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | socat TCP-LISTEN:12345,reuseaddr,fork EXEC:"strace ./testShellcode" 3 | 4 | -------------------------------------------------------------------------------- /Shellcode/64bitSocketReuse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64bitSocketReuse/makefile -------------------------------------------------------------------------------- /Shellcode/64bitSocketReuse/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64bitSocketReuse/readme -------------------------------------------------------------------------------- /Shellcode/64bitSocketReuse/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64bitSocketReuse/shell.py -------------------------------------------------------------------------------- /Shellcode/64bitSocketReuse/shell64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64bitSocketReuse/shell64.s -------------------------------------------------------------------------------- /Shellcode/64shellEmulator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64shellEmulator/makefile -------------------------------------------------------------------------------- /Shellcode/64shellEmulator/shell64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/64shellEmulator/shell64.s -------------------------------------------------------------------------------- /Shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/README.md -------------------------------------------------------------------------------- /Shellcode/getsShellcode/getsShellcode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/getsShellcode/getsShellcode.s -------------------------------------------------------------------------------- /Shellcode/getsShellcode/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/getsShellcode/makefile -------------------------------------------------------------------------------- /Shellcode/getsShellcode/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/getsShellcode/readme -------------------------------------------------------------------------------- /Shellcode/include/elf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/elf.s -------------------------------------------------------------------------------- /Shellcode/include/getSysCallNum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/getSysCallNum.sh -------------------------------------------------------------------------------- /Shellcode/include/runtime/gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/runtime/gs.h -------------------------------------------------------------------------------- /Shellcode/include/runtime/gs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/runtime/gs.s -------------------------------------------------------------------------------- /Shellcode/include/short32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/short32.s -------------------------------------------------------------------------------- /Shellcode/include/short64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/short64.s -------------------------------------------------------------------------------- /Shellcode/include/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/syscall.s -------------------------------------------------------------------------------- /Shellcode/include/util.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/include/util.s -------------------------------------------------------------------------------- /Shellcode/isis/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/example.py -------------------------------------------------------------------------------- /Shellcode/isis/isis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/isis.py -------------------------------------------------------------------------------- /Shellcode/isis/nasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm.py -------------------------------------------------------------------------------- /Shellcode/isis/nasm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/LICENSE -------------------------------------------------------------------------------- /Shellcode/isis/nasm/nasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/nasm.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/ndisasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/ndisasm.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/ldrdf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/ldrdf.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdf2bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdf2bin.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdf2com.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdf2com.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdf2ihx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdf2ihx.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdf2ith.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdf2ith.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdf2srec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdf2srec.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdfdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdfdump.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdflib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdflib.exe -------------------------------------------------------------------------------- /Shellcode/isis/nasm/rdoff/rdx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/nasm/rdoff/rdx.exe -------------------------------------------------------------------------------- /Shellcode/isis/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/isis/setup.py -------------------------------------------------------------------------------- /Shellcode/lib_research/elf_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/elf_notes -------------------------------------------------------------------------------- /Shellcode/lib_research/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/lib.c -------------------------------------------------------------------------------- /Shellcode/lib_research/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/loader.s -------------------------------------------------------------------------------- /Shellcode/lib_research/loader/elf_offsets.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/loader/elf_offsets.s -------------------------------------------------------------------------------- /Shellcode/lib_research/loader/handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/loader/handler.sh -------------------------------------------------------------------------------- /Shellcode/lib_research/loader/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/loader/loader.s -------------------------------------------------------------------------------- /Shellcode/lib_research/loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/loader/makefile -------------------------------------------------------------------------------- /Shellcode/lib_research/loader/sendModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/loader/sendModule.py -------------------------------------------------------------------------------- /Shellcode/lib_research/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/makefile -------------------------------------------------------------------------------- /Shellcode/lib_research/prgm_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/prgm_header.py -------------------------------------------------------------------------------- /Shellcode/lib_research/stage/gdb.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/stage/gdb.init -------------------------------------------------------------------------------- /Shellcode/lib_research/stage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/stage/makefile -------------------------------------------------------------------------------- /Shellcode/lib_research/stage/s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/lib_research/stage/s.c -------------------------------------------------------------------------------- /Shellcode/loader_research/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/.gdbinit -------------------------------------------------------------------------------- /Shellcode/loader_research/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/Makefile -------------------------------------------------------------------------------- /Shellcode/loader_research/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/input.c -------------------------------------------------------------------------------- /Shellcode/loader_research/mapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/mapper.c -------------------------------------------------------------------------------- /Shellcode/loader_research/other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/other.c -------------------------------------------------------------------------------- /Shellcode/loader_research/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/test.c -------------------------------------------------------------------------------- /Shellcode/loader_research/unmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/loader_research/unmap.c -------------------------------------------------------------------------------- /Shellcode/reverse32IPv4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/reverse32IPv4/makefile -------------------------------------------------------------------------------- /Shellcode/reverse32IPv4/r32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/reverse32IPv4/r32.s -------------------------------------------------------------------------------- /Shellcode/reverse32IPv4/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/reverse32IPv4/readme -------------------------------------------------------------------------------- /Shellcode/reverse64IPv4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/reverse64IPv4/makefile -------------------------------------------------------------------------------- /Shellcode/reverse64IPv4/r64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/reverse64IPv4/r64.s -------------------------------------------------------------------------------- /Shellcode/reverse64IPv4/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/reverse64IPv4/readme -------------------------------------------------------------------------------- /Shellcode/shellcodeAsArray/sa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/shellcodeAsArray/sa.py -------------------------------------------------------------------------------- /Shellcode/stage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/stage/makefile -------------------------------------------------------------------------------- /Shellcode/stage/stage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/Shellcode/stage/stage.c -------------------------------------------------------------------------------- /authoring_talk.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/authoring_talk.pptx -------------------------------------------------------------------------------- /dllinjection/INJECT_DLL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/dllinjection/INJECT_DLL.exe -------------------------------------------------------------------------------- /dllinjection/dll_injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/dllinjection/dll_injection.cpp -------------------------------------------------------------------------------- /dllinjection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/dllinjection/readme.md -------------------------------------------------------------------------------- /keylogger_nix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_nix/Makefile -------------------------------------------------------------------------------- /keylogger_nix/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_nix/configure -------------------------------------------------------------------------------- /keylogger_nix/hookme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_nix/hookme.c -------------------------------------------------------------------------------- /keylogger_nix/hookme.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_nix/hookme.c~ -------------------------------------------------------------------------------- /keylogger_nix/hookme_sol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_nix/hookme_sol.c -------------------------------------------------------------------------------- /keylogger_nix/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_nix/offsets.h -------------------------------------------------------------------------------- /keylogger_win_cpp/Release/keylogger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/Release/keylogger.exe -------------------------------------------------------------------------------- /keylogger_win_cpp/Release/keylogger.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/Release/keylogger.pdb -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger.sdf -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger.sln -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger.v11.suo -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Debug/keylogger.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Debug/keylogger.Build.CppClean.log -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Debug/keylogger.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Debug/keylogger.log -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/keylogger.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/keylogger.Build.CppClean.log -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/keylogger.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/keylogger.lastbuildstate -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/keylogger.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/keylogger.log -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/keylogger.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/keylogger.obj -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link-rc.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link-rc.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link.command.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/link.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/Release/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/Release/vc110.pdb -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger.cpp -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger.vcxproj -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger.vcxproj.filters -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger.vcxproj.user -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/CL.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/CL.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/cl.command.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/keylogger.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/keylogger.lastbuildstate -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/keylogger.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/keylogger.log -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/keylogger.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/keylogger.obj -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link-rc.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link-rc.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link.command.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link.read.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/link.write.1.tlog -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keylogger_32/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_cpp/keylogger/keylogger_32/vc110.pdb -------------------------------------------------------------------------------- /keylogger_win_cpp/keylogger/keys_1412185137.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keylogger_win_py/dep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_py/dep.txt -------------------------------------------------------------------------------- /keylogger_win_py/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_py/keylogger.py -------------------------------------------------------------------------------- /keylogger_win_py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/keylogger_win_py/setup.py -------------------------------------------------------------------------------- /kmdhook/KMD_Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/kmdhook/KMD_Installer.exe -------------------------------------------------------------------------------- /kmdhook/SYSENTER_HOOK.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/kmdhook/SYSENTER_HOOK.sys -------------------------------------------------------------------------------- /kmdhook/gdt_call_gate_insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/kmdhook/gdt_call_gate_insert.cpp -------------------------------------------------------------------------------- /kmdhook/gdt_call_gate_insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/kmdhook/gdt_call_gate_insert.h -------------------------------------------------------------------------------- /kmdhook/kmd_hook_ver2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/kmdhook/kmd_hook_ver2.cpp -------------------------------------------------------------------------------- /kmdhook/kmd_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/kmdhook/kmd_install.cpp -------------------------------------------------------------------------------- /kmdhook/readme.md: -------------------------------------------------------------------------------- 1 | placeholder readme -------------------------------------------------------------------------------- /rootkits/hxdef.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muffins/rookit_playground/HEAD/rootkits/hxdef.zip --------------------------------------------------------------------------------