├── .gitignore ├── README.md ├── bin ├── gatekeeper_bypass.sh ├── lpe ├── osinstallersetupd ├── reverse_shell └── sip_mv ├── cfg ├── TCC.db └── rootshell.plist ├── cute_dog.jpg └── src ├── lpe.m ├── osinstallersetupd.m ├── reverse_shell.c └── sip_mv.m /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/README.md -------------------------------------------------------------------------------- /bin/gatekeeper_bypass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/bin/gatekeeper_bypass.sh -------------------------------------------------------------------------------- /bin/lpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/bin/lpe -------------------------------------------------------------------------------- /bin/osinstallersetupd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/bin/osinstallersetupd -------------------------------------------------------------------------------- /bin/reverse_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/bin/reverse_shell -------------------------------------------------------------------------------- /bin/sip_mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/bin/sip_mv -------------------------------------------------------------------------------- /cfg/TCC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/cfg/TCC.db -------------------------------------------------------------------------------- /cfg/rootshell.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/cfg/rootshell.plist -------------------------------------------------------------------------------- /cute_dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/cute_dog.jpg -------------------------------------------------------------------------------- /src/lpe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/src/lpe.m -------------------------------------------------------------------------------- /src/osinstallersetupd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/src/osinstallersetupd.m -------------------------------------------------------------------------------- /src/reverse_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/src/reverse_shell.c -------------------------------------------------------------------------------- /src/sip_mv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhftss/One-Click-Demo/HEAD/src/sip_mv.m --------------------------------------------------------------------------------