├── .gitignore ├── README.md ├── control-gui ├── control-gui.xcodeproj │ └── project.pbxproj ├── control-gui │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ ├── cat-clipart-7.jpg │ ├── cat_fish.png │ ├── control-gui-Info.plist │ ├── control-gui-Prefix.pch │ ├── controlAppDelegate.h │ ├── controlAppDelegate.m │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── kernelControl.h │ ├── kernelControl.m │ ├── main.m │ ├── status-available.tiff │ └── status-away.tiff └── control-guiTests │ ├── control-guiTests-Info.plist │ ├── control_guiTests.m │ └── en.lproj │ └── InfoPlist.strings ├── control ├── control.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── control │ └── main.c ├── distorm ├── COPYING ├── MANIFEST ├── MANIFEST.in ├── README.md ├── disOps │ ├── disOps.py │ ├── x86db.py │ ├── x86header.py │ └── x86sets.py ├── examples │ ├── cs │ │ ├── TestdiStorm │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── TestdiStorm.csproj │ │ ├── distorm-net.sln │ │ ├── distorm-net │ │ │ ├── CodeInfo.cs │ │ │ ├── DecodedInst.cs │ │ │ ├── DecodedResult.cs │ │ │ ├── DecomposedInst.cs │ │ │ ├── DecomposedResult.cs │ │ │ ├── Opcodes.cs │ │ │ ├── Opcodes.tt │ │ │ ├── Operand.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── diStorm3.cs │ │ │ └── distorm-net.csproj │ │ └── readme │ ├── ddk │ │ ├── README │ │ ├── distorm.ini │ │ ├── dummy.c │ │ ├── main.c │ │ ├── makefile │ │ └── sources │ ├── java │ │ ├── Makefile │ │ ├── distorm │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ └── src │ │ │ │ ├── Main.java │ │ │ │ └── diStorm3 │ │ │ │ ├── CodeInfo.java │ │ │ │ ├── DecodedInst.java │ │ │ │ ├── DecodedResult.java │ │ │ │ ├── DecomposedInst.java │ │ │ │ ├── DecomposedResult.java │ │ │ │ ├── OpcodeEnum.java │ │ │ │ ├── Opcodes.java │ │ │ │ ├── Operand.java │ │ │ │ └── distorm3.java │ │ ├── jdistorm.c │ │ ├── jdistorm.h │ │ ├── jdistorm.sln │ │ └── jdistorm.vcproj │ ├── linux │ │ ├── Makefile │ │ └── main.c │ ├── tests │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── main.py │ │ ├── test_distorm3.py │ │ ├── tests.sln │ │ ├── tests.vcxproj │ │ └── tests.vcxproj.filters │ └── win32 │ │ ├── disasm.sln │ │ ├── disasm.vcxproj │ │ ├── disasm.vcxproj.filters │ │ └── main.cpp ├── include │ ├── distorm.h │ └── mnemonics.h ├── make │ ├── linux │ │ └── Makefile │ ├── mac │ │ └── Makefile │ └── win32 │ │ ├── cdistorm.vcxproj │ │ ├── cdistorm.vcxproj.filters │ │ ├── distorm.sln │ │ ├── resource.h │ │ └── resource.rc ├── python │ └── distorm3 │ │ ├── __init__.py │ │ └── sample.py ├── setup.cfg ├── setup.py └── src │ ├── config.h │ ├── decoder.c │ ├── decoder.h │ ├── distorm.c │ ├── instructions.c │ ├── instructions.h │ ├── insts.c │ ├── insts.h │ ├── mnemonics.c │ ├── operands.c │ ├── operands.h │ ├── prefix.c │ ├── prefix.h │ ├── textdefs.c │ ├── textdefs.h │ ├── wstring.c │ ├── wstring.h │ └── x86defs.h ├── kext ├── Info.plist ├── README.md ├── antidebug.c ├── antidebug.h ├── cpu_protections.c ├── cpu_protections.h ├── disasm_utils.c ├── disasm_utils.h ├── en.lproj │ └── InfoPlist.strings ├── idt.c ├── idt.h ├── kernel_control.c ├── kernel_control.h ├── kernel_info.c ├── kernel_info.h ├── my_data_definitions.h ├── onyx-the-black-cat.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── onyx_the_black_cat.c ├── patchkernel.c ├── patchkernel.h ├── proc.h ├── shared_data.h ├── syscall.h ├── sysent.c ├── sysent.h ├── sysproto.h └── utlist.h ├── onyx-the-black-cat.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── tests ├── sysctlantidebug.c ├── taskforpid.c ├── testptrace.c └── testptraceTrap.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/README.md -------------------------------------------------------------------------------- /control-gui/control-gui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /control-gui/control-gui/cat-clipart-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/cat-clipart-7.jpg -------------------------------------------------------------------------------- /control-gui/control-gui/cat_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/cat_fish.png -------------------------------------------------------------------------------- /control-gui/control-gui/control-gui-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/control-gui-Info.plist -------------------------------------------------------------------------------- /control-gui/control-gui/control-gui-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/control-gui-Prefix.pch -------------------------------------------------------------------------------- /control-gui/control-gui/controlAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/controlAppDelegate.h -------------------------------------------------------------------------------- /control-gui/control-gui/controlAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/controlAppDelegate.m -------------------------------------------------------------------------------- /control-gui/control-gui/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /control-gui/control-gui/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /control-gui/control-gui/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /control-gui/control-gui/kernelControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/kernelControl.h -------------------------------------------------------------------------------- /control-gui/control-gui/kernelControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/kernelControl.m -------------------------------------------------------------------------------- /control-gui/control-gui/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/main.m -------------------------------------------------------------------------------- /control-gui/control-gui/status-available.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/status-available.tiff -------------------------------------------------------------------------------- /control-gui/control-gui/status-away.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-gui/status-away.tiff -------------------------------------------------------------------------------- /control-gui/control-guiTests/control-guiTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-guiTests/control-guiTests-Info.plist -------------------------------------------------------------------------------- /control-gui/control-guiTests/control_guiTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control-gui/control-guiTests/control_guiTests.m -------------------------------------------------------------------------------- /control-gui/control-guiTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /control/control.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control/control.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /control/control.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control/control.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /control/control/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/control/control/main.c -------------------------------------------------------------------------------- /distorm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/COPYING -------------------------------------------------------------------------------- /distorm/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/MANIFEST -------------------------------------------------------------------------------- /distorm/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/MANIFEST.in -------------------------------------------------------------------------------- /distorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/README.md -------------------------------------------------------------------------------- /distorm/disOps/disOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/disOps/disOps.py -------------------------------------------------------------------------------- /distorm/disOps/x86db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/disOps/x86db.py -------------------------------------------------------------------------------- /distorm/disOps/x86header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/disOps/x86header.py -------------------------------------------------------------------------------- /distorm/disOps/x86sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/disOps/x86sets.py -------------------------------------------------------------------------------- /distorm/examples/cs/TestdiStorm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/TestdiStorm/Program.cs -------------------------------------------------------------------------------- /distorm/examples/cs/TestdiStorm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/TestdiStorm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /distorm/examples/cs/TestdiStorm/TestdiStorm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/TestdiStorm/TestdiStorm.csproj -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net.sln -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/CodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/CodeInfo.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/DecodedInst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/DecodedInst.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/DecodedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/DecodedResult.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/DecomposedInst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/DecomposedInst.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/DecomposedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/DecomposedResult.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/Opcodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/Opcodes.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/Opcodes.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/Opcodes.tt -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/Operand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/Operand.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/diStorm3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/diStorm3.cs -------------------------------------------------------------------------------- /distorm/examples/cs/distorm-net/distorm-net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/distorm-net/distorm-net.csproj -------------------------------------------------------------------------------- /distorm/examples/cs/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/cs/readme -------------------------------------------------------------------------------- /distorm/examples/ddk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/ddk/README -------------------------------------------------------------------------------- /distorm/examples/ddk/distorm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/ddk/distorm.ini -------------------------------------------------------------------------------- /distorm/examples/ddk/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/ddk/dummy.c -------------------------------------------------------------------------------- /distorm/examples/ddk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/ddk/main.c -------------------------------------------------------------------------------- /distorm/examples/ddk/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /distorm/examples/ddk/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/ddk/sources -------------------------------------------------------------------------------- /distorm/examples/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/Makefile -------------------------------------------------------------------------------- /distorm/examples/java/distorm/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/.classpath -------------------------------------------------------------------------------- /distorm/examples/java/distorm/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/.project -------------------------------------------------------------------------------- /distorm/examples/java/distorm/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/Main.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/CodeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/CodeInfo.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/DecodedInst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/DecodedInst.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/DecodedResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/DecodedResult.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/DecomposedInst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/DecomposedInst.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/DecomposedResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/DecomposedResult.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/OpcodeEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/OpcodeEnum.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/Opcodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/Opcodes.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/Operand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/Operand.java -------------------------------------------------------------------------------- /distorm/examples/java/distorm/src/diStorm3/distorm3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/distorm/src/diStorm3/distorm3.java -------------------------------------------------------------------------------- /distorm/examples/java/jdistorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/jdistorm.c -------------------------------------------------------------------------------- /distorm/examples/java/jdistorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/jdistorm.h -------------------------------------------------------------------------------- /distorm/examples/java/jdistorm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/jdistorm.sln -------------------------------------------------------------------------------- /distorm/examples/java/jdistorm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/java/jdistorm.vcproj -------------------------------------------------------------------------------- /distorm/examples/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/linux/Makefile -------------------------------------------------------------------------------- /distorm/examples/linux/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/linux/main.c -------------------------------------------------------------------------------- /distorm/examples/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/Makefile -------------------------------------------------------------------------------- /distorm/examples/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/main.cpp -------------------------------------------------------------------------------- /distorm/examples/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/main.py -------------------------------------------------------------------------------- /distorm/examples/tests/test_distorm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/test_distorm3.py -------------------------------------------------------------------------------- /distorm/examples/tests/tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/tests.sln -------------------------------------------------------------------------------- /distorm/examples/tests/tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/tests.vcxproj -------------------------------------------------------------------------------- /distorm/examples/tests/tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/tests/tests.vcxproj.filters -------------------------------------------------------------------------------- /distorm/examples/win32/disasm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/win32/disasm.sln -------------------------------------------------------------------------------- /distorm/examples/win32/disasm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/win32/disasm.vcxproj -------------------------------------------------------------------------------- /distorm/examples/win32/disasm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/win32/disasm.vcxproj.filters -------------------------------------------------------------------------------- /distorm/examples/win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/examples/win32/main.cpp -------------------------------------------------------------------------------- /distorm/include/distorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/include/distorm.h -------------------------------------------------------------------------------- /distorm/include/mnemonics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/include/mnemonics.h -------------------------------------------------------------------------------- /distorm/make/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/linux/Makefile -------------------------------------------------------------------------------- /distorm/make/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/mac/Makefile -------------------------------------------------------------------------------- /distorm/make/win32/cdistorm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/win32/cdistorm.vcxproj -------------------------------------------------------------------------------- /distorm/make/win32/cdistorm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/win32/cdistorm.vcxproj.filters -------------------------------------------------------------------------------- /distorm/make/win32/distorm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/win32/distorm.sln -------------------------------------------------------------------------------- /distorm/make/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/win32/resource.h -------------------------------------------------------------------------------- /distorm/make/win32/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/make/win32/resource.rc -------------------------------------------------------------------------------- /distorm/python/distorm3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/python/distorm3/__init__.py -------------------------------------------------------------------------------- /distorm/python/distorm3/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/python/distorm3/sample.py -------------------------------------------------------------------------------- /distorm/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/setup.cfg -------------------------------------------------------------------------------- /distorm/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/setup.py -------------------------------------------------------------------------------- /distorm/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/config.h -------------------------------------------------------------------------------- /distorm/src/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/decoder.c -------------------------------------------------------------------------------- /distorm/src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/decoder.h -------------------------------------------------------------------------------- /distorm/src/distorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/distorm.c -------------------------------------------------------------------------------- /distorm/src/instructions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/instructions.c -------------------------------------------------------------------------------- /distorm/src/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/instructions.h -------------------------------------------------------------------------------- /distorm/src/insts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/insts.c -------------------------------------------------------------------------------- /distorm/src/insts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/insts.h -------------------------------------------------------------------------------- /distorm/src/mnemonics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/mnemonics.c -------------------------------------------------------------------------------- /distorm/src/operands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/operands.c -------------------------------------------------------------------------------- /distorm/src/operands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/operands.h -------------------------------------------------------------------------------- /distorm/src/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/prefix.c -------------------------------------------------------------------------------- /distorm/src/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/prefix.h -------------------------------------------------------------------------------- /distorm/src/textdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/textdefs.c -------------------------------------------------------------------------------- /distorm/src/textdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/textdefs.h -------------------------------------------------------------------------------- /distorm/src/wstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/wstring.c -------------------------------------------------------------------------------- /distorm/src/wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/wstring.h -------------------------------------------------------------------------------- /distorm/src/x86defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/distorm/src/x86defs.h -------------------------------------------------------------------------------- /kext/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/Info.plist -------------------------------------------------------------------------------- /kext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/README.md -------------------------------------------------------------------------------- /kext/antidebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/antidebug.c -------------------------------------------------------------------------------- /kext/antidebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/antidebug.h -------------------------------------------------------------------------------- /kext/cpu_protections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/cpu_protections.c -------------------------------------------------------------------------------- /kext/cpu_protections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/cpu_protections.h -------------------------------------------------------------------------------- /kext/disasm_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/disasm_utils.c -------------------------------------------------------------------------------- /kext/disasm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/disasm_utils.h -------------------------------------------------------------------------------- /kext/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /kext/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/idt.c -------------------------------------------------------------------------------- /kext/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/idt.h -------------------------------------------------------------------------------- /kext/kernel_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/kernel_control.c -------------------------------------------------------------------------------- /kext/kernel_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/kernel_control.h -------------------------------------------------------------------------------- /kext/kernel_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/kernel_info.c -------------------------------------------------------------------------------- /kext/kernel_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/kernel_info.h -------------------------------------------------------------------------------- /kext/my_data_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/my_data_definitions.h -------------------------------------------------------------------------------- /kext/onyx-the-black-cat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/onyx-the-black-cat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /kext/onyx-the-black-cat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/onyx-the-black-cat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /kext/onyx_the_black_cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/onyx_the_black_cat.c -------------------------------------------------------------------------------- /kext/patchkernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/patchkernel.c -------------------------------------------------------------------------------- /kext/patchkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/patchkernel.h -------------------------------------------------------------------------------- /kext/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/proc.h -------------------------------------------------------------------------------- /kext/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/shared_data.h -------------------------------------------------------------------------------- /kext/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/syscall.h -------------------------------------------------------------------------------- /kext/sysent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/sysent.c -------------------------------------------------------------------------------- /kext/sysent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/sysent.h -------------------------------------------------------------------------------- /kext/sysproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/sysproto.h -------------------------------------------------------------------------------- /kext/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/kext/utlist.h -------------------------------------------------------------------------------- /onyx-the-black-cat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/onyx-the-black-cat.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /onyx-the-black-cat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/onyx-the-black-cat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tests/sysctlantidebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/tests/sysctlantidebug.c -------------------------------------------------------------------------------- /tests/taskforpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/tests/taskforpid.c -------------------------------------------------------------------------------- /tests/testptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/tests/testptrace.c -------------------------------------------------------------------------------- /tests/testptraceTrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidanthera/onyx-the-black-cat/HEAD/tests/testptraceTrap.c --------------------------------------------------------------------------------