├── Mac OSX key notes.docx ├── README.md ├── Thumbs.db ├── bin.zip ├── bin ├── pasive_kernel_fuzz.kext.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── pasive_kernel_fuzz ├── pasive_kernel_fuzz.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── pasive_kernel_fuzz │ │ └── Resources │ │ └── en.lproj │ │ └── InfoPlist.strings ├── quick-pasive_kernel_fuzz.kext.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── pasive_kernel_fuzz └── quick-pasive_kernel_fuzz.kext │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── pasive_kernel_fuzz │ └── Resources │ └── en.lproj │ └── InfoPlist.strings ├── github_readme.txt ├── pacsec2016-Fuzzing and Exploiting OSX Vulnerabilities for Fun and Profit -1.9-final.pptx └── src ├── find_me_later.rtf └── kernel_fuzzer ├── LogCrashUnkown ├── UnknownCrash1 │ └── vmwareGFX_unknownCrash1.txt ├── UnknownCrash2 │ └── Safari_IOSurface_s_create_surface_unknownCrash1.txt └── UnknownCrash3 │ └── Safari_IOSurface_s_create_surface_unknownCrash1.txt ├── README.txt ├── The_flying_circus.PS ├── pasive_kernel_fuzz.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── jack.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── root1.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ │ └── user.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── jack.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── the_flying_circus.xcscheme │ │ └── xcschememanagement.plist │ ├── root1.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── the_flying_circus.xcscheme │ │ └── xcschememanagement.plist │ └── user.xcuserdatad │ └── xcschemes │ ├── the_flying_circus.xcscheme │ └── xcschememanagement.plist └── the_flying_circus ├── FuzzMethods ├── Collect_log.c ├── Collect_log.h ├── Noise_filter │ ├── copyio_noise_filter.c │ ├── copyio_noise_filter.h │ ├── createMappingInTask_noise_filter.c │ ├── createMappingInTask_noise_filter.h │ ├── ipc_kmsg_get_noise_filter.c │ ├── ipc_kmsg_get_noise_filter.h │ ├── ipc_kmsg_send_noise_filter.c │ ├── ipc_kmsg_send_noise_filter.h │ ├── is_io_connect_method_noise_filter.c │ ├── is_io_connect_method_noise_filter.h │ ├── noise_filter.c │ └── noise_filter.h ├── communication.c ├── communication.h ├── fuzz_method.c ├── fuzz_method.h ├── record_reproduce.c └── record_reproduce.h ├── InfoLeakCheck ├── copyio_info_leak_check.c ├── copyio_info_leak_check.h ├── is_io_connect_method_info_leak_check.c └── is_io_connect_method_info_leak_check.h ├── InlineHook ├── copy_io_trampline.c ├── copy_io_trampline.h ├── createMappingInTask_trampline.c ├── createMappingInTask_trampline.h ├── inline_hook.c ├── inline_hook.h ├── iokit_user_client_trap_trampline.c ├── iokit_user_client_trap_trampline.h ├── ipc_kmsg_get_trampline.c ├── ipc_kmsg_get_trampline.h ├── ipc_kmsg_send_trampline.c ├── ipc_kmsg_send_trampline.h ├── is_io_connect_async_method_trampline.c ├── is_io_connect_async_method_trampline.h ├── is_io_connect_method_trampline.c ├── is_io_connect_method_trampline.h ├── mach_msg_overwrite_trap_trampline.c ├── mach_msg_overwrite_trap_trampline.h └── trampline_helper.h ├── anti_littlesnitch.c ├── anti_littlesnitch.h ├── audit.c ├── audit.h ├── av_monster_II.c ├── av_monster_II.h ├── clean_tracks.c ├── clean_tracks.h ├── config.h ├── configuration.h ├── cpu_protections.c ├── cpu_protections.h ├── decoder.c ├── decoder.h ├── disasm_utils.c ├── disasm_utils.h ├── distorm.c ├── distorm.h ├── en.lproj └── InfoPlist.strings ├── exec_userland_cmd.c ├── exec_userland_cmd.h ├── function_pointers.c ├── function_pointers.h ├── hash_utils.c ├── hash_utils.h ├── hide_files.c ├── hide_files.h ├── hijacking_utils.c ├── hijacking_utils.h ├── idt.c ├── idt.h ├── instructions.c ├── instructions.h ├── insts.c ├── insts.h ├── ioctl.c ├── ioctl.h ├── kdebug.c ├── kdebug.h ├── kernel_control.c ├── kernel_control.h ├── kernel_info.c ├── kernel_info.h ├── macho_utils.c ├── macho_utils.h ├── main.c ├── messages.h ├── mnemonics.c ├── mnemonics.h ├── my_data_definitions.h ├── operands.c ├── operands.h ├── pasive_kernel_fuzz-Info.plist ├── pasive_kernel_fuzz-Prefix.pch ├── path_utils.c ├── path_utils.h ├── prefix.c ├── prefix.h ├── proc.h ├── proc_utils.c ├── proc_utils.h ├── rename_functions.h ├── shared_data.h ├── syscall.h ├── sysent.c ├── sysent.h ├── sysproto.h ├── textdefs.c ├── textdefs.h ├── uio.c ├── uio.h ├── uthash.h ├── utils ├── ContainerCpp.c ├── ContainerCpp.h ├── Mach_msg.c ├── Mach_msg.h ├── Mutext.c ├── Mutext.h ├── StackTrace.c ├── StackTrace.h ├── kernel_IOUserClient.c ├── kernel_IOUserClient.h ├── process.h ├── str_utils.c └── str_utils.h ├── utlist.h ├── wstring.c ├── wstring.h ├── x86defs.h ├── zombies.c └── zombies.h /Mac OSX key notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/Mac OSX key notes.docx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/README.md -------------------------------------------------------------------------------- /Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/Thumbs.db -------------------------------------------------------------------------------- /bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin.zip -------------------------------------------------------------------------------- /bin/pasive_kernel_fuzz.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/pasive_kernel_fuzz.kext.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /bin/pasive_kernel_fuzz.kext.dSYM/Contents/Resources/DWARF/pasive_kernel_fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/pasive_kernel_fuzz.kext.dSYM/Contents/Resources/DWARF/pasive_kernel_fuzz -------------------------------------------------------------------------------- /bin/pasive_kernel_fuzz.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/pasive_kernel_fuzz.kext/Contents/Info.plist -------------------------------------------------------------------------------- /bin/pasive_kernel_fuzz.kext/Contents/MacOS/pasive_kernel_fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/pasive_kernel_fuzz.kext/Contents/MacOS/pasive_kernel_fuzz -------------------------------------------------------------------------------- /bin/pasive_kernel_fuzz.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/pasive_kernel_fuzz.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /bin/quick-pasive_kernel_fuzz.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/quick-pasive_kernel_fuzz.kext.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /bin/quick-pasive_kernel_fuzz.kext.dSYM/Contents/Resources/DWARF/pasive_kernel_fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/quick-pasive_kernel_fuzz.kext.dSYM/Contents/Resources/DWARF/pasive_kernel_fuzz -------------------------------------------------------------------------------- /bin/quick-pasive_kernel_fuzz.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/quick-pasive_kernel_fuzz.kext/Contents/Info.plist -------------------------------------------------------------------------------- /bin/quick-pasive_kernel_fuzz.kext/Contents/MacOS/pasive_kernel_fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/quick-pasive_kernel_fuzz.kext/Contents/MacOS/pasive_kernel_fuzz -------------------------------------------------------------------------------- /bin/quick-pasive_kernel_fuzz.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/bin/quick-pasive_kernel_fuzz.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /github_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/github_readme.txt -------------------------------------------------------------------------------- /pacsec2016-Fuzzing and Exploiting OSX Vulnerabilities for Fun and Profit -1.9-final.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/pacsec2016-Fuzzing and Exploiting OSX Vulnerabilities for Fun and Profit -1.9-final.pptx -------------------------------------------------------------------------------- /src/find_me_later.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/find_me_later.rtf -------------------------------------------------------------------------------- /src/kernel_fuzzer/LogCrashUnkown/UnknownCrash1/vmwareGFX_unknownCrash1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/LogCrashUnkown/UnknownCrash1/vmwareGFX_unknownCrash1.txt -------------------------------------------------------------------------------- /src/kernel_fuzzer/LogCrashUnkown/UnknownCrash2/Safari_IOSurface_s_create_surface_unknownCrash1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/LogCrashUnkown/UnknownCrash2/Safari_IOSurface_s_create_surface_unknownCrash1.txt -------------------------------------------------------------------------------- /src/kernel_fuzzer/LogCrashUnkown/UnknownCrash3/Safari_IOSurface_s_create_surface_unknownCrash1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/LogCrashUnkown/UnknownCrash3/Safari_IOSurface_s_create_surface_unknownCrash1.txt -------------------------------------------------------------------------------- /src/kernel_fuzzer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/README.txt -------------------------------------------------------------------------------- /src/kernel_fuzzer/The_flying_circus.PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/The_flying_circus.PS -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/jack.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/jack.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/root1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/root1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/root1.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/root1.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/user.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/project.xcworkspace/xcuserdata/user.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/jack.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/jack.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/jack.xcuserdatad/xcschemes/the_flying_circus.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/jack.xcuserdatad/xcschemes/the_flying_circus.xcscheme -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/jack.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/jack.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/root1.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/root1.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/root1.xcuserdatad/xcschemes/the_flying_circus.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/root1.xcuserdatad/xcschemes/the_flying_circus.xcscheme -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/root1.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/root1.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/the_flying_circus.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/the_flying_circus.xcscheme -------------------------------------------------------------------------------- /src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/pasive_kernel_fuzz.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Collect_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Collect_log.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Collect_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Collect_log.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/copyio_noise_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/copyio_noise_filter.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/copyio_noise_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/copyio_noise_filter.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/createMappingInTask_noise_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/createMappingInTask_noise_filter.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/createMappingInTask_noise_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/createMappingInTask_noise_filter.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_get_noise_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_get_noise_filter.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_get_noise_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_get_noise_filter.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_send_noise_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_send_noise_filter.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_send_noise_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/ipc_kmsg_send_noise_filter.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/is_io_connect_method_noise_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/is_io_connect_method_noise_filter.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/is_io_connect_method_noise_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/is_io_connect_method_noise_filter.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/noise_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/noise_filter.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/noise_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/Noise_filter/noise_filter.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/communication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/communication.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/communication.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/fuzz_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/fuzz_method.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/fuzz_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/fuzz_method.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/record_reproduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/record_reproduce.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/FuzzMethods/record_reproduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/FuzzMethods/record_reproduce.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/copyio_info_leak_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/copyio_info_leak_check.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/copyio_info_leak_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/copyio_info_leak_check.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/is_io_connect_method_info_leak_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/is_io_connect_method_info_leak_check.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/is_io_connect_method_info_leak_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InfoLeakCheck/is_io_connect_method_info_leak_check.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/copy_io_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/copy_io_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/copy_io_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/copy_io_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/createMappingInTask_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/createMappingInTask_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/createMappingInTask_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/createMappingInTask_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/inline_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/inline_hook.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/inline_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/inline_hook.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/iokit_user_client_trap_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/iokit_user_client_trap_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/iokit_user_client_trap_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/iokit_user_client_trap_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_get_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_get_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_get_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_get_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_send_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_send_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_send_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/ipc_kmsg_send_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_async_method_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_async_method_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_async_method_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_async_method_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_method_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_method_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_method_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/is_io_connect_method_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/mach_msg_overwrite_trap_trampline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/mach_msg_overwrite_trap_trampline.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/mach_msg_overwrite_trap_trampline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/mach_msg_overwrite_trap_trampline.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/InlineHook/trampline_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/InlineHook/trampline_helper.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/anti_littlesnitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/anti_littlesnitch.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/anti_littlesnitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/anti_littlesnitch.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/audit.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/audit.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/av_monster_II.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/av_monster_II.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/av_monster_II.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/av_monster_II.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/clean_tracks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/clean_tracks.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/clean_tracks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/clean_tracks.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/config.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/configuration.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/cpu_protections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/cpu_protections.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/cpu_protections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/cpu_protections.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/decoder.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/decoder.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/disasm_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/disasm_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/disasm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/disasm_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/distorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/distorm.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/distorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/distorm.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/exec_userland_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/exec_userland_cmd.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/exec_userland_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/exec_userland_cmd.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/function_pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/function_pointers.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/function_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/function_pointers.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/hash_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/hash_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/hash_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/hash_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/hide_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/hide_files.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/hide_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/hide_files.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/hijacking_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/hijacking_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/hijacking_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/hijacking_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/idt.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/idt.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/instructions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/instructions.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/instructions.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/insts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/insts.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/insts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/insts.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/ioctl.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/ioctl.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/kdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/kdebug.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/kdebug.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/kernel_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/kernel_control.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/kernel_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/kernel_control.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/kernel_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/kernel_info.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/kernel_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/kernel_info.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/macho_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/macho_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/macho_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/macho_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/main.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/messages.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/mnemonics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/mnemonics.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/mnemonics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/mnemonics.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/my_data_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/my_data_definitions.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/operands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/operands.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/operands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/operands.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/pasive_kernel_fuzz-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/pasive_kernel_fuzz-Info.plist -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/pasive_kernel_fuzz-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/pasive_kernel_fuzz-Prefix.pch -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/path_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/path_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/path_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/path_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/prefix.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/prefix.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/proc.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/proc_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/proc_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/proc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/proc_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/rename_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/rename_functions.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/shared_data.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/syscall.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/sysent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/sysent.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/sysent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/sysent.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/sysproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/sysproto.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/textdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/textdefs.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/textdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/textdefs.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/uio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/uio.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/uio.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/uthash.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/ContainerCpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/ContainerCpp.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/ContainerCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/ContainerCpp.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/Mach_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/Mach_msg.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/Mach_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/Mach_msg.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/Mutext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/Mutext.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/Mutext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/Mutext.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/StackTrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/StackTrace.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/StackTrace.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/kernel_IOUserClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/kernel_IOUserClient.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/kernel_IOUserClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/kernel_IOUserClient.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/process.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/str_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/str_utils.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utils/str_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utils/str_utils.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/utlist.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/wstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/wstring.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/wstring.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/x86defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/x86defs.h -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/zombies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/zombies.c -------------------------------------------------------------------------------- /src/kernel_fuzzer/the_flying_circus/zombies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilverMoonSecurity/PassiveFuzzFrameworkOSX/HEAD/src/kernel_fuzzer/the_flying_circus/zombies.h --------------------------------------------------------------------------------