├── .gitattributes ├── .gitignore ├── Common ├── AutoHandle.cpp ├── AutoHandle.h ├── AutoVirtualAlloc.cpp ├── AutoVirtualAlloc.h ├── ComInitializationGuard.cpp ├── ComInitializationGuard.h ├── Common.vcxproj ├── Common.vcxproj.filters ├── DebugPrint.h ├── Exception.h ├── IatHook.cpp ├── IatHook.h ├── PeModule.cpp ├── PeModule.h ├── ProcessEntryIterator.cpp ├── ProcessEntryIterator.h ├── ProcessUtils.cpp ├── ProcessUtils.h ├── RunningProcesses.cpp ├── RunningProcesses.h ├── SehException.cpp ├── SehException.h ├── SehTranslatorGuard.cpp ├── SehTranslatorGuard.h ├── StringUtils.cpp ├── StringUtils.h ├── TrampolineHook.cpp ├── TrampolineHook.h ├── VirtualAllocExGuard.cpp ├── VirtualAllocExGuard.h ├── VirtualProtectGuard.cpp ├── VirtualProtectGuard.h ├── Win32ErrorCodeException.cpp ├── Win32ErrorCodeException.h ├── Wmi.h ├── WmiProcessIterator.cpp ├── WmiProcessIterator.h ├── WmiQuery.cpp └── WmiQuery.h ├── DL ├── DL.vcxproj ├── DL.vcxproj.filters ├── README.md ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── EncryptDecrypt ├── EncryptDecrypt.vcxproj ├── EncryptDecrypt.vcxproj.filters ├── README.md └── main.cpp ├── Helper └── Helper.vcxproj.filters ├── HideDLL ├── HideDLL.vcxproj ├── HideDLL.vcxproj.filters └── hideDLL.cpp ├── Injection ├── Injection.cpp ├── Injection.h ├── Injection.vcxproj ├── Injection.vcxproj.filters ├── README.md └── images │ ├── executing_shellcode.gif │ └── mapping_shellcode.gif ├── Malware ├── Helpers.cpp ├── Helpers.h ├── Malware.cpp ├── Malware.rc ├── Malware.vcxproj ├── Malware.vcxproj.filters ├── README.md ├── UPDATER └── resource.h ├── OffensiveWinAPI.sln ├── PIC ├── PIC.c ├── PIC.h ├── PIC.vcxproj ├── PIC.vcxproj.filters └── README.md ├── PicInjection ├── Main.cpp ├── PicInjection.vcxproj └── PicInjection.vcxproj.filters ├── PlayWithNTFS ├── PlayWithNTFS.vcxproj ├── PlayWithNTFS.vcxproj.filters ├── Source.cpp └── victim.txt ├── README.md ├── ScanMemory ├── MemoryInformation.cpp ├── MemoryInformation.h ├── MemoryInformationIterator.cpp ├── MemoryInformationIterator.h ├── README.md ├── ScanMemory.vcxproj ├── ScanMemory.vcxproj.filters ├── images │ └── example.jpg └── main.cpp ├── Shellcode ├── README.md ├── Shellcode.vcxproj ├── Shellcode.vcxproj.filters └── shellcode.c ├── SimpleDllInjection ├── Main.cpp ├── SimpleDllInjection.vcxproj └── SimpleDllInjection.vcxproj.filters └── Tester ├── Tester.cpp ├── Tester.vcxproj └── Tester.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/AutoHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/AutoHandle.cpp -------------------------------------------------------------------------------- /Common/AutoHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/AutoHandle.h -------------------------------------------------------------------------------- /Common/AutoVirtualAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/AutoVirtualAlloc.cpp -------------------------------------------------------------------------------- /Common/AutoVirtualAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/AutoVirtualAlloc.h -------------------------------------------------------------------------------- /Common/ComInitializationGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/ComInitializationGuard.cpp -------------------------------------------------------------------------------- /Common/ComInitializationGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/ComInitializationGuard.h -------------------------------------------------------------------------------- /Common/Common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/Common.vcxproj -------------------------------------------------------------------------------- /Common/Common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/Common.vcxproj.filters -------------------------------------------------------------------------------- /Common/DebugPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/DebugPrint.h -------------------------------------------------------------------------------- /Common/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/Exception.h -------------------------------------------------------------------------------- /Common/IatHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/IatHook.cpp -------------------------------------------------------------------------------- /Common/IatHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/IatHook.h -------------------------------------------------------------------------------- /Common/PeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/PeModule.cpp -------------------------------------------------------------------------------- /Common/PeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/PeModule.h -------------------------------------------------------------------------------- /Common/ProcessEntryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/ProcessEntryIterator.cpp -------------------------------------------------------------------------------- /Common/ProcessEntryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/ProcessEntryIterator.h -------------------------------------------------------------------------------- /Common/ProcessUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/ProcessUtils.cpp -------------------------------------------------------------------------------- /Common/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/ProcessUtils.h -------------------------------------------------------------------------------- /Common/RunningProcesses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/RunningProcesses.cpp -------------------------------------------------------------------------------- /Common/RunningProcesses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/RunningProcesses.h -------------------------------------------------------------------------------- /Common/SehException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/SehException.cpp -------------------------------------------------------------------------------- /Common/SehException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/SehException.h -------------------------------------------------------------------------------- /Common/SehTranslatorGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/SehTranslatorGuard.cpp -------------------------------------------------------------------------------- /Common/SehTranslatorGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/SehTranslatorGuard.h -------------------------------------------------------------------------------- /Common/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/StringUtils.cpp -------------------------------------------------------------------------------- /Common/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/StringUtils.h -------------------------------------------------------------------------------- /Common/TrampolineHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/TrampolineHook.cpp -------------------------------------------------------------------------------- /Common/TrampolineHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/TrampolineHook.h -------------------------------------------------------------------------------- /Common/VirtualAllocExGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/VirtualAllocExGuard.cpp -------------------------------------------------------------------------------- /Common/VirtualAllocExGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/VirtualAllocExGuard.h -------------------------------------------------------------------------------- /Common/VirtualProtectGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/VirtualProtectGuard.cpp -------------------------------------------------------------------------------- /Common/VirtualProtectGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/VirtualProtectGuard.h -------------------------------------------------------------------------------- /Common/Win32ErrorCodeException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/Win32ErrorCodeException.cpp -------------------------------------------------------------------------------- /Common/Win32ErrorCodeException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/Win32ErrorCodeException.h -------------------------------------------------------------------------------- /Common/Wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/Wmi.h -------------------------------------------------------------------------------- /Common/WmiProcessIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/WmiProcessIterator.cpp -------------------------------------------------------------------------------- /Common/WmiProcessIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/WmiProcessIterator.h -------------------------------------------------------------------------------- /Common/WmiQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/WmiQuery.cpp -------------------------------------------------------------------------------- /Common/WmiQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Common/WmiQuery.h -------------------------------------------------------------------------------- /DL/DL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/DL.vcxproj -------------------------------------------------------------------------------- /DL/DL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/DL.vcxproj.filters -------------------------------------------------------------------------------- /DL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/README.md -------------------------------------------------------------------------------- /DL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/dllmain.cpp -------------------------------------------------------------------------------- /DL/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/framework.h -------------------------------------------------------------------------------- /DL/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/pch.cpp -------------------------------------------------------------------------------- /DL/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/DL/pch.h -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/EncryptDecrypt/EncryptDecrypt.vcxproj -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/EncryptDecrypt/EncryptDecrypt.vcxproj.filters -------------------------------------------------------------------------------- /EncryptDecrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/EncryptDecrypt/README.md -------------------------------------------------------------------------------- /EncryptDecrypt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/EncryptDecrypt/main.cpp -------------------------------------------------------------------------------- /Helper/Helper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Helper/Helper.vcxproj.filters -------------------------------------------------------------------------------- /HideDLL/HideDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/HideDLL/HideDLL.vcxproj -------------------------------------------------------------------------------- /HideDLL/HideDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/HideDLL/HideDLL.vcxproj.filters -------------------------------------------------------------------------------- /HideDLL/hideDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/HideDLL/hideDLL.cpp -------------------------------------------------------------------------------- /Injection/Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/Injection.cpp -------------------------------------------------------------------------------- /Injection/Injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/Injection.h -------------------------------------------------------------------------------- /Injection/Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/Injection.vcxproj -------------------------------------------------------------------------------- /Injection/Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/Injection.vcxproj.filters -------------------------------------------------------------------------------- /Injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/README.md -------------------------------------------------------------------------------- /Injection/images/executing_shellcode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/images/executing_shellcode.gif -------------------------------------------------------------------------------- /Injection/images/mapping_shellcode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Injection/images/mapping_shellcode.gif -------------------------------------------------------------------------------- /Malware/Helpers.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Malware/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/Helpers.h -------------------------------------------------------------------------------- /Malware/Malware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/Malware.cpp -------------------------------------------------------------------------------- /Malware/Malware.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/Malware.rc -------------------------------------------------------------------------------- /Malware/Malware.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/Malware.vcxproj -------------------------------------------------------------------------------- /Malware/Malware.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/Malware.vcxproj.filters -------------------------------------------------------------------------------- /Malware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/README.md -------------------------------------------------------------------------------- /Malware/UPDATER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/UPDATER -------------------------------------------------------------------------------- /Malware/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Malware/resource.h -------------------------------------------------------------------------------- /OffensiveWinAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/OffensiveWinAPI.sln -------------------------------------------------------------------------------- /PIC/PIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PIC/PIC.c -------------------------------------------------------------------------------- /PIC/PIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PIC/PIC.h -------------------------------------------------------------------------------- /PIC/PIC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PIC/PIC.vcxproj -------------------------------------------------------------------------------- /PIC/PIC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PIC/PIC.vcxproj.filters -------------------------------------------------------------------------------- /PIC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PIC/README.md -------------------------------------------------------------------------------- /PicInjection/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PicInjection/Main.cpp -------------------------------------------------------------------------------- /PicInjection/PicInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PicInjection/PicInjection.vcxproj -------------------------------------------------------------------------------- /PicInjection/PicInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PicInjection/PicInjection.vcxproj.filters -------------------------------------------------------------------------------- /PlayWithNTFS/PlayWithNTFS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PlayWithNTFS/PlayWithNTFS.vcxproj -------------------------------------------------------------------------------- /PlayWithNTFS/PlayWithNTFS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PlayWithNTFS/PlayWithNTFS.vcxproj.filters -------------------------------------------------------------------------------- /PlayWithNTFS/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/PlayWithNTFS/Source.cpp -------------------------------------------------------------------------------- /PlayWithNTFS/victim.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/README.md -------------------------------------------------------------------------------- /ScanMemory/MemoryInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/MemoryInformation.cpp -------------------------------------------------------------------------------- /ScanMemory/MemoryInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/MemoryInformation.h -------------------------------------------------------------------------------- /ScanMemory/MemoryInformationIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/MemoryInformationIterator.cpp -------------------------------------------------------------------------------- /ScanMemory/MemoryInformationIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/MemoryInformationIterator.h -------------------------------------------------------------------------------- /ScanMemory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/README.md -------------------------------------------------------------------------------- /ScanMemory/ScanMemory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/ScanMemory.vcxproj -------------------------------------------------------------------------------- /ScanMemory/ScanMemory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/ScanMemory.vcxproj.filters -------------------------------------------------------------------------------- /ScanMemory/images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/images/example.jpg -------------------------------------------------------------------------------- /ScanMemory/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/ScanMemory/main.cpp -------------------------------------------------------------------------------- /Shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Shellcode/README.md -------------------------------------------------------------------------------- /Shellcode/Shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Shellcode/Shellcode.vcxproj -------------------------------------------------------------------------------- /Shellcode/Shellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Shellcode/Shellcode.vcxproj.filters -------------------------------------------------------------------------------- /Shellcode/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Shellcode/shellcode.c -------------------------------------------------------------------------------- /SimpleDllInjection/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/SimpleDllInjection/Main.cpp -------------------------------------------------------------------------------- /SimpleDllInjection/SimpleDllInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/SimpleDllInjection/SimpleDllInjection.vcxproj -------------------------------------------------------------------------------- /SimpleDllInjection/SimpleDllInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/SimpleDllInjection/SimpleDllInjection.vcxproj.filters -------------------------------------------------------------------------------- /Tester/Tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Tester/Tester.cpp -------------------------------------------------------------------------------- /Tester/Tester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Tester/Tester.vcxproj -------------------------------------------------------------------------------- /Tester/Tester.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvivShabtay/OffensiveWinAPI/HEAD/Tester/Tester.vcxproj.filters --------------------------------------------------------------------------------