├── .DS_Store ├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .gitmodules ├── Aggressors ├── HelpColor │ ├── HelpColor.cna │ ├── LICENSE.md │ ├── README.md │ └── images │ │ └── helpx_example.png ├── README.md └── subs.sh ├── BOFs ├── InjectionPatches │ ├── Curl │ │ ├── Makefile │ │ ├── README.md │ │ ├── beacon.h │ │ ├── curl.cna │ │ ├── curl.x64.o │ │ ├── curl.x86.o │ │ ├── entry.c │ │ └── images │ │ │ ├── dialog_box.png │ │ │ └── simple_curl.png │ ├── ETW │ │ ├── README.md │ │ ├── beacon.h │ │ ├── etw.c │ │ ├── etw.cna │ │ ├── etw.x64.o │ │ └── etw.x86.o │ ├── FunctionUtil │ │ ├── Makefile │ │ ├── README.md │ │ ├── beacon.h │ │ ├── entry.c │ │ ├── functionutil.cna │ │ ├── functionutil.x64.o │ │ └── functionutil.x86.o │ ├── README.md │ ├── StaticSyscallsAPCSpawn │ │ ├── Makefile │ │ ├── README.md │ │ ├── Syscalls.h │ │ ├── beacon.h │ │ ├── entry.c │ │ ├── static_syscalls_apc_spawn.cna │ │ └── syscallsapcspawn.x64.o │ ├── StaticSyscallsDump │ │ ├── Makefile │ │ ├── README.md │ │ ├── Syscalls.h │ │ ├── SyscallsDump.h │ │ ├── beacon.h │ │ ├── entry.c │ │ ├── syscalls_dump.cna │ │ └── syscallsdump.x64.o │ ├── StaticSyscallsInject │ │ ├── Makefile │ │ ├── README.md │ │ ├── Syscalls.h │ │ ├── beacon.h │ │ ├── entry.c │ │ ├── static_syscalls_inject.cna │ │ └── syscallsinject.x64.o │ ├── SyscallsInject │ │ ├── Makefile │ │ ├── README.md │ │ ├── Syscalls.h │ │ ├── beacon.h │ │ ├── entry.c │ │ ├── syscalls_inject.cna │ │ └── syscallsinject.x64.o │ └── SyscallsSpawn │ │ ├── Makefile │ │ ├── README.md │ │ ├── Syscalls.h │ │ ├── beacon.h │ │ ├── entry.c │ │ ├── syscalls_spawn.cna │ │ └── syscallsspawn.x64.o └── README.md ├── CODEOWNERS └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Aggressors/HelpColor/HelpColor.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/Aggressors/HelpColor/HelpColor.cna -------------------------------------------------------------------------------- /Aggressors/HelpColor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/Aggressors/HelpColor/LICENSE.md -------------------------------------------------------------------------------- /Aggressors/HelpColor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/Aggressors/HelpColor/README.md -------------------------------------------------------------------------------- /Aggressors/HelpColor/images/helpx_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/Aggressors/HelpColor/images/helpx_example.png -------------------------------------------------------------------------------- /Aggressors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/Aggressors/README.md -------------------------------------------------------------------------------- /Aggressors/subs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/Aggressors/subs.sh -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/curl.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/curl.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/curl.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/curl.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/curl.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/curl.x86.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/images/dialog_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/images/dialog_box.png -------------------------------------------------------------------------------- /BOFs/InjectionPatches/Curl/images/simple_curl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/Curl/images/simple_curl.png -------------------------------------------------------------------------------- /BOFs/InjectionPatches/ETW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/ETW/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/ETW/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/ETW/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/ETW/etw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/ETW/etw.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/ETW/etw.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/ETW/etw.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/ETW/etw.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/ETW/etw.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/ETW/etw.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/ETW/etw.x86.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/functionutil.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/functionutil.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/functionutil.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/functionutil.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/FunctionUtil/functionutil.x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/FunctionUtil/functionutil.x86.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/Syscalls.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/static_syscalls_apc_spawn.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/static_syscalls_apc_spawn.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsAPCSpawn/syscallsapcspawn.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsAPCSpawn/syscallsapcspawn.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/Syscalls.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/SyscallsDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/SyscallsDump.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/syscalls_dump.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/syscalls_dump.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsDump/syscallsdump.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsDump/syscallsdump.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/Syscalls.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/static_syscalls_inject.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/static_syscalls_inject.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/StaticSyscallsInject/syscallsinject.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/StaticSyscallsInject/syscallsinject.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/Syscalls.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/syscalls_inject.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/syscalls_inject.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsInject/syscallsinject.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsInject/syscallsinject.x64.o -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/Makefile -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/README.md -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/Syscalls.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/beacon.h -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/entry.c -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/syscalls_spawn.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/syscalls_spawn.cna -------------------------------------------------------------------------------- /BOFs/InjectionPatches/SyscallsSpawn/syscallsspawn.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/InjectionPatches/SyscallsSpawn/syscallsspawn.x64.o -------------------------------------------------------------------------------- /BOFs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/BOFs/README.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/QoL-BOFs/HEAD/README.md --------------------------------------------------------------------------------