├── AntiDebugging ├── AntiAttachReport │ ├── README.md │ └── images │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png ├── LICENSE ├── README.md └── Sources │ ├── AntiAntiAttach.cpp │ ├── AntiAttach.cpp │ ├── DR_Register_Resetter.cpp │ ├── TextSectionHasher.cpp │ └── VEH_Checker.cpp ├── DebugDetector ├── DD.Plugin.CheckHeapMemory │ ├── DD.Plugin.CheckHeapMemory.vcxproj │ ├── DD.Plugin.CheckHeapMemory.vcxproj.filters │ ├── DD.Plugin.CheckHeapMemory.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.CheckRemoteDebuggerPresent │ ├── DD.Plugin.CheckRemoteDebuggerPresent.vcxproj │ ├── DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.filters │ ├── DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.DebugObject │ ├── DD.Plugin.DebugObject.vcxproj │ ├── DD.Plugin.DebugObject.vcxproj.filters │ ├── DD.Plugin.DebugObject.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.FindBadDrivers │ ├── DD.Plugin.FindBadDrivers.vcxproj │ ├── DD.Plugin.FindBadDrivers.vcxproj.filters │ ├── DD.Plugin.FindBadDrivers.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.FindBadProcesses │ ├── DD.Plugin.FindBadProcesses.vcxproj │ ├── DD.Plugin.FindBadProcesses.vcxproj.filters │ ├── DD.Plugin.FindBadProcesses.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.FindBadWindows │ ├── DD.Plugin.FindBadWindows.vcxproj │ ├── DD.Plugin.FindBadWindows.vcxproj.filters │ ├── DD.Plugin.FindBadWindows.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.HardwareBreakpoint │ ├── DD.Plugin.HardwareBreakpoint.vcxproj │ ├── DD.Plugin.HardwareBreakpoint.vcxproj.filters │ ├── DD.Plugin.HardwareBreakpoint.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.IsDebuggerPresent │ ├── DD.Plugin.IsDebuggerPresent.vcxproj │ ├── DD.Plugin.IsDebuggerPresent.vcxproj.filters │ ├── DD.Plugin.IsDebuggerPresent.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.MemoryBreakpoint │ ├── DD.Plugin.MemoryBreakpoint.vcxproj │ ├── DD.Plugin.MemoryBreakpoint.vcxproj.filters │ ├── DD.Plugin.MemoryBreakpoint.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.NTQuerySystemInformation │ ├── DD.Plugin.NTQuerySystemInformation.vcxproj │ ├── DD.Plugin.NTQuerySystemInformation.vcxproj.filters │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.NTYieldExecution │ ├── DD.Plugin.NTYieldExecution.vcxproj │ ├── DD.Plugin.NTYieldExecution.vcxproj.filters │ ├── DD.Plugin.NTYieldExecution.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.NtSetDebugFilterState │ ├── DD.Plugin.NtSetDebugFilterState.vcxproj │ ├── DD.Plugin.NtSetDebugFilterState.vcxproj.filters │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.OpenCSRSS │ ├── DD.Plugin.OpenCSRSS.vcxproj │ ├── DD.Plugin.OpenCSRSS.vcxproj.filters │ ├── DD.Plugin.OpenCSRSS.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.OutputDebugString │ ├── DD.Plugin.OutputDebugString.vcxproj │ ├── DD.Plugin.OutputDebugString.vcxproj.filters │ ├── DD.Plugin.OutputDebugString.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.PEBDebugFlag │ ├── DD.Plugin.PEBDebugFlag.vcxproj │ ├── DD.Plugin.PEBDebugFlag.vcxproj.filters │ ├── DD.Plugin.PEBDebugFlag.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.PEBGlobalFlags │ ├── DD.Plugin.PEBGlobalFlags.vcxproj │ ├── DD.Plugin.PEBGlobalFlags.vcxproj.filters │ ├── DD.Plugin.PEBGlobalFlags.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.PEBProcHeapFlag │ ├── DD.Plugin.PEBProcHeapFlag.vcxproj │ ├── DD.Plugin.PEBProcHeapFlag.vcxproj.filters │ ├── DD.Plugin.PEBProcHeapFlag.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.ParentProcess │ ├── DD.Plugin.ParentProcess.vcxproj │ ├── DD.Plugin.ParentProcess.vcxproj.filters │ ├── DD.Plugin.ParentProcess.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.ProcessDebugFlag │ ├── DD.Plugin.ProcessDebugFlag.vcxproj │ ├── DD.Plugin.ProcessDebugFlag.vcxproj.filters │ ├── DD.Plugin.ProcessDebugFlag.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DD.Plugin.UnhandledException │ ├── DD.Plugin.UnhandledException.vcxproj │ ├── DD.Plugin.UnhandledException.vcxproj.filters │ ├── DD.Plugin.UnhandledException.vcxproj.user │ ├── DLLMain.cpp │ └── DLLMain.h ├── DDMain.cpp ├── DDMain.h ├── DebugDetector.aps ├── DebugDetector.rc ├── DebugDetector.sln ├── DebugDetector.suo ├── DebugDetector.vcxproj ├── DebugDetector.vcxproj.filters ├── DebugDetector.vcxproj.user ├── README.md ├── Release │ ├── DD.Plugin.CheckHeapMemory.dll │ ├── DD.Plugin.CheckRemoteDebuggerPresent.dll │ ├── DD.Plugin.DebugObject.dll │ ├── DD.Plugin.FindBadDrivers.dll │ ├── DD.Plugin.FindBadProcesses.dll │ ├── DD.Plugin.FindBadWindows.dll │ ├── DD.Plugin.HardwareBreakpoint.dll │ ├── DD.Plugin.IsDebuggerPresent.dll │ ├── DD.Plugin.MemoryBreakpoint.dll │ ├── DD.Plugin.NTQuerySystemInformation.dll │ ├── DD.Plugin.NTYieldExecution.dll │ ├── DD.Plugin.NtSetDebugFilterState.dll │ ├── DD.Plugin.OpenCSRSS.dll │ ├── DD.Plugin.OutputDebugString.dll │ ├── DD.Plugin.PEBDebugFlag.dll │ ├── DD.Plugin.PEBGlobalFlags.dll │ ├── DD.Plugin.PEBProcHeapFlag.dll │ ├── DD.Plugin.ParentProcess.dll │ ├── DD.Plugin.ProcessDebugFlag.dll │ ├── DD.Plugin.UnhandledException.dll │ └── DebugDetector.exe └── resource.h ├── Junkcode └── jcg.php ├── OWASP-ZSC ├── CHANGELOG.md ├── LICENSE.md ├── core │ ├── __init__.py │ ├── alert.py │ ├── cli.py │ ├── color.py │ ├── commands.py │ ├── compatible.py │ ├── controller.py │ ├── encode.py │ ├── file_out.py │ ├── get_input.py │ ├── obfuscate.py │ ├── opcoder.py │ ├── run.py │ ├── stack.py │ ├── start.py │ └── update.py ├── doc │ ├── README.md │ ├── owasp-zsc.epub │ ├── owasp-zsc.mobi │ └── owasp-zsc.pdf ├── installer.py ├── lib │ ├── __init__.py │ ├── encoder │ │ ├── __init__.py │ │ ├── javascript │ │ │ ├── __init__.py │ │ │ ├── base64.py │ │ │ ├── jsfuck.py │ │ │ ├── rot13.py │ │ │ ├── simple_ascii.py │ │ │ ├── simple_base64_rev.py │ │ │ ├── simple_hex.py │ │ │ └── simple_hex_rev.py │ │ ├── linux_x86 │ │ │ ├── __init__.py │ │ │ ├── add_random.py │ │ │ ├── add_yourvalue.py │ │ │ ├── dec.py │ │ │ ├── dec_timesyouwant.py │ │ │ ├── inc.py │ │ │ ├── inc_timesyouwant.py │ │ │ ├── mix_all.py │ │ │ ├── sub_random.py │ │ │ ├── sub_yourvalue.py │ │ │ ├── xor_random.py │ │ │ └── xor_yourvalue.py │ │ ├── osx_x86 │ │ │ ├── __init__.py │ │ │ ├── add_random.py │ │ │ ├── add_yourvalue.py │ │ │ ├── dec.py │ │ │ ├── dec_timesyouwant.py │ │ │ ├── inc.py │ │ │ ├── inc_timesyouwant.py │ │ │ ├── sub_random.py │ │ │ ├── sub_yourvalue.py │ │ │ ├── xor_random.py │ │ │ └── xor_yourvalue.py │ │ ├── perl │ │ │ ├── __init__.py │ │ │ ├── base64.py │ │ │ ├── simple_ascii.py │ │ │ ├── simple_base64_rev.py │ │ │ ├── simple_hex.py │ │ │ └── simple_hex_rev.py │ │ ├── php │ │ │ ├── __init__.py │ │ │ ├── base64.py │ │ │ ├── base64_rev.py │ │ │ ├── rot13.py │ │ │ ├── simple_ascii.py │ │ │ ├── simple_hex.py │ │ │ └── simple_hex_rev.py │ │ ├── python │ │ │ ├── __init__.py │ │ │ ├── rot13.py │ │ │ ├── simple_ascii.py │ │ │ ├── simple_base64_rev.py │ │ │ ├── simple_hex.py │ │ │ └── simple_hex_rev.py │ │ ├── ruby │ │ │ ├── __init__.py │ │ │ ├── base64.py │ │ │ ├── base64_rev.py │ │ │ ├── rot13.py │ │ │ ├── simple_ascii.py │ │ │ ├── simple_hex.py │ │ │ └── simple_hex_rev.py │ │ └── windows_x86 │ │ │ ├── __init__.py │ │ │ ├── add_random.py │ │ │ ├── add_yourvalue.py │ │ │ ├── dec.py │ │ │ ├── dec_timesyouwant.py │ │ │ ├── inc.py │ │ │ ├── inc_timesyouwant.py │ │ │ ├── sub_random.py │ │ │ ├── sub_yourvalue.py │ │ │ ├── xor_random.py │ │ │ └── xor_yourvalue.py │ ├── generator │ │ ├── __init__.py │ │ ├── linux_x86 │ │ │ ├── __init__.py │ │ │ ├── chmod.py │ │ │ ├── dir_create.py │ │ │ ├── download.py │ │ │ ├── download_execute.py │ │ │ ├── exec.py │ │ │ ├── file_create.py │ │ │ ├── script_executor.py │ │ │ ├── system.py │ │ │ └── write.py │ │ ├── osx_x86 │ │ │ ├── __init__.py │ │ │ ├── chmod.py │ │ │ ├── exec.py │ │ │ └── system.py │ │ ├── windows_x86 │ │ │ ├── __init__.py │ │ │ ├── add_admin.py │ │ │ ├── create_file.py │ │ │ ├── dir_create.py │ │ │ ├── disable_firewall.py │ │ │ ├── download_exec.py │ │ │ ├── download_tofile.py │ │ │ └── exec.py │ │ └── windows_x86_64 │ │ │ ├── __init__.py │ │ │ ├── exec-intel.py │ │ │ └── exec.py │ ├── opcoder │ │ ├── __init__.py │ │ ├── linux_x86.py │ │ ├── osx_x86.py │ │ ├── windows_x86.py │ │ └── windows_x86_64.py │ └── shell_storm_api │ │ ├── __init__.py │ │ └── grab.py ├── module │ ├── __init__.py │ ├── readline_osx │ │ ├── README.md │ │ ├── readline.py │ │ └── readline.so │ └── readline_windows │ │ ├── README.md │ │ ├── __init__.py │ │ ├── pyreadline │ │ ├── __init__.py │ │ ├── clipboard │ │ │ ├── __init__.py │ │ │ ├── ironpython_clipboard.py │ │ │ ├── no_clipboard.py │ │ │ └── win32_clipboard.py │ │ ├── configuration │ │ │ ├── pyreadlineconfig.ini │ │ │ └── startup.py │ │ ├── console │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── console.py │ │ │ ├── console_attributes.py │ │ │ ├── consolebase.py │ │ │ ├── event.py │ │ │ └── ironpython_console.py │ │ ├── error.py │ │ ├── get_doc.py │ │ ├── keysyms │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── ironpython_keysyms.py │ │ │ ├── keysyms.py │ │ │ └── winconstants.py │ │ ├── lineeditor │ │ │ ├── __init__.py │ │ │ ├── history.py │ │ │ ├── lineobj.py │ │ │ └── wordmatcher.py │ │ ├── logger.py │ │ ├── logserver.py │ │ ├── modes │ │ │ ├── __init__.py │ │ │ ├── basemode.py │ │ │ ├── emacs.py │ │ │ ├── notemacs.py │ │ │ └── vi.py │ │ ├── py3k_compat.py │ │ ├── release.py │ │ ├── rlmain.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── test_emacs.py │ │ │ ├── test_history.py │ │ │ ├── test_lineeditor.py │ │ │ └── test_vi.py │ │ └── unicode_helper.py │ │ └── readline.py ├── readme.md ├── uninstaller.py ├── version └── zsc.py ├── PeProtector ├── ClientFile.cpp ├── ClientFile.h ├── Compile │ ├── CCompile.cpp │ ├── CCompile.h │ ├── CLexicalAnalizer.cpp │ ├── CLexicalAnalizer.h │ ├── Compile.vcxproj │ ├── Compile.vcxproj.filters │ ├── Opcodes.def │ └── main.cpp ├── Data.cpp ├── Data.h ├── Debug │ ├── Library.lib │ ├── Library.pdb │ ├── LogLibrary.lib │ └── LogLibrary.pdb ├── Import.cpp ├── Import.h ├── Instruction.cpp ├── Instruction.h ├── InstructionModRM.cpp ├── InstructionModRM.h ├── Library │ ├── Debug │ │ ├── Library.idb │ │ ├── Library.log │ │ ├── Library.pdb │ │ ├── Library.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── Lib.command.1.tlog │ │ │ └── Library.lastbuildstate │ │ ├── SCommand.obj │ │ └── Types.obj │ ├── Library.vcxproj │ ├── Library.vcxproj.filters │ ├── SCommand.cpp │ ├── SCommand.h │ ├── Types.cpp │ └── Types.h ├── LogLibrary │ ├── CLog.cpp │ ├── CLog.h │ ├── Debug │ │ ├── CLog.obj │ │ ├── LogLibrary.idb │ │ ├── LogLibrary.log │ │ ├── LogLibrary.pdb │ │ └── LogLibrary.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── Lib.command.1.tlog │ │ │ └── LogLibrary.lastbuildstate │ ├── LogLibrary.vcxproj │ └── LogLibrary.vcxproj.filters ├── Mutation.cpp ├── Mutation.h ├── Opcodes.cpp ├── Opcodes.h ├── PeHeader.cpp ├── PeHeader.h ├── PeProtector.rc ├── PeProtector.vcxproj ├── PeProtector.vcxproj.filters ├── ProtectPe.cpp ├── ProtectPe.h ├── README.md ├── Resources.cpp ├── Resources.h ├── Stub │ ├── Stub.asm │ └── Stub.bin ├── Test │ ├── ClientFileTest.cpp │ ├── CommandTest.cpp │ ├── CompileTest.cpp │ ├── DataTest.cpp │ ├── Debug │ │ ├── ClientFileTest.obj │ │ ├── CommandTest.obj │ │ ├── CompileTest.obj │ │ ├── DataTest.obj │ │ ├── ImportTest.obj │ │ ├── InstructionTest.obj │ │ ├── LexicalAnalizerTest.obj │ │ ├── MutationTest.obj │ │ ├── PeHeaderTest.obj │ │ ├── ProtectPeTest.obj │ │ ├── ResourcesTest.obj │ │ ├── Test.log │ │ ├── Test.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Test.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ ├── vc141.idb │ │ └── vc141.pdb │ ├── ImportTest.cpp │ ├── InstructionTest.cpp │ ├── LexicalAnalizerTest.cpp │ ├── MutationTest.cpp │ ├── PeHeaderTest.cpp │ ├── ProtectPeTest.cpp │ ├── ResourcesTest.cpp │ ├── Test.vcxproj │ └── Test.vcxproj.filters ├── aplib │ ├── aplib.h │ └── aplib.lib ├── main.cpp ├── peProtector.sln └── resource.h ├── Polychaos ├── LICENSE ├── Polychaos.sln ├── README.md ├── contrib │ └── portable-executable-library │ │ └── pe_lib │ │ ├── Makefile │ │ ├── Win32 │ │ └── Debug │ │ │ ├── entropy.obj │ │ │ ├── file_version_info.obj │ │ │ ├── message_table.obj │ │ │ ├── pe_base.obj │ │ │ ├── pe_bliss.idb │ │ │ ├── pe_bliss.pdb │ │ │ ├── pe_bliss.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── Lib.command.1.tlog │ │ │ └── pe_bliss.lastbuildstate │ │ │ ├── pe_bound_import.obj │ │ │ ├── pe_checksum.obj │ │ │ ├── pe_debug.obj │ │ │ ├── pe_directory.obj │ │ │ ├── pe_dotnet.obj │ │ │ ├── pe_exception.obj │ │ │ ├── pe_exception_directory.obj │ │ │ ├── pe_exports.obj │ │ │ ├── pe_factory.obj │ │ │ ├── pe_imports.obj │ │ │ ├── pe_lib.log │ │ │ ├── pe_load_config.obj │ │ │ ├── pe_properties.obj │ │ │ ├── pe_properties_generic.obj │ │ │ ├── pe_rebuilder.obj │ │ │ ├── pe_relocations.obj │ │ │ ├── pe_resource_manager.obj │ │ │ ├── pe_resource_viewer.obj │ │ │ ├── pe_resources.obj │ │ │ ├── pe_rich_data.obj │ │ │ ├── pe_section.obj │ │ │ ├── pe_tls.obj │ │ │ ├── resource_bitmap_reader.obj │ │ │ ├── resource_bitmap_writer.obj │ │ │ ├── resource_cursor_icon_reader.obj │ │ │ ├── resource_cursor_icon_writer.obj │ │ │ ├── resource_data_info.obj │ │ │ ├── resource_message_list_reader.obj │ │ │ ├── resource_string_table_reader.obj │ │ │ ├── resource_version_info_reader.obj │ │ │ ├── resource_version_info_writer.obj │ │ │ ├── utils.obj │ │ │ ├── version_info_editor.obj │ │ │ └── version_info_viewer.obj │ │ ├── entropy.cpp │ │ ├── entropy.h │ │ ├── file_version_info.cpp │ │ ├── file_version_info.h │ │ ├── message_table.cpp │ │ ├── message_table.h │ │ ├── pe_base.cpp │ │ ├── pe_base.h │ │ ├── pe_bliss.h │ │ ├── pe_bliss_resources.h │ │ ├── pe_bound_import.cpp │ │ ├── pe_bound_import.h │ │ ├── pe_checksum.cpp │ │ ├── pe_checksum.h │ │ ├── pe_debug.cpp │ │ ├── pe_debug.h │ │ ├── pe_directory.cpp │ │ ├── pe_directory.h │ │ ├── pe_dotnet.cpp │ │ ├── pe_dotnet.h │ │ ├── pe_exception.cpp │ │ ├── pe_exception.h │ │ ├── pe_exception_directory.cpp │ │ ├── pe_exception_directory.h │ │ ├── pe_exports.cpp │ │ ├── pe_exports.h │ │ ├── pe_factory.cpp │ │ ├── pe_factory.h │ │ ├── pe_imports.cpp │ │ ├── pe_imports.h │ │ ├── pe_lib.vcproj │ │ ├── pe_lib.vcxproj │ │ ├── pe_lib.vcxproj.filters │ │ ├── pe_lib.vcxproj.user │ │ ├── pe_load_config.cpp │ │ ├── pe_load_config.h │ │ ├── pe_properties.cpp │ │ ├── pe_properties.h │ │ ├── pe_properties_generic.cpp │ │ ├── pe_properties_generic.h │ │ ├── pe_rebuilder.cpp │ │ ├── pe_rebuilder.h │ │ └── pe_relocations.cpp └── src │ ├── Console │ ├── Main.cpp │ ├── PolychaosConsole.vcxproj │ ├── PolychaosConsole.vcxproj.filters │ ├── PolychaosConsole.vcxproj.user │ └── Win32 │ │ └── Debug │ │ ├── Main.obj │ │ ├── PolychaosConsole.log │ │ ├── PolychaosConsole.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── PolychaosConsole.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ │ ├── vc141.idb │ │ └── vc141.pdb │ └── Polychaos │ ├── LDasm.c │ ├── LDasm.h │ ├── MutationDef.h │ ├── MutationEngine.cpp │ ├── MutationEngine.h │ ├── MutationImpl.cpp │ ├── MutationImpl.h │ ├── PEMutator.cpp │ ├── PEMutator.h │ ├── Polychaos.vcxproj │ ├── Polychaos.vcxproj.filters │ ├── Polychaos.vcxproj.user │ ├── Utils.hpp │ └── Win32 │ └── Debug │ ├── LDasm.obj │ ├── MutationEngine.obj │ ├── MutationImpl.obj │ ├── PEMutator.obj │ ├── Polychaos.idb │ ├── Polychaos.log │ ├── Polychaos.pdb │ └── Polychaos.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Lib-link.read.1.tlog │ ├── Lib-link.write.1.tlog │ ├── Lib.command.1.tlog │ └── Polychaos.lastbuildstate ├── README.md ├── Rewolf-x86 ├── bin │ ├── loader │ │ └── meta.exe │ ├── protector │ │ └── x86.virt.exe │ └── test_app │ │ ├── vm_test.exe │ │ ├── vm_test_vmed_01.exe │ │ └── vm_test_vmed_02.exe ├── doc │ ├── x86.virt.after.gif │ ├── x86.virt.before.gif │ └── x86.virt.pdf ├── gpl.txt ├── readme.md └── src │ ├── loader │ └── loader.asm │ ├── protector │ ├── common.cpp │ ├── common.h │ ├── hde.h │ ├── hde.lib │ ├── macros.h │ ├── main.cpp │ ├── poly_encdec.h │ ├── protect.cpp │ ├── protect.h │ ├── res.rc │ └── resource.h │ └── test_app │ ├── main.cpp │ ├── res.rc │ └── resource.h ├── SimpleObfuscation ├── Backup │ └── SimpleObfuscation.sln ├── Changelog.txt ├── SimpleObf.cpp ├── SimpleObf.h ├── SimpleObfuscation.sln ├── SimpleObfuscation.vcproj ├── SimpleObfuscation.vcxproj ├── SimpleObfuscation.vcxproj.filters ├── UpgradeLog.htm └── main.cpp ├── XOR_Crypter ├── C++ Crypter.sln ├── C++ Crypter │ ├── C++ Crypter.vcxproj │ ├── C++ Crypter.vcxproj.filters │ ├── Form1.resx │ └── Main.cpp ├── README.md └── Stub │ ├── Runpe.h │ ├── Stub.vcxproj │ ├── Stub.vcxproj.filters │ └── main.cpp ├── obf ├── README.md ├── no-longer-standard │ ├── README.md │ └── tls │ │ ├── README.md │ │ └── crypto │ │ └── chacha.h ├── src │ ├── impl │ │ ├── obf_anti_debug.h │ │ ├── obf_common.h │ │ ├── obf_crypto.h │ │ ├── obf_injection.h │ │ ├── obf_literal.h │ │ └── obf_prng.h │ ├── obf.h │ ├── obf_lib.h │ └── obf_user_injection.h └── test │ ├── Clang │ ├── build-internal.sh │ ├── build-official.sh │ └── randomtest.sh │ ├── MSVC │ ├── ConsoleApplication1.sln │ ├── ConsoleApplication1.vcxproj │ ├── ConsoleApplication1.vcxproj.filters │ ├── ConsoleApplication1.vcxproj.user │ ├── build-internal.bat │ ├── build-official.bat │ ├── randomtest.bat │ └── randomtest32.bat │ ├── helper.cpp │ ├── internal.cpp │ ├── lest.hpp │ ├── obftemp.txt │ └── official.cpp └── phantasm-x86-virtualizer ├── README.md ├── chvrn_vm ├── ArgsParser.cpp ├── ArgsParser.h ├── CodeChunk.cpp ├── CodeChunk.h ├── MappedFile.cpp ├── MappedFile.h ├── MappedPeFile.cpp ├── MappedPeFile.h ├── SettingsManager.cpp ├── SettingsManager.h ├── StackMutator.cpp ├── StackMutator.h ├── Utils.cpp ├── Utils.h ├── VirtualizerList.cpp ├── VirtualizerList.h ├── Vm.cpp ├── Vm.h ├── VmInstruction.cpp ├── VmInstruction.h ├── beaengine │ ├── BeaEngine.h │ ├── basic_types.h │ ├── export.h │ └── macros.h ├── build.h ├── cli.cpp ├── cli.h ├── control.cpp ├── control.h ├── data.cpp ├── data.h ├── environment.cpp ├── environment.h ├── install.cpp ├── install.h ├── log.cpp ├── log.h ├── logic.cpp ├── logic.h ├── main.cpp ├── markers.cpp ├── markers.h ├── patterns.cpp ├── patterns.h ├── registerswap.cpp ├── registerswap.h ├── relocations.cpp ├── relocations.h ├── settings.cpp ├── settings.h ├── stack.cpp ├── stack.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── x86.cpp ├── x86.h ├── x86Instruction.cpp ├── x86Instruction.h ├── x86vm.cpp └── x86vm.h ├── example.md ├── libphant └── ReadMe.txt ├── libphant_debug └── ReadMe.txt ├── sdk_example ├── phant.h ├── sdk_example.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── sdk_example_two ├── phant.h ├── sdk_example_two.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h └── vm ├── libphant.asm └── libphant_obf.asm /AntiDebugging/AntiAttachReport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/README.md -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/0.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/1.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/2.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/3.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/4.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/5.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/6.png -------------------------------------------------------------------------------- /AntiDebugging/AntiAttachReport/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/AntiAttachReport/images/7.png -------------------------------------------------------------------------------- /AntiDebugging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/LICENSE -------------------------------------------------------------------------------- /AntiDebugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/README.md -------------------------------------------------------------------------------- /AntiDebugging/Sources/AntiAntiAttach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/Sources/AntiAntiAttach.cpp -------------------------------------------------------------------------------- /AntiDebugging/Sources/AntiAttach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/Sources/AntiAttach.cpp -------------------------------------------------------------------------------- /AntiDebugging/Sources/DR_Register_Resetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/Sources/DR_Register_Resetter.cpp -------------------------------------------------------------------------------- /AntiDebugging/Sources/TextSectionHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/Sources/TextSectionHasher.cpp -------------------------------------------------------------------------------- /AntiDebugging/Sources/VEH_Checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/AntiDebugging/Sources/VEH_Checker.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckHeapMemory/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckHeapMemory/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckHeapMemory/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckHeapMemory/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.DebugObject/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.DebugObject/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.DebugObject/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.DebugObject/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadDrivers/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadDrivers/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadDrivers/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadDrivers/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadProcesses/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadProcesses/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadProcesses/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadProcesses/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadWindows/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadWindows/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.FindBadWindows/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.FindBadWindows/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.HardwareBreakpoint/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.HardwareBreakpoint/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.HardwareBreakpoint/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.HardwareBreakpoint/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.IsDebuggerPresent/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.IsDebuggerPresent/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.IsDebuggerPresent/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.IsDebuggerPresent/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.MemoryBreakpoint/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.MemoryBreakpoint/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.MemoryBreakpoint/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.MemoryBreakpoint/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTQuerySystemInformation/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTQuerySystemInformation/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTQuerySystemInformation/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTQuerySystemInformation/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTYieldExecution/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTYieldExecution/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NTYieldExecution/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NTYieldExecution/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NtSetDebugFilterState/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NtSetDebugFilterState/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.NtSetDebugFilterState/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.NtSetDebugFilterState/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OpenCSRSS/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OpenCSRSS/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OpenCSRSS/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OpenCSRSS/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OutputDebugString/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OutputDebugString/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.OutputDebugString/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.OutputDebugString/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBDebugFlag/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBDebugFlag/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBDebugFlag/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBDebugFlag/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBGlobalFlags/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBGlobalFlags/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBGlobalFlags/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBGlobalFlags/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBProcHeapFlag/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBProcHeapFlag/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.PEBProcHeapFlag/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.PEBProcHeapFlag/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ParentProcess/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ParentProcess/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ParentProcess/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ParentProcess/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ProcessDebugFlag/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ProcessDebugFlag/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.ProcessDebugFlag/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.ProcessDebugFlag/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.UnhandledException/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.UnhandledException/DLLMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DD.Plugin.UnhandledException/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DD.Plugin.UnhandledException/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector/DDMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DDMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DDMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DDMain.h -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.aps -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.rc -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.sln -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.suo -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/DebugDetector.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/README.md -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.CheckHeapMemory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.CheckHeapMemory.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.CheckRemoteDebuggerPresent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.CheckRemoteDebuggerPresent.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.DebugObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.DebugObject.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.FindBadDrivers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.FindBadDrivers.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.FindBadProcesses.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.FindBadProcesses.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.FindBadWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.FindBadWindows.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.HardwareBreakpoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.HardwareBreakpoint.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.IsDebuggerPresent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.IsDebuggerPresent.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.MemoryBreakpoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.MemoryBreakpoint.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.NTQuerySystemInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.NTQuerySystemInformation.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.NTYieldExecution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.NTYieldExecution.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.NtSetDebugFilterState.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.NtSetDebugFilterState.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.OpenCSRSS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.OpenCSRSS.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.OutputDebugString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.OutputDebugString.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.PEBDebugFlag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.PEBDebugFlag.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.PEBGlobalFlags.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.PEBGlobalFlags.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.PEBProcHeapFlag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.PEBProcHeapFlag.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.ParentProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.ParentProcess.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.ProcessDebugFlag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.ProcessDebugFlag.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DD.Plugin.UnhandledException.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DD.Plugin.UnhandledException.dll -------------------------------------------------------------------------------- /DebugDetector/Release/DebugDetector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/Release/DebugDetector.exe -------------------------------------------------------------------------------- /DebugDetector/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/DebugDetector/resource.h -------------------------------------------------------------------------------- /Junkcode/jcg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Junkcode/jcg.php -------------------------------------------------------------------------------- /OWASP-ZSC/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/CHANGELOG.md -------------------------------------------------------------------------------- /OWASP-ZSC/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/LICENSE.md -------------------------------------------------------------------------------- /OWASP-ZSC/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/alert.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/cli.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/color.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/commands.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/compatible.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/controller.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/encode.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/file_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/file_out.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/get_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/get_input.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/obfuscate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/obfuscate.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/opcoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/opcoder.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/run.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/stack.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/start.py -------------------------------------------------------------------------------- /OWASP-ZSC/core/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/core/update.py -------------------------------------------------------------------------------- /OWASP-ZSC/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/doc/README.md -------------------------------------------------------------------------------- /OWASP-ZSC/doc/owasp-zsc.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/doc/owasp-zsc.epub -------------------------------------------------------------------------------- /OWASP-ZSC/doc/owasp-zsc.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/doc/owasp-zsc.mobi -------------------------------------------------------------------------------- /OWASP-ZSC/doc/owasp-zsc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/doc/owasp-zsc.pdf -------------------------------------------------------------------------------- /OWASP-ZSC/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/installer.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/base64.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/jsfuck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/jsfuck.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/rot13.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/simple_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/simple_ascii.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/simple_base64_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/simple_base64_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/simple_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/simple_hex.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/javascript/simple_hex_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/javascript/simple_hex_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/add_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/add_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/add_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/add_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/dec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/dec_timesyouwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/dec_timesyouwant.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/inc.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/inc_timesyouwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/inc_timesyouwant.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/mix_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/mix_all.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/sub_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/sub_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/sub_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/sub_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/xor_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/xor_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/linux_x86/xor_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/linux_x86/xor_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/add_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/add_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/add_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/add_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/dec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/dec_timesyouwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/dec_timesyouwant.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/inc.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/inc_timesyouwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/inc_timesyouwant.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/sub_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/sub_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/sub_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/sub_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/xor_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/xor_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/osx_x86/xor_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/osx_x86/xor_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/perl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/perl/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/perl/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/perl/base64.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/perl/simple_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/perl/simple_ascii.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/perl/simple_base64_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/perl/simple_base64_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/perl/simple_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/perl/simple_hex.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/perl/simple_hex_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/perl/simple_hex_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/base64.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/base64_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/base64_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/rot13.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/simple_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/simple_ascii.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/simple_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/simple_hex.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/php/simple_hex_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/php/simple_hex_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/python/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/python/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/python/rot13.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/python/simple_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/python/simple_ascii.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/python/simple_base64_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/python/simple_base64_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/python/simple_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/python/simple_hex.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/python/simple_hex_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/python/simple_hex_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/base64.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/base64_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/base64_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/rot13.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/simple_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/simple_ascii.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/simple_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/simple_hex.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/ruby/simple_hex_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/ruby/simple_hex_rev.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/add_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/add_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/add_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/add_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/dec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/dec_timesyouwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/dec_timesyouwant.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/inc.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/inc_timesyouwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/inc_timesyouwant.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/sub_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/sub_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/sub_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/sub_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/xor_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/xor_random.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/encoder/windows_x86/xor_yourvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/encoder/windows_x86/xor_yourvalue.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/chmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/chmod.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/dir_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/dir_create.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/download.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/download_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/download_execute.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/exec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/file_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/file_create.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/script_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/script_executor.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/system.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/linux_x86/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/linux_x86/write.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/osx_x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/osx_x86/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/osx_x86/chmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/osx_x86/chmod.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/osx_x86/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/osx_x86/exec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/osx_x86/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/osx_x86/system.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/add_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/add_admin.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/create_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/create_file.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/dir_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/dir_create.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/disable_firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/disable_firewall.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/download_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/download_exec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/download_tofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/download_tofile.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86/exec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86_64/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86_64/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86_64/exec-intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86_64/exec-intel.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/generator/windows_x86_64/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/generator/windows_x86_64/exec.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/opcoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/opcoder/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/opcoder/linux_x86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/opcoder/linux_x86.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/opcoder/osx_x86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/opcoder/osx_x86.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/opcoder/windows_x86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/opcoder/windows_x86.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/opcoder/windows_x86_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/opcoder/windows_x86_64.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/shell_storm_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/shell_storm_api/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/lib/shell_storm_api/grab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/lib/shell_storm_api/grab.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_osx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_osx/README.md -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_osx/readline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_osx/readline.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_osx/readline.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_osx/readline.so -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/README.md -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/clipboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/clipboard/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/clipboard/ironpython_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/clipboard/ironpython_clipboard.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/clipboard/no_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/clipboard/no_clipboard.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/clipboard/win32_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/clipboard/win32_clipboard.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/configuration/pyreadlineconfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/configuration/pyreadlineconfig.ini -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/configuration/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/configuration/startup.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/ansi.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/console.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/console_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/console_attributes.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/consolebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/consolebase.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/event.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/console/ironpython_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/console/ironpython_console.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/error.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/get_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/get_doc.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/keysyms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/keysyms/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/keysyms/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/keysyms/common.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/keysyms/ironpython_keysyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/keysyms/ironpython_keysyms.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/keysyms/keysyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/keysyms/keysyms.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/keysyms/winconstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/keysyms/winconstants.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/history.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/lineobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/lineobj.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/wordmatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/lineeditor/wordmatcher.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/logger.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/logserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/logserver.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/modes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/modes/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/modes/basemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/modes/basemode.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/modes/emacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/modes/emacs.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/modes/notemacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/modes/notemacs.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/modes/vi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/modes/vi.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/py3k_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/py3k_compat.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/release.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/rlmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/rlmain.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/test/__init__.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/test/common.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/test/test_emacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/test/test_emacs.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/test/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/test/test_history.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/test/test_lineeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/test/test_lineeditor.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/test/test_vi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/test/test_vi.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/pyreadline/unicode_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/pyreadline/unicode_helper.py -------------------------------------------------------------------------------- /OWASP-ZSC/module/readline_windows/readline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/module/readline_windows/readline.py -------------------------------------------------------------------------------- /OWASP-ZSC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/readme.md -------------------------------------------------------------------------------- /OWASP-ZSC/uninstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/uninstaller.py -------------------------------------------------------------------------------- /OWASP-ZSC/version: -------------------------------------------------------------------------------- 1 | 1.1.0 -------------------------------------------------------------------------------- /OWASP-ZSC/zsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/OWASP-ZSC/zsc.py -------------------------------------------------------------------------------- /PeProtector/ClientFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/ClientFile.cpp -------------------------------------------------------------------------------- /PeProtector/ClientFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/ClientFile.h -------------------------------------------------------------------------------- /PeProtector/Compile/CCompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/CCompile.cpp -------------------------------------------------------------------------------- /PeProtector/Compile/CCompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/CCompile.h -------------------------------------------------------------------------------- /PeProtector/Compile/CLexicalAnalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/CLexicalAnalizer.cpp -------------------------------------------------------------------------------- /PeProtector/Compile/CLexicalAnalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/CLexicalAnalizer.h -------------------------------------------------------------------------------- /PeProtector/Compile/Compile.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/Compile.vcxproj -------------------------------------------------------------------------------- /PeProtector/Compile/Compile.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/Compile.vcxproj.filters -------------------------------------------------------------------------------- /PeProtector/Compile/Opcodes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/Opcodes.def -------------------------------------------------------------------------------- /PeProtector/Compile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Compile/main.cpp -------------------------------------------------------------------------------- /PeProtector/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Data.cpp -------------------------------------------------------------------------------- /PeProtector/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Data.h -------------------------------------------------------------------------------- /PeProtector/Debug/Library.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Debug/Library.lib -------------------------------------------------------------------------------- /PeProtector/Debug/Library.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Debug/Library.pdb -------------------------------------------------------------------------------- /PeProtector/Debug/LogLibrary.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Debug/LogLibrary.lib -------------------------------------------------------------------------------- /PeProtector/Debug/LogLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Debug/LogLibrary.pdb -------------------------------------------------------------------------------- /PeProtector/Import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Import.cpp -------------------------------------------------------------------------------- /PeProtector/Import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Import.h -------------------------------------------------------------------------------- /PeProtector/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Instruction.cpp -------------------------------------------------------------------------------- /PeProtector/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Instruction.h -------------------------------------------------------------------------------- /PeProtector/InstructionModRM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/InstructionModRM.cpp -------------------------------------------------------------------------------- /PeProtector/InstructionModRM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/InstructionModRM.h -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.idb -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.log -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.pdb -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/Lib-link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/Lib-link.read.1.tlog -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/Lib-link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/Lib-link.write.1.tlog -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/Lib.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/Lib.command.1.tlog -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Library.tlog/Library.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Library.tlog/Library.lastbuildstate -------------------------------------------------------------------------------- /PeProtector/Library/Debug/SCommand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/SCommand.obj -------------------------------------------------------------------------------- /PeProtector/Library/Debug/Types.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Debug/Types.obj -------------------------------------------------------------------------------- /PeProtector/Library/Library.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Library.vcxproj -------------------------------------------------------------------------------- /PeProtector/Library/Library.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Library.vcxproj.filters -------------------------------------------------------------------------------- /PeProtector/Library/SCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/SCommand.cpp -------------------------------------------------------------------------------- /PeProtector/Library/SCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/SCommand.h -------------------------------------------------------------------------------- /PeProtector/Library/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Types.cpp -------------------------------------------------------------------------------- /PeProtector/Library/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Library/Types.h -------------------------------------------------------------------------------- /PeProtector/LogLibrary/CLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/CLog.cpp -------------------------------------------------------------------------------- /PeProtector/LogLibrary/CLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/CLog.h -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/CLog.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/CLog.obj -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.idb -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.log -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.pdb -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/Lib-link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/Lib-link.read.1.tlog -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/Lib-link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/Lib-link.write.1.tlog -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/Lib.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/Lib.command.1.tlog -------------------------------------------------------------------------------- /PeProtector/LogLibrary/Debug/LogLibrary.tlog/LogLibrary.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/Debug/LogLibrary.tlog/LogLibrary.lastbuildstate -------------------------------------------------------------------------------- /PeProtector/LogLibrary/LogLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/LogLibrary.vcxproj -------------------------------------------------------------------------------- /PeProtector/LogLibrary/LogLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/LogLibrary/LogLibrary.vcxproj.filters -------------------------------------------------------------------------------- /PeProtector/Mutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Mutation.cpp -------------------------------------------------------------------------------- /PeProtector/Mutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Mutation.h -------------------------------------------------------------------------------- /PeProtector/Opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Opcodes.cpp -------------------------------------------------------------------------------- /PeProtector/Opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Opcodes.h -------------------------------------------------------------------------------- /PeProtector/PeHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/PeHeader.cpp -------------------------------------------------------------------------------- /PeProtector/PeHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/PeHeader.h -------------------------------------------------------------------------------- /PeProtector/PeProtector.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/PeProtector.rc -------------------------------------------------------------------------------- /PeProtector/PeProtector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/PeProtector.vcxproj -------------------------------------------------------------------------------- /PeProtector/PeProtector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/PeProtector.vcxproj.filters -------------------------------------------------------------------------------- /PeProtector/ProtectPe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/ProtectPe.cpp -------------------------------------------------------------------------------- /PeProtector/ProtectPe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/ProtectPe.h -------------------------------------------------------------------------------- /PeProtector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/README.md -------------------------------------------------------------------------------- /PeProtector/Resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Resources.cpp -------------------------------------------------------------------------------- /PeProtector/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Resources.h -------------------------------------------------------------------------------- /PeProtector/Stub/Stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Stub/Stub.asm -------------------------------------------------------------------------------- /PeProtector/Stub/Stub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Stub/Stub.bin -------------------------------------------------------------------------------- /PeProtector/Test/ClientFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/ClientFileTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/CommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/CommandTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/CompileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/CompileTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/DataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/DataTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/Debug/ClientFileTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/ClientFileTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/CommandTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/CommandTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/CompileTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/CompileTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/DataTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/DataTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/ImportTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/ImportTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/InstructionTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/InstructionTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/LexicalAnalizerTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/LexicalAnalizerTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/MutationTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/MutationTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/PeHeaderTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/PeHeaderTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/ProtectPeTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/ProtectPeTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/ResourcesTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/ResourcesTest.obj -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.log -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/Test.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/Test.lastbuildstate -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /PeProtector/Test/Debug/Test.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/Test.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /PeProtector/Test/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/vc141.idb -------------------------------------------------------------------------------- /PeProtector/Test/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Debug/vc141.pdb -------------------------------------------------------------------------------- /PeProtector/Test/ImportTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/ImportTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/InstructionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/InstructionTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/LexicalAnalizerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/LexicalAnalizerTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/MutationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/MutationTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/PeHeaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/PeHeaderTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/ProtectPeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/ProtectPeTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/ResourcesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/ResourcesTest.cpp -------------------------------------------------------------------------------- /PeProtector/Test/Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Test.vcxproj -------------------------------------------------------------------------------- /PeProtector/Test/Test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/Test/Test.vcxproj.filters -------------------------------------------------------------------------------- /PeProtector/aplib/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/aplib/aplib.h -------------------------------------------------------------------------------- /PeProtector/aplib/aplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/aplib/aplib.lib -------------------------------------------------------------------------------- /PeProtector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/main.cpp -------------------------------------------------------------------------------- /PeProtector/peProtector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/peProtector.sln -------------------------------------------------------------------------------- /PeProtector/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/PeProtector/resource.h -------------------------------------------------------------------------------- /Polychaos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/LICENSE -------------------------------------------------------------------------------- /Polychaos/Polychaos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/Polychaos.sln -------------------------------------------------------------------------------- /Polychaos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/README.md -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Makefile -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/entropy.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/entropy.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/file_version_info.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/file_version_info.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/message_table.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/message_table.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_base.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_base.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.idb -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.pdb -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/Lib-link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/Lib-link.read.1.tlog -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/Lib-link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/Lib-link.write.1.tlog -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/Lib.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/Lib.command.1.tlog -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/pe_bliss.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bliss.tlog/pe_bliss.lastbuildstate -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bound_import.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_bound_import.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_checksum.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_checksum.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_debug.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_debug.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_directory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_directory.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_dotnet.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_dotnet.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_exception.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_exception.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_exception_directory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_exception_directory.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_exports.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_exports.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_factory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_factory.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_imports.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_imports.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_lib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_lib.log -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_load_config.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_load_config.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_properties.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_properties.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_properties_generic.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_properties_generic.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_rebuilder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_rebuilder.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_relocations.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_relocations.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_resource_manager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_resource_manager.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_resource_viewer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_resource_viewer.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_resources.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_rich_data.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_rich_data.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_section.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_section.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_tls.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/pe_tls.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_bitmap_reader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_bitmap_reader.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_bitmap_writer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_bitmap_writer.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_cursor_icon_reader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_cursor_icon_reader.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_cursor_icon_writer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_cursor_icon_writer.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_data_info.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_data_info.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_message_list_reader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_message_list_reader.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_string_table_reader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_string_table_reader.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_version_info_reader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_version_info_reader.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_version_info_writer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/resource_version_info_writer.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/utils.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/version_info_editor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/version_info_editor.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/version_info_viewer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/Win32/Debug/version_info_viewer.obj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/entropy.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/entropy.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/file_version_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/file_version_info.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/file_version_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/file_version_info.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/message_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/message_table.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/message_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/message_table.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_base.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_base.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_bliss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_bliss.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_bliss_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_bliss_resources.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_bound_import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_bound_import.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_bound_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_bound_import.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_checksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_checksum.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_checksum.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_debug.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_debug.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_directory.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_directory.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_dotnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_dotnet.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_dotnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_dotnet.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_exception.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_exception.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_exception_directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_exception_directory.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_exception_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_exception_directory.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_exports.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_exports.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_factory.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_factory.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_imports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_imports.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_imports.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcproj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcxproj -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcxproj.filters -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_lib.vcxproj.user -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_load_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_load_config.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_load_config.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_properties.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_properties.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_properties_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_properties_generic.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_properties_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_properties_generic.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_rebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_rebuilder.cpp -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_rebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_rebuilder.h -------------------------------------------------------------------------------- /Polychaos/contrib/portable-executable-library/pe_lib/pe_relocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/contrib/portable-executable-library/pe_lib/pe_relocations.cpp -------------------------------------------------------------------------------- /Polychaos/src/Console/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Main.cpp -------------------------------------------------------------------------------- /Polychaos/src/Console/PolychaosConsole.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/PolychaosConsole.vcxproj -------------------------------------------------------------------------------- /Polychaos/src/Console/PolychaosConsole.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/PolychaosConsole.vcxproj.filters -------------------------------------------------------------------------------- /Polychaos/src/Console/PolychaosConsole.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/PolychaosConsole.vcxproj.user -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/Main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/Main.obj -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.log -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/PolychaosConsole.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/PolychaosConsole.lastbuildstate -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/PolychaosConsole.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/vc141.idb -------------------------------------------------------------------------------- /Polychaos/src/Console/Win32/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Console/Win32/Debug/vc141.pdb -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/LDasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/LDasm.c -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/LDasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/LDasm.h -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/MutationDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/MutationDef.h -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/MutationEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/MutationEngine.cpp -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/MutationEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/MutationEngine.h -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/MutationImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/MutationImpl.cpp -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/MutationImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/MutationImpl.h -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/PEMutator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/PEMutator.cpp -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/PEMutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/PEMutator.h -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Polychaos.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Polychaos.vcxproj -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Polychaos.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Polychaos.vcxproj.filters -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Polychaos.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Polychaos.vcxproj.user -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Utils.hpp -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/LDasm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/LDasm.obj -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/MutationEngine.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/MutationEngine.obj -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/MutationImpl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/MutationImpl.obj -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/PEMutator.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/PEMutator.obj -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.idb -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.log -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.pdb -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Lib-link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Lib-link.read.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Lib-link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Lib-link.write.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Lib.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Lib.command.1.tlog -------------------------------------------------------------------------------- /Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Polychaos.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Polychaos/src/Polychaos/Win32/Debug/Polychaos.tlog/Polychaos.lastbuildstate -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🛡️ Protectors 2 | For educational use only! 3 | -------------------------------------------------------------------------------- /Rewolf-x86/bin/loader/meta.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/bin/loader/meta.exe -------------------------------------------------------------------------------- /Rewolf-x86/bin/protector/x86.virt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/bin/protector/x86.virt.exe -------------------------------------------------------------------------------- /Rewolf-x86/bin/test_app/vm_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/bin/test_app/vm_test.exe -------------------------------------------------------------------------------- /Rewolf-x86/bin/test_app/vm_test_vmed_01.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/bin/test_app/vm_test_vmed_01.exe -------------------------------------------------------------------------------- /Rewolf-x86/bin/test_app/vm_test_vmed_02.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/bin/test_app/vm_test_vmed_02.exe -------------------------------------------------------------------------------- /Rewolf-x86/doc/x86.virt.after.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/doc/x86.virt.after.gif -------------------------------------------------------------------------------- /Rewolf-x86/doc/x86.virt.before.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/doc/x86.virt.before.gif -------------------------------------------------------------------------------- /Rewolf-x86/doc/x86.virt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/doc/x86.virt.pdf -------------------------------------------------------------------------------- /Rewolf-x86/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/gpl.txt -------------------------------------------------------------------------------- /Rewolf-x86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/readme.md -------------------------------------------------------------------------------- /Rewolf-x86/src/loader/loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/loader/loader.asm -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/common.cpp -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/common.h -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/hde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/hde.h -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/hde.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/hde.lib -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/macros.h -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/main.cpp -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/poly_encdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/poly_encdec.h -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/protect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/protect.cpp -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/protect.h -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/res.rc -------------------------------------------------------------------------------- /Rewolf-x86/src/protector/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/protector/resource.h -------------------------------------------------------------------------------- /Rewolf-x86/src/test_app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/test_app/main.cpp -------------------------------------------------------------------------------- /Rewolf-x86/src/test_app/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/test_app/res.rc -------------------------------------------------------------------------------- /Rewolf-x86/src/test_app/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/Rewolf-x86/src/test_app/resource.h -------------------------------------------------------------------------------- /SimpleObfuscation/Backup/SimpleObfuscation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/Backup/SimpleObfuscation.sln -------------------------------------------------------------------------------- /SimpleObfuscation/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/Changelog.txt -------------------------------------------------------------------------------- /SimpleObfuscation/SimpleObf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/SimpleObf.cpp -------------------------------------------------------------------------------- /SimpleObfuscation/SimpleObf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/SimpleObf.h -------------------------------------------------------------------------------- /SimpleObfuscation/SimpleObfuscation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/SimpleObfuscation.sln -------------------------------------------------------------------------------- /SimpleObfuscation/SimpleObfuscation.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/SimpleObfuscation.vcproj -------------------------------------------------------------------------------- /SimpleObfuscation/SimpleObfuscation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/SimpleObfuscation.vcxproj -------------------------------------------------------------------------------- /SimpleObfuscation/SimpleObfuscation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/SimpleObfuscation.vcxproj.filters -------------------------------------------------------------------------------- /SimpleObfuscation/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/UpgradeLog.htm -------------------------------------------------------------------------------- /SimpleObfuscation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/SimpleObfuscation/main.cpp -------------------------------------------------------------------------------- /XOR_Crypter/C++ Crypter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/C++ Crypter.sln -------------------------------------------------------------------------------- /XOR_Crypter/C++ Crypter/C++ Crypter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/C++ Crypter/C++ Crypter.vcxproj -------------------------------------------------------------------------------- /XOR_Crypter/C++ Crypter/C++ Crypter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/C++ Crypter/C++ Crypter.vcxproj.filters -------------------------------------------------------------------------------- /XOR_Crypter/C++ Crypter/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/C++ Crypter/Form1.resx -------------------------------------------------------------------------------- /XOR_Crypter/C++ Crypter/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/C++ Crypter/Main.cpp -------------------------------------------------------------------------------- /XOR_Crypter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/README.md -------------------------------------------------------------------------------- /XOR_Crypter/Stub/Runpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/Stub/Runpe.h -------------------------------------------------------------------------------- /XOR_Crypter/Stub/Stub.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/Stub/Stub.vcxproj -------------------------------------------------------------------------------- /XOR_Crypter/Stub/Stub.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/Stub/Stub.vcxproj.filters -------------------------------------------------------------------------------- /XOR_Crypter/Stub/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/XOR_Crypter/Stub/main.cpp -------------------------------------------------------------------------------- /obf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/README.md -------------------------------------------------------------------------------- /obf/no-longer-standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/no-longer-standard/README.md -------------------------------------------------------------------------------- /obf/no-longer-standard/tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/no-longer-standard/tls/README.md -------------------------------------------------------------------------------- /obf/no-longer-standard/tls/crypto/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/no-longer-standard/tls/crypto/chacha.h -------------------------------------------------------------------------------- /obf/src/impl/obf_anti_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/impl/obf_anti_debug.h -------------------------------------------------------------------------------- /obf/src/impl/obf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/impl/obf_common.h -------------------------------------------------------------------------------- /obf/src/impl/obf_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/impl/obf_crypto.h -------------------------------------------------------------------------------- /obf/src/impl/obf_injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/impl/obf_injection.h -------------------------------------------------------------------------------- /obf/src/impl/obf_literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/impl/obf_literal.h -------------------------------------------------------------------------------- /obf/src/impl/obf_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/impl/obf_prng.h -------------------------------------------------------------------------------- /obf/src/obf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/obf.h -------------------------------------------------------------------------------- /obf/src/obf_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/obf_lib.h -------------------------------------------------------------------------------- /obf/src/obf_user_injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/src/obf_user_injection.h -------------------------------------------------------------------------------- /obf/test/Clang/build-internal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/Clang/build-internal.sh -------------------------------------------------------------------------------- /obf/test/Clang/build-official.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/Clang/build-official.sh -------------------------------------------------------------------------------- /obf/test/Clang/randomtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/Clang/randomtest.sh -------------------------------------------------------------------------------- /obf/test/MSVC/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/ConsoleApplication1.sln -------------------------------------------------------------------------------- /obf/test/MSVC/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /obf/test/MSVC/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /obf/test/MSVC/ConsoleApplication1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/ConsoleApplication1.vcxproj.user -------------------------------------------------------------------------------- /obf/test/MSVC/build-internal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/build-internal.bat -------------------------------------------------------------------------------- /obf/test/MSVC/build-official.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/build-official.bat -------------------------------------------------------------------------------- /obf/test/MSVC/randomtest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/randomtest.bat -------------------------------------------------------------------------------- /obf/test/MSVC/randomtest32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/MSVC/randomtest32.bat -------------------------------------------------------------------------------- /obf/test/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/helper.cpp -------------------------------------------------------------------------------- /obf/test/internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/internal.cpp -------------------------------------------------------------------------------- /obf/test/lest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/lest.hpp -------------------------------------------------------------------------------- /obf/test/obftemp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/obftemp.txt -------------------------------------------------------------------------------- /obf/test/official.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/obf/test/official.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/README.md -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/ArgsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/ArgsParser.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/ArgsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/ArgsParser.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/CodeChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/CodeChunk.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/CodeChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/CodeChunk.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/MappedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/MappedFile.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/MappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/MappedFile.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/MappedPeFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/MappedPeFile.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/MappedPeFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/MappedPeFile.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/SettingsManager.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/SettingsManager.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/StackMutator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/StackMutator.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/StackMutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/StackMutator.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/Utils.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/Utils.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/VirtualizerList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/VirtualizerList.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/VirtualizerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/VirtualizerList.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/Vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/Vm.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/Vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/Vm.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/VmInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/VmInstruction.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/VmInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/VmInstruction.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/beaengine/BeaEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/beaengine/BeaEngine.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/beaengine/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/beaengine/basic_types.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/beaengine/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/beaengine/export.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/beaengine/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/beaengine/macros.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/build.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "stdafx.h" 3 | 4 | //#define STRIPPED_BUILD -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/cli.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/cli.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/control.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/control.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/data.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/data.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "stdafx.h" 3 | 4 | bool VirtualizeMov(CodeChunk *code, DISASM *disasm); -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/environment.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/environment.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/install.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/install.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/log.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/log.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/logic.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/logic.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/main.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/markers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/markers.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/markers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/markers.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/patterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/patterns.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/patterns.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/registerswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/registerswap.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/registerswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/registerswap.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/relocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/relocations.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/relocations.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "stdafx.h" 3 | 4 | void test_f(); -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/settings.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/settings.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/stack.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/stack.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/stdafx.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/stdafx.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/targetver.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/x86.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/x86.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/x86Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/x86Instruction.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/x86Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/x86Instruction.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/x86vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/x86vm.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/chvrn_vm/x86vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/chvrn_vm/x86vm.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/example.md -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/libphant/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/libphant/ReadMe.txt -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/libphant_debug/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/libphant_debug/ReadMe.txt -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example/phant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example/phant.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example/sdk_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example/sdk_example.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example/stdafx.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example/stdafx.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example/targetver.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example_two/phant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example_two/phant.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example_two/sdk_example_two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example_two/sdk_example_two.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example_two/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example_two/stdafx.cpp -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example_two/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example_two/stdafx.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/sdk_example_two/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/sdk_example_two/targetver.h -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/vm/libphant.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/vm/libphant.asm -------------------------------------------------------------------------------- /phantasm-x86-virtualizer/vm/libphant_obf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootm0s/Protectors/HEAD/phantasm-x86-virtualizer/vm/libphant_obf.asm --------------------------------------------------------------------------------