├── .gitignore ├── LICENSE ├── PlankFilza.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── brandonplank.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── geosn0w.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── brandonplank.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── PlankFilza ├── .DS_Store ├── Info.plist ├── LibOffset.h ├── LibOffset.m ├── PatchDebugging │ ├── BypassAntiDebugging.h │ ├── BypassAntiDebugging.m │ └── fishhook │ │ └── fishhook │ │ ├── LICENSE │ │ ├── fishhook.c │ │ └── fishhook.h ├── exploit │ ├── LICENSE │ ├── README.md │ ├── cicuta_log.c │ ├── cicuta_log.h │ ├── cicuta_virosa.c │ ├── cicuta_virosa.h │ ├── descriptors_utils.c │ ├── descriptors_utils.h │ ├── exploit_utilities.c │ ├── exploit_utilities.h │ ├── fake_element_spray.c │ ├── fake_element_spray.h │ ├── voucher_utils.c │ └── voucher_utils.h ├── mach_vm.h ├── main.h ├── main.m ├── offsets.h ├── offsets.m ├── postexploit │ ├── rootless.h │ └── rootless.m ├── pwner.h ├── support.h └── support.m ├── README.md └── icon.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/LICENSE -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/project.xcworkspace/xcuserdata/brandonplank.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/project.xcworkspace/xcuserdata/brandonplank.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/project.xcworkspace/xcuserdata/geosn0w.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/project.xcworkspace/xcuserdata/geosn0w.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/xcuserdata/brandonplank.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/xcuserdata/brandonplank.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PlankFilza.xcodeproj/xcuserdata/brandonplank.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza.xcodeproj/xcuserdata/brandonplank.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PlankFilza/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/.DS_Store -------------------------------------------------------------------------------- /PlankFilza/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/Info.plist -------------------------------------------------------------------------------- /PlankFilza/LibOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/LibOffset.h -------------------------------------------------------------------------------- /PlankFilza/LibOffset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/LibOffset.m -------------------------------------------------------------------------------- /PlankFilza/PatchDebugging/BypassAntiDebugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/PatchDebugging/BypassAntiDebugging.h -------------------------------------------------------------------------------- /PlankFilza/PatchDebugging/BypassAntiDebugging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/PatchDebugging/BypassAntiDebugging.m -------------------------------------------------------------------------------- /PlankFilza/PatchDebugging/fishhook/fishhook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/PatchDebugging/fishhook/fishhook/LICENSE -------------------------------------------------------------------------------- /PlankFilza/PatchDebugging/fishhook/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/PatchDebugging/fishhook/fishhook/fishhook.c -------------------------------------------------------------------------------- /PlankFilza/PatchDebugging/fishhook/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/PatchDebugging/fishhook/fishhook/fishhook.h -------------------------------------------------------------------------------- /PlankFilza/exploit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/LICENSE -------------------------------------------------------------------------------- /PlankFilza/exploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/README.md -------------------------------------------------------------------------------- /PlankFilza/exploit/cicuta_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/cicuta_log.c -------------------------------------------------------------------------------- /PlankFilza/exploit/cicuta_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/cicuta_log.h -------------------------------------------------------------------------------- /PlankFilza/exploit/cicuta_virosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/cicuta_virosa.c -------------------------------------------------------------------------------- /PlankFilza/exploit/cicuta_virosa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/cicuta_virosa.h -------------------------------------------------------------------------------- /PlankFilza/exploit/descriptors_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/descriptors_utils.c -------------------------------------------------------------------------------- /PlankFilza/exploit/descriptors_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/descriptors_utils.h -------------------------------------------------------------------------------- /PlankFilza/exploit/exploit_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/exploit_utilities.c -------------------------------------------------------------------------------- /PlankFilza/exploit/exploit_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/exploit_utilities.h -------------------------------------------------------------------------------- /PlankFilza/exploit/fake_element_spray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/fake_element_spray.c -------------------------------------------------------------------------------- /PlankFilza/exploit/fake_element_spray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/fake_element_spray.h -------------------------------------------------------------------------------- /PlankFilza/exploit/voucher_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/voucher_utils.c -------------------------------------------------------------------------------- /PlankFilza/exploit/voucher_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/exploit/voucher_utils.h -------------------------------------------------------------------------------- /PlankFilza/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/mach_vm.h -------------------------------------------------------------------------------- /PlankFilza/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/main.h -------------------------------------------------------------------------------- /PlankFilza/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/main.m -------------------------------------------------------------------------------- /PlankFilza/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/offsets.h -------------------------------------------------------------------------------- /PlankFilza/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/offsets.m -------------------------------------------------------------------------------- /PlankFilza/postexploit/rootless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/postexploit/rootless.h -------------------------------------------------------------------------------- /PlankFilza/postexploit/rootless.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/postexploit/rootless.m -------------------------------------------------------------------------------- /PlankFilza/pwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/pwner.h -------------------------------------------------------------------------------- /PlankFilza/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/support.h -------------------------------------------------------------------------------- /PlankFilza/support.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/PlankFilza/support.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/PlankFilza/HEAD/icon.png --------------------------------------------------------------------------------