├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Mussel ├── apple_ios │ ├── Makefile │ ├── README.md │ ├── deps │ │ ├── plist.py │ │ └── sign.plist │ ├── hook.m │ ├── main.m │ └── mussel.m └── macos │ ├── Makefile │ ├── deps │ ├── plist.py │ └── sign.plist │ └── main.m ├── README.md ├── TERMS_OF_SERVICE.md ├── seashell ├── __init__.py ├── commands │ ├── app.py │ ├── devices.py │ ├── ipa.py │ ├── listener.py │ └── rpc.py ├── core │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── console.py │ ├── device.py │ ├── hook.py │ └── ipa.py ├── data │ ├── AppIcon.png │ ├── Mussel.app │ │ ├── Info.plist │ │ ├── main │ │ └── mussel │ ├── banners │ │ ├── apple.colors │ │ ├── apples.colors │ │ ├── bug.colors │ │ ├── cydia.colors │ │ ├── honey.colors │ │ ├── hook.colors │ │ ├── icloud.colors │ │ ├── mac.colors │ │ ├── phone.colors │ │ ├── phone2.colors │ │ ├── shell.colors │ │ └── shell2.colors │ ├── builtins.png │ ├── hook │ ├── logo.png │ ├── preview │ │ ├── demo.mp4 │ │ ├── hook.mp4 │ │ ├── hook.png │ │ ├── ipa.cast │ │ ├── ipa.svg │ │ ├── listen.cast │ │ ├── listen.svg │ │ ├── mussel.png │ │ ├── patch.mp4 │ │ ├── player.cast │ │ ├── player.svg │ │ ├── safari.cast │ │ ├── safari.svg │ │ ├── sms.cast │ │ └── sms.svg │ └── tips │ │ ├── tip1.colors │ │ ├── tip2.colors │ │ └── tip3.colors ├── lib │ ├── __init__.py │ ├── config.py │ └── loot.py ├── modules │ └── apple_ios │ │ ├── contacts.py │ │ ├── hook.py │ │ ├── photos.py │ │ ├── safari_bookmarks.py │ │ ├── safari_history.py │ │ ├── sms.py │ │ ├── unhook.py │ │ └── voicemail.py └── utils │ ├── __init__.py │ ├── rpc.py │ └── ui │ ├── __init__.py │ ├── banner.py │ └── tip.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | build 3 | dist 4 | seashell.egg-info -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Mussel/apple_ios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/Makefile -------------------------------------------------------------------------------- /Mussel/apple_ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/README.md -------------------------------------------------------------------------------- /Mussel/apple_ios/deps/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/deps/plist.py -------------------------------------------------------------------------------- /Mussel/apple_ios/deps/sign.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/deps/sign.plist -------------------------------------------------------------------------------- /Mussel/apple_ios/hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/hook.m -------------------------------------------------------------------------------- /Mussel/apple_ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/main.m -------------------------------------------------------------------------------- /Mussel/apple_ios/mussel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/apple_ios/mussel.m -------------------------------------------------------------------------------- /Mussel/macos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/macos/Makefile -------------------------------------------------------------------------------- /Mussel/macos/deps/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/macos/deps/plist.py -------------------------------------------------------------------------------- /Mussel/macos/deps/sign.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/macos/deps/sign.plist -------------------------------------------------------------------------------- /Mussel/macos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/Mussel/macos/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/README.md -------------------------------------------------------------------------------- /TERMS_OF_SERVICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/TERMS_OF_SERVICE.md -------------------------------------------------------------------------------- /seashell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/__init__.py -------------------------------------------------------------------------------- /seashell/commands/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/commands/app.py -------------------------------------------------------------------------------- /seashell/commands/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/commands/devices.py -------------------------------------------------------------------------------- /seashell/commands/ipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/commands/ipa.py -------------------------------------------------------------------------------- /seashell/commands/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/commands/listener.py -------------------------------------------------------------------------------- /seashell/commands/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/commands/rpc.py -------------------------------------------------------------------------------- /seashell/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/__init__.py -------------------------------------------------------------------------------- /seashell/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/api.py -------------------------------------------------------------------------------- /seashell/core/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/app.py -------------------------------------------------------------------------------- /seashell/core/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/console.py -------------------------------------------------------------------------------- /seashell/core/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/device.py -------------------------------------------------------------------------------- /seashell/core/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/hook.py -------------------------------------------------------------------------------- /seashell/core/ipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/core/ipa.py -------------------------------------------------------------------------------- /seashell/data/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/AppIcon.png -------------------------------------------------------------------------------- /seashell/data/Mussel.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/Mussel.app/Info.plist -------------------------------------------------------------------------------- /seashell/data/Mussel.app/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/Mussel.app/main -------------------------------------------------------------------------------- /seashell/data/Mussel.app/mussel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/Mussel.app/mussel -------------------------------------------------------------------------------- /seashell/data/banners/apple.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/apple.colors -------------------------------------------------------------------------------- /seashell/data/banners/apples.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/apples.colors -------------------------------------------------------------------------------- /seashell/data/banners/bug.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/bug.colors -------------------------------------------------------------------------------- /seashell/data/banners/cydia.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/cydia.colors -------------------------------------------------------------------------------- /seashell/data/banners/honey.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/honey.colors -------------------------------------------------------------------------------- /seashell/data/banners/hook.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/hook.colors -------------------------------------------------------------------------------- /seashell/data/banners/icloud.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/icloud.colors -------------------------------------------------------------------------------- /seashell/data/banners/mac.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/mac.colors -------------------------------------------------------------------------------- /seashell/data/banners/phone.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/phone.colors -------------------------------------------------------------------------------- /seashell/data/banners/phone2.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/phone2.colors -------------------------------------------------------------------------------- /seashell/data/banners/shell.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/shell.colors -------------------------------------------------------------------------------- /seashell/data/banners/shell2.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/banners/shell2.colors -------------------------------------------------------------------------------- /seashell/data/builtins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/builtins.png -------------------------------------------------------------------------------- /seashell/data/hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/hook -------------------------------------------------------------------------------- /seashell/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/logo.png -------------------------------------------------------------------------------- /seashell/data/preview/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/demo.mp4 -------------------------------------------------------------------------------- /seashell/data/preview/hook.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/hook.mp4 -------------------------------------------------------------------------------- /seashell/data/preview/hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/hook.png -------------------------------------------------------------------------------- /seashell/data/preview/ipa.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/ipa.cast -------------------------------------------------------------------------------- /seashell/data/preview/ipa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/ipa.svg -------------------------------------------------------------------------------- /seashell/data/preview/listen.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/listen.cast -------------------------------------------------------------------------------- /seashell/data/preview/listen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/listen.svg -------------------------------------------------------------------------------- /seashell/data/preview/mussel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/mussel.png -------------------------------------------------------------------------------- /seashell/data/preview/patch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/patch.mp4 -------------------------------------------------------------------------------- /seashell/data/preview/player.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/player.cast -------------------------------------------------------------------------------- /seashell/data/preview/player.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/player.svg -------------------------------------------------------------------------------- /seashell/data/preview/safari.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/safari.cast -------------------------------------------------------------------------------- /seashell/data/preview/safari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/safari.svg -------------------------------------------------------------------------------- /seashell/data/preview/sms.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/sms.cast -------------------------------------------------------------------------------- /seashell/data/preview/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/preview/sms.svg -------------------------------------------------------------------------------- /seashell/data/tips/tip1.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/tips/tip1.colors -------------------------------------------------------------------------------- /seashell/data/tips/tip2.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/tips/tip2.colors -------------------------------------------------------------------------------- /seashell/data/tips/tip3.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/data/tips/tip3.colors -------------------------------------------------------------------------------- /seashell/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/lib/__init__.py -------------------------------------------------------------------------------- /seashell/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/lib/config.py -------------------------------------------------------------------------------- /seashell/lib/loot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/lib/loot.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/contacts.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/hook.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/photos.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/safari_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/safari_bookmarks.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/safari_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/safari_history.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/sms.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/unhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/unhook.py -------------------------------------------------------------------------------- /seashell/modules/apple_ios/voicemail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/modules/apple_ios/voicemail.py -------------------------------------------------------------------------------- /seashell/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/utils/__init__.py -------------------------------------------------------------------------------- /seashell/utils/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/utils/rpc.py -------------------------------------------------------------------------------- /seashell/utils/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/utils/ui/__init__.py -------------------------------------------------------------------------------- /seashell/utils/ui/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/utils/ui/banner.py -------------------------------------------------------------------------------- /seashell/utils/ui/tip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/seashell/utils/ui/tip.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EntySec/SeaShell/HEAD/setup.py --------------------------------------------------------------------------------