├── .gitignore ├── .ycm_extra_conf.py ├── ApiHashingWithPython └── hasher.py ├── BootExecuteNativeApp ├── NativeApp.c ├── NativeApp.vcxproj └── NativeApp.vcxproj.filters ├── ComponentObjectModel ├── COMShellExecute │ ├── COMShellExecute.c │ ├── COMShellExecute.vcxproj │ └── COMShellExecute.vcxproj.filters └── COMemExecuteAssembly │ ├── COMemExecuteAssembly.cpp │ ├── COMemExecuteAssembly.vcxproj │ ├── COMemExecuteAssembly.vcxproj.filters │ └── common.h ├── CustomShellcode ├── MetTheStager │ ├── MetTheStagerBeaonHttps │ │ └── shellcode.py │ ├── MetTheStagerHttps │ │ └── shellcode.py │ └── MetTheStagerTcp │ │ └── shellcode.py ├── WSASocketReverseShell │ └── shellcode.py ├── gen_hash.py ├── ip_2_bytes.py └── srv_uri_2_bytes.py ├── DontPutYourEggsInOneBasket ├── DontPutYourEggsInOneBasket │ ├── DontPutYourEggsInOneBasket.c │ ├── DontPutYourEggsInOneBasket.vcxproj │ └── DontPutYourEggsInOneBasket.vcxproj.filters ├── gen_hash.py └── shellcode.py ├── Driver └── HandleCallbacks │ └── ObRegisterCallbacks │ ├── ObRegisterCallbacks.sln │ └── ObRegisterCallbacks │ ├── Driver.c │ ├── Driver.h │ ├── Handlers.c │ ├── ObRegisterCallbacks.inf │ ├── ObRegisterCallbacks.vcxproj │ ├── ObRegisterCallbacks.vcxproj.filters │ └── trace.h ├── HideString └── hide_string.c ├── InitIndirectSyscallsWithLoop ├── Makefile ├── apisets.c ├── apisets.h ├── base.c ├── hashing.c ├── hashing.h ├── icon.ico ├── init_syscalls.c ├── log.h ├── pebwalking.c ├── pebwalking.h ├── resource.h ├── resource.rc ├── structs.h ├── syscall.c └── syscall.h ├── LICENSE ├── MetTheStager ├── MetTheStager.c ├── MetTheStager.vcxproj └── MetTheStager.vcxproj.filters ├── ProcessHollowing ├── ProcessHollowing_1 │ ├── ProcessHollowing_1.c │ ├── ProcessHollowing_1.vcxproj │ ├── ProcessHollowing_1.vcxproj.filters │ └── Structs.h ├── ProcessHollowing_2 │ ├── ProcessHollowing_2.c │ ├── ProcessHollowing_2.vcxproj │ ├── ProcessHollowing_2.vcxproj.filters │ └── Structs.h ├── ProcessHollowing_3 │ ├── ProcessHollowing_3.c │ ├── ProcessHollowing_3.vcxproj │ ├── ProcessHollowing_3.vcxproj.filters │ └── Structs.h └── ProcessHollowing_4 │ ├── ProcessHollowing_4.c │ ├── ProcessHollowing_4.vcxproj │ ├── ProcessHollowing_4.vcxproj.filters │ └── Structs.h ├── README.md ├── RopCfgFree ├── RopCfgFree.c ├── RopCfgFree.vcxproj └── RopCfgFree.vcxproj.filters ├── RopLegit ├── RopLegit.vcxproj ├── RopLegit.vcxproj.filters └── main.c ├── Samples ├── BootExecuteNativeApp │ ├── BootExecuteNativeApp.bin.zip │ └── README.md └── SilentBishop │ ├── README.md │ └── SilentBishop.bin.zip ├── SharedMemoryInjection ├── ReadFromSharedMemory │ ├── Common.h │ ├── ReadFromSharedMemory.c │ ├── ReadFromSharedMemory.vcxproj │ └── ReadFromSharedMemory.vcxproj.filters └── SharedMemInjectionDll │ ├── SharedMemInjectionDll.c │ ├── SharedMemInjectionDll.vcxproj │ └── SharedMemInjectionDll.vcxproj.filters ├── SilentBishop ├── RemoteApcInjectionSyscall.sln └── RemoteApcInjectionSyscall │ ├── AntiAnalysis.c │ ├── AntiAnalysis.h │ ├── Common.h │ ├── RemoteApcInjectionSyscall.c │ ├── RemoteApcInjectionSyscall.vcxproj │ ├── RemoteApcInjectionSyscall.vcxproj.filters │ ├── Structs.h │ ├── Syscall-x64.asm │ ├── Syscall.c │ └── Utils.c ├── TheLostThread ├── TheLostThread.vcxproj ├── TheLostThread.vcxproj.filters └── main.c └── ThreadlessInjection ├── ThreadlessInjection.c ├── ThreadlessInjection.vcxproj └── ThreadlessInjection.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/.gitignore -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /ApiHashingWithPython/hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ApiHashingWithPython/hasher.py -------------------------------------------------------------------------------- /BootExecuteNativeApp/NativeApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/BootExecuteNativeApp/NativeApp.c -------------------------------------------------------------------------------- /BootExecuteNativeApp/NativeApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/BootExecuteNativeApp/NativeApp.vcxproj -------------------------------------------------------------------------------- /BootExecuteNativeApp/NativeApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/BootExecuteNativeApp/NativeApp.vcxproj.filters -------------------------------------------------------------------------------- /ComponentObjectModel/COMShellExecute/COMShellExecute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMShellExecute/COMShellExecute.c -------------------------------------------------------------------------------- /ComponentObjectModel/COMShellExecute/COMShellExecute.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMShellExecute/COMShellExecute.vcxproj -------------------------------------------------------------------------------- /ComponentObjectModel/COMShellExecute/COMShellExecute.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMShellExecute/COMShellExecute.vcxproj.filters -------------------------------------------------------------------------------- /ComponentObjectModel/COMemExecuteAssembly/COMemExecuteAssembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMemExecuteAssembly/COMemExecuteAssembly.cpp -------------------------------------------------------------------------------- /ComponentObjectModel/COMemExecuteAssembly/COMemExecuteAssembly.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMemExecuteAssembly/COMemExecuteAssembly.vcxproj -------------------------------------------------------------------------------- /ComponentObjectModel/COMemExecuteAssembly/COMemExecuteAssembly.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMemExecuteAssembly/COMemExecuteAssembly.vcxproj.filters -------------------------------------------------------------------------------- /ComponentObjectModel/COMemExecuteAssembly/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ComponentObjectModel/COMemExecuteAssembly/common.h -------------------------------------------------------------------------------- /CustomShellcode/MetTheStager/MetTheStagerBeaonHttps/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/MetTheStager/MetTheStagerBeaonHttps/shellcode.py -------------------------------------------------------------------------------- /CustomShellcode/MetTheStager/MetTheStagerHttps/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/MetTheStager/MetTheStagerHttps/shellcode.py -------------------------------------------------------------------------------- /CustomShellcode/MetTheStager/MetTheStagerTcp/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/MetTheStager/MetTheStagerTcp/shellcode.py -------------------------------------------------------------------------------- /CustomShellcode/WSASocketReverseShell/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/WSASocketReverseShell/shellcode.py -------------------------------------------------------------------------------- /CustomShellcode/gen_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/gen_hash.py -------------------------------------------------------------------------------- /CustomShellcode/ip_2_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/ip_2_bytes.py -------------------------------------------------------------------------------- /CustomShellcode/srv_uri_2_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/CustomShellcode/srv_uri_2_bytes.py -------------------------------------------------------------------------------- /DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket.c -------------------------------------------------------------------------------- /DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket.vcxproj -------------------------------------------------------------------------------- /DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket/DontPutYourEggsInOneBasket.vcxproj.filters -------------------------------------------------------------------------------- /DontPutYourEggsInOneBasket/gen_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/DontPutYourEggsInOneBasket/gen_hash.py -------------------------------------------------------------------------------- /DontPutYourEggsInOneBasket/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/DontPutYourEggsInOneBasket/shellcode.py -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.sln -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/Driver.c -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/Driver.h -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/Handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/Handlers.c -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.inf -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.vcxproj -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/ObRegisterCallbacks.vcxproj.filters -------------------------------------------------------------------------------- /Driver/HandleCallbacks/ObRegisterCallbacks/ObRegisterCallbacks/trace.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /HideString/hide_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/HideString/hide_string.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/Makefile -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/apisets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/apisets.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/apisets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/apisets.h -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/base.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/hashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/hashing.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/hashing.h -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/icon.ico -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/init_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/init_syscalls.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/log.h -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/pebwalking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/pebwalking.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/pebwalking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/pebwalking.h -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/resource.h -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/resource.rc -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/structs.h -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/syscall.c -------------------------------------------------------------------------------- /InitIndirectSyscallsWithLoop/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/InitIndirectSyscallsWithLoop/syscall.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/LICENSE -------------------------------------------------------------------------------- /MetTheStager/MetTheStager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/MetTheStager/MetTheStager.c -------------------------------------------------------------------------------- /MetTheStager/MetTheStager.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/MetTheStager/MetTheStager.vcxproj -------------------------------------------------------------------------------- /MetTheStager/MetTheStager.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/MetTheStager/MetTheStager.vcxproj.filters -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_1/ProcessHollowing_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_1/ProcessHollowing_1.c -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_1/ProcessHollowing_1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_1/ProcessHollowing_1.vcxproj -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_1/ProcessHollowing_1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_1/ProcessHollowing_1.vcxproj.filters -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_1/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_1/Structs.h -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_2/ProcessHollowing_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_2/ProcessHollowing_2.c -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_2/ProcessHollowing_2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_2/ProcessHollowing_2.vcxproj -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_2/ProcessHollowing_2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_2/ProcessHollowing_2.vcxproj.filters -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_2/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_2/Structs.h -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_3/ProcessHollowing_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_3/ProcessHollowing_3.c -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_3/ProcessHollowing_3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_3/ProcessHollowing_3.vcxproj -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_3/ProcessHollowing_3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_3/ProcessHollowing_3.vcxproj.filters -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_3/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_3/Structs.h -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_4/ProcessHollowing_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_4/ProcessHollowing_4.c -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_4/ProcessHollowing_4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_4/ProcessHollowing_4.vcxproj -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_4/ProcessHollowing_4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_4/ProcessHollowing_4.vcxproj.filters -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing_4/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ProcessHollowing/ProcessHollowing_4/Structs.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/README.md -------------------------------------------------------------------------------- /RopCfgFree/RopCfgFree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/RopCfgFree/RopCfgFree.c -------------------------------------------------------------------------------- /RopCfgFree/RopCfgFree.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/RopCfgFree/RopCfgFree.vcxproj -------------------------------------------------------------------------------- /RopCfgFree/RopCfgFree.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/RopCfgFree/RopCfgFree.vcxproj.filters -------------------------------------------------------------------------------- /RopLegit/RopLegit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/RopLegit/RopLegit.vcxproj -------------------------------------------------------------------------------- /RopLegit/RopLegit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/RopLegit/RopLegit.vcxproj.filters -------------------------------------------------------------------------------- /RopLegit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/RopLegit/main.c -------------------------------------------------------------------------------- /Samples/BootExecuteNativeApp/BootExecuteNativeApp.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Samples/BootExecuteNativeApp/BootExecuteNativeApp.bin.zip -------------------------------------------------------------------------------- /Samples/BootExecuteNativeApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Samples/BootExecuteNativeApp/README.md -------------------------------------------------------------------------------- /Samples/SilentBishop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Samples/SilentBishop/README.md -------------------------------------------------------------------------------- /Samples/SilentBishop/SilentBishop.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/Samples/SilentBishop/SilentBishop.bin.zip -------------------------------------------------------------------------------- /SharedMemoryInjection/ReadFromSharedMemory/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/ReadFromSharedMemory/Common.h -------------------------------------------------------------------------------- /SharedMemoryInjection/ReadFromSharedMemory/ReadFromSharedMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/ReadFromSharedMemory/ReadFromSharedMemory.c -------------------------------------------------------------------------------- /SharedMemoryInjection/ReadFromSharedMemory/ReadFromSharedMemory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/ReadFromSharedMemory/ReadFromSharedMemory.vcxproj -------------------------------------------------------------------------------- /SharedMemoryInjection/ReadFromSharedMemory/ReadFromSharedMemory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/ReadFromSharedMemory/ReadFromSharedMemory.vcxproj.filters -------------------------------------------------------------------------------- /SharedMemoryInjection/SharedMemInjectionDll/SharedMemInjectionDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/SharedMemInjectionDll/SharedMemInjectionDll.c -------------------------------------------------------------------------------- /SharedMemoryInjection/SharedMemInjectionDll/SharedMemInjectionDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/SharedMemInjectionDll/SharedMemInjectionDll.vcxproj -------------------------------------------------------------------------------- /SharedMemoryInjection/SharedMemInjectionDll/SharedMemInjectionDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SharedMemoryInjection/SharedMemInjectionDll/SharedMemInjectionDll.vcxproj.filters -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall.sln -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/AntiAnalysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/AntiAnalysis.c -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/AntiAnalysis.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | BOOL TimeTickCheck(); 4 | 5 | -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/Common.h -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/RemoteApcInjectionSyscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/RemoteApcInjectionSyscall.c -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/RemoteApcInjectionSyscall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/RemoteApcInjectionSyscall.vcxproj -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/RemoteApcInjectionSyscall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/RemoteApcInjectionSyscall.vcxproj.filters -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/Structs.h -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/Syscall-x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/Syscall-x64.asm -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/Syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/Syscall.c -------------------------------------------------------------------------------- /SilentBishop/RemoteApcInjectionSyscall/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/SilentBishop/RemoteApcInjectionSyscall/Utils.c -------------------------------------------------------------------------------- /TheLostThread/TheLostThread.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/TheLostThread/TheLostThread.vcxproj -------------------------------------------------------------------------------- /TheLostThread/TheLostThread.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/TheLostThread/TheLostThread.vcxproj.filters -------------------------------------------------------------------------------- /TheLostThread/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/TheLostThread/main.c -------------------------------------------------------------------------------- /ThreadlessInjection/ThreadlessInjection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ThreadlessInjection/ThreadlessInjection.c -------------------------------------------------------------------------------- /ThreadlessInjection/ThreadlessInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ThreadlessInjection/ThreadlessInjection.vcxproj -------------------------------------------------------------------------------- /ThreadlessInjection/ThreadlessInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0prrr/Malwear-Sweet/HEAD/ThreadlessInjection/ThreadlessInjection.vcxproj.filters --------------------------------------------------------------------------------