├── .gitignore ├── BUILDER ├── Bella.py ├── Control Center.py ├── LICENSE ├── Payloads ├── Insomnia.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Insomnia_r11 │ │ ├── Resources │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ │ └── _CodeSignature │ │ └── CodeResources ├── UID.c ├── lock_icon.png ├── payload_generator ├── payloads.txt ├── smallbreaker.py ├── speakerpipe ├── suid_racer.zip └── vnc ├── README.md └── Screenshots ├── Bella Info.png ├── Builder.png ├── Command entry.png └── Found Clients.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/BUILDER -------------------------------------------------------------------------------- /Bella.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Bella.py -------------------------------------------------------------------------------- /Control Center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Control Center.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/LICENSE -------------------------------------------------------------------------------- /Payloads/Insomnia.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/Insomnia.kext/Contents/Info.plist -------------------------------------------------------------------------------- /Payloads/Insomnia.kext/Contents/MacOS/Insomnia_r11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/Insomnia.kext/Contents/MacOS/Insomnia_r11 -------------------------------------------------------------------------------- /Payloads/Insomnia.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/Insomnia.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Payloads/Insomnia.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/Insomnia.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Payloads/UID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/UID.c -------------------------------------------------------------------------------- /Payloads/lock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/lock_icon.png -------------------------------------------------------------------------------- /Payloads/payload_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/payload_generator -------------------------------------------------------------------------------- /Payloads/payloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/payloads.txt -------------------------------------------------------------------------------- /Payloads/smallbreaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/smallbreaker.py -------------------------------------------------------------------------------- /Payloads/speakerpipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/speakerpipe -------------------------------------------------------------------------------- /Payloads/suid_racer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/suid_racer.zip -------------------------------------------------------------------------------- /Payloads/vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Payloads/vnc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Bella Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Screenshots/Bella Info.png -------------------------------------------------------------------------------- /Screenshots/Builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Screenshots/Builder.png -------------------------------------------------------------------------------- /Screenshots/Command entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Screenshots/Command entry.png -------------------------------------------------------------------------------- /Screenshots/Found Clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai5263499/Bella/HEAD/Screenshots/Found Clients.png --------------------------------------------------------------------------------