├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql-analysis.yml │ └── pypi.yml ├── .gitignore ├── .python-version ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── agent ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── android │ │ ├── clipboard.ts │ │ ├── filesystem.ts │ │ ├── general.ts │ │ ├── heap.ts │ │ ├── hooking.ts │ │ ├── intent.ts │ │ ├── keystore.ts │ │ ├── lib │ │ │ ├── intentUtils.ts │ │ │ ├── interfaces.ts │ │ │ ├── libjava.ts │ │ │ └── types.ts │ │ ├── monitor.ts │ │ ├── pinning.ts │ │ ├── proxy.ts │ │ ├── root.ts │ │ ├── shell.ts │ │ └── userinterface.ts │ ├── generic │ │ ├── custom.ts │ │ ├── environment.ts │ │ ├── http.ts │ │ ├── memory.ts │ │ └── ping.ts │ ├── index.ts │ ├── ios │ │ ├── binary.ts │ │ ├── binarycookies.ts │ │ ├── bundles.ts │ │ ├── credentialstorage.ts │ │ ├── crypto.ts │ │ ├── filesystem.ts │ │ ├── heap.ts │ │ ├── hooking.ts │ │ ├── jailbreak.ts │ │ ├── keychain.ts │ │ ├── lib │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ ├── interfaces.ts │ │ │ ├── libobjc.ts │ │ │ └── types.ts │ │ ├── nsuserdefaults.ts │ │ ├── pasteboard.ts │ │ ├── pinning.ts │ │ ├── plist.ts │ │ └── userinterface.ts │ ├── lib │ │ ├── color.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── interfaces.ts │ │ └── jobs.ts │ └── rpc │ │ ├── android.ts │ │ ├── environment.ts │ │ ├── ios.ts │ │ ├── jobs.ts │ │ ├── memory.ts │ │ └── other.ts ├── tsconfig.json └── tslint.json ├── images ├── android_ls.png ├── android_ssl_pinning_bypass.png ├── api.png ├── frida_logo.png ├── ios_keychain.png ├── ios_ls.png ├── ios_ssl_pinning_bypass.png ├── objection.png └── sqlite_example.png ├── objection ├── __init__.py ├── api │ ├── __init__.py │ ├── app.py │ ├── rpc.py │ └── script.py ├── commands │ ├── __init__.py │ ├── android │ │ ├── __init__.py │ │ ├── clipboard.py │ │ ├── command.py │ │ ├── general.py │ │ ├── generate.py │ │ ├── heap.py │ │ ├── hooking.py │ │ ├── intents.py │ │ ├── keystore.py │ │ ├── monitor.py │ │ ├── pinning.py │ │ ├── proxy.py │ │ └── root.py │ ├── command_history.py │ ├── custom.py │ ├── device.py │ ├── filemanager.py │ ├── frida_commands.py │ ├── http.py │ ├── ios │ │ ├── __init__.py │ │ ├── binary.py │ │ ├── bundles.py │ │ ├── cookies.py │ │ ├── generate.py │ │ ├── heap.py │ │ ├── hooking.py │ │ ├── jailbreak.py │ │ ├── keychain.py │ │ ├── monitor.py │ │ ├── nsurlcredentialstorage.py │ │ ├── nsuserdefaults.py │ │ ├── pasteboard.py │ │ ├── pinning.py │ │ └── plist.py │ ├── jobs.py │ ├── memory.py │ ├── mobile_packages.py │ ├── plugin_manager.py │ ├── sqlite.py │ └── ui.py ├── console │ ├── __init__.py │ ├── cli.py │ ├── commands.py │ ├── completer.py │ ├── helpfiles │ │ ├── !.txt │ │ ├── android.clipboard.monitor.txt │ │ ├── android.clipboard.txt │ │ ├── android.heap.search.instances.txt │ │ ├── android.hooking.list.activities.txt │ │ ├── android.hooking.list.class_methods.txt │ │ ├── android.hooking.list.classes.txt │ │ ├── android.hooking.list.receivers.txt │ │ ├── android.hooking.list.services.txt │ │ ├── android.hooking.list.txt │ │ ├── android.hooking.search.classes.txt │ │ ├── android.hooking.search.methods.txt │ │ ├── android.hooking.search.txt │ │ ├── android.hooking.set.return_value.txt │ │ ├── android.hooking.txt │ │ ├── android.hooking.watch.class.txt │ │ ├── android.hooking.watch.class_method.txt │ │ ├── android.hooking.watch.txt │ │ ├── android.intent.implicit_intents.txt │ │ ├── android.intent.launch_activity.txt │ │ ├── android.intent.launch_service.txt │ │ ├── android.intent.txt │ │ ├── android.keystore.clear.txt │ │ ├── android.keystore.detail.txt │ │ ├── android.keystore.list.txt │ │ ├── android.keystore.txt │ │ ├── android.keystore.watch.txt │ │ ├── android.root.disable.txt │ │ ├── android.root.simulate.txt │ │ ├── android.shell_exec.txt │ │ ├── android.sslpinning.disable.txt │ │ ├── android.sslpinning.txt │ │ ├── android.txt │ │ ├── android.ui.FLAG_SECURE.txt │ │ ├── android.ui.screenshot.txt │ │ ├── cd.txt │ │ ├── env.txt │ │ ├── exit.txt │ │ ├── file.download.txt │ │ ├── file.txt │ │ ├── file.upload.txt │ │ ├── frida.txt │ │ ├── import.txt │ │ ├── ios.bundles.list_bundles.txt │ │ ├── ios.bundles.list_frameworks.txt │ │ ├── ios.bundles.txt │ │ ├── ios.cookies.get.txt │ │ ├── ios.cookies.txt │ │ ├── ios.hooking.list.class_methods.txt │ │ ├── ios.hooking.list.classes.txt │ │ ├── ios.hooking.list.txt │ │ ├── ios.hooking.search.classes.txt │ │ ├── ios.hooking.search.methods.txt │ │ ├── ios.hooking.search.txt │ │ ├── ios.hooking.set.return_value.txt │ │ ├── ios.hooking.set.txt │ │ ├── ios.hooking.txt │ │ ├── ios.hooking.watch.class.txt │ │ ├── ios.hooking.watch.method.txt │ │ ├── ios.hooking.watch.txt │ │ ├── ios.jailbreak.disable.txt │ │ ├── ios.jailbreak.simulate.txt │ │ ├── ios.jailbreak.txt │ │ ├── ios.keychain.add.txt │ │ ├── ios.keychain.clear.txt │ │ ├── ios.keychain.dump.txt │ │ ├── ios.keychain.txt │ │ ├── ios.monitor.crypto.txt │ │ ├── ios.nsuserdefaults.get.txt │ │ ├── ios.nsuserdefaults.txt │ │ ├── ios.pasteboard.monitor.txt │ │ ├── ios.pasteboard.txt │ │ ├── ios.plist.cat.txt │ │ ├── ios.plist.txt │ │ ├── ios.sslpinning.disable.txt │ │ ├── ios.sslpinning.txt │ │ ├── ios.txt │ │ ├── ios.ui.alert.txt │ │ ├── ios.ui.dump.txt │ │ ├── ios.ui.screenshot.txt │ │ ├── ios.ui.touchid_bypass.txt │ │ ├── ios.ui.txt │ │ ├── jobs.kill.txt │ │ ├── jobs.list.txt │ │ ├── jobs.txt │ │ ├── ls.txt │ │ ├── memory.dump.all.txt │ │ ├── memory.dump.from_base.txt │ │ ├── memory.dump.txt │ │ ├── memory.list.exports.txt │ │ ├── memory.list.modules.txt │ │ ├── memory.list.txt │ │ ├── memory.search.txt │ │ ├── memory.txt │ │ ├── memory.write.txt │ │ ├── plugin.load.txt │ │ ├── plugin.txt │ │ ├── pwd.print.txt │ │ ├── pwd.txt │ │ ├── reconnect.txt │ │ ├── rm.txt │ │ ├── sqlite.connect.txt │ │ ├── sqlite.disconnect.txt │ │ ├── sqlite.execute.query.txt │ │ ├── sqlite.execute.schema.txt │ │ ├── sqlite.execute.txt │ │ ├── sqlite.status.txt │ │ ├── sqlite.sync.txt │ │ ├── sqlite.txt │ │ ├── ui.alert.txt │ │ └── ui.txt │ └── repl.py ├── state │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── connection.py │ ├── device.py │ ├── filemanager.py │ └── jobs.py └── utils │ ├── __init__.py │ ├── agent.py │ ├── assets │ ├── javahookmanager.js │ ├── network_security_config.xml │ ├── objchookmanager.js │ └── objection.jks │ ├── helpers.py │ ├── patchers │ ├── __init__.py │ ├── android.py │ ├── base.py │ ├── github.py │ └── ios.py │ ├── plugin.py │ └── update_checker.py ├── plugins ├── README.md ├── api │ ├── __init__.py │ └── index.js ├── flex │ ├── README.md │ ├── __init__.py │ ├── index.js │ ├── libFlex.h │ └── libFlex.m ├── mettle │ ├── README.md │ ├── __init__.py │ └── index.js └── stetho │ ├── README.md │ ├── __init__.py │ └── index.js ├── pyproject.toml ├── tests ├── __init__.py ├── commands │ ├── __init__.py │ ├── android │ │ ├── __init__.py │ │ ├── test_clipboard.py │ │ ├── test_command.py │ │ ├── test_heap.py │ │ ├── test_hooking.py │ │ ├── test_intents.py │ │ ├── test_keystore.py │ │ ├── test_pinning.py │ │ └── test_root.py │ ├── ios │ │ ├── __init__.py │ │ ├── test_bundles.py │ │ ├── test_cookies.py │ │ ├── test_hooking.py │ │ ├── test_jailbreak.py │ │ ├── test_keychain.py │ │ ├── test_nsurlcredentialstorage.py │ │ ├── test_nsuserdefaults.py │ │ ├── test_pasteboard.py │ │ ├── test_pinning.py │ │ └── test_plist.py │ ├── test_command_history.py │ ├── test_device.py │ ├── test_filemanager.py │ ├── test_frida_commands.py │ ├── test_jobs.py │ ├── test_memory.py │ ├── test_mobile_packages.py │ ├── test_plugin_manager.py │ └── test_ui.py ├── console │ ├── __init__.py │ ├── test_cli.py │ ├── test_completer.py │ └── test_repl.py ├── data │ └── plugin │ │ └── __init__.py ├── helpers.py ├── state │ ├── __init__.py │ ├── test_app.py │ └── test_jobs.py └── utils │ ├── __init__.py │ ├── patchers │ ├── __init__.py │ ├── test_android.py │ ├── test_base.py │ ├── test_github.py │ └── test_ios.py │ └── test_helpers.py └── uv.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/README.md -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/README.md -------------------------------------------------------------------------------- /agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/package-lock.json -------------------------------------------------------------------------------- /agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/package.json -------------------------------------------------------------------------------- /agent/src/android/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/clipboard.ts -------------------------------------------------------------------------------- /agent/src/android/filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/filesystem.ts -------------------------------------------------------------------------------- /agent/src/android/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/general.ts -------------------------------------------------------------------------------- /agent/src/android/heap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/heap.ts -------------------------------------------------------------------------------- /agent/src/android/hooking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/hooking.ts -------------------------------------------------------------------------------- /agent/src/android/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/intent.ts -------------------------------------------------------------------------------- /agent/src/android/keystore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/keystore.ts -------------------------------------------------------------------------------- /agent/src/android/lib/intentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/lib/intentUtils.ts -------------------------------------------------------------------------------- /agent/src/android/lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/lib/interfaces.ts -------------------------------------------------------------------------------- /agent/src/android/lib/libjava.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/lib/libjava.ts -------------------------------------------------------------------------------- /agent/src/android/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/lib/types.ts -------------------------------------------------------------------------------- /agent/src/android/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/monitor.ts -------------------------------------------------------------------------------- /agent/src/android/pinning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/pinning.ts -------------------------------------------------------------------------------- /agent/src/android/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/proxy.ts -------------------------------------------------------------------------------- /agent/src/android/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/root.ts -------------------------------------------------------------------------------- /agent/src/android/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/shell.ts -------------------------------------------------------------------------------- /agent/src/android/userinterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/android/userinterface.ts -------------------------------------------------------------------------------- /agent/src/generic/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/generic/custom.ts -------------------------------------------------------------------------------- /agent/src/generic/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/generic/environment.ts -------------------------------------------------------------------------------- /agent/src/generic/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/generic/http.ts -------------------------------------------------------------------------------- /agent/src/generic/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/generic/memory.ts -------------------------------------------------------------------------------- /agent/src/generic/ping.ts: -------------------------------------------------------------------------------- 1 | export const ping = (): boolean => true; 2 | -------------------------------------------------------------------------------- /agent/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/index.ts -------------------------------------------------------------------------------- /agent/src/ios/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/binary.ts -------------------------------------------------------------------------------- /agent/src/ios/binarycookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/binarycookies.ts -------------------------------------------------------------------------------- /agent/src/ios/bundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/bundles.ts -------------------------------------------------------------------------------- /agent/src/ios/credentialstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/credentialstorage.ts -------------------------------------------------------------------------------- /agent/src/ios/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/crypto.ts -------------------------------------------------------------------------------- /agent/src/ios/filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/filesystem.ts -------------------------------------------------------------------------------- /agent/src/ios/heap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/heap.ts -------------------------------------------------------------------------------- /agent/src/ios/hooking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/hooking.ts -------------------------------------------------------------------------------- /agent/src/ios/jailbreak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/jailbreak.ts -------------------------------------------------------------------------------- /agent/src/ios/keychain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/keychain.ts -------------------------------------------------------------------------------- /agent/src/ios/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/lib/constants.ts -------------------------------------------------------------------------------- /agent/src/ios/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/lib/helpers.ts -------------------------------------------------------------------------------- /agent/src/ios/lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/lib/interfaces.ts -------------------------------------------------------------------------------- /agent/src/ios/lib/libobjc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/lib/libobjc.ts -------------------------------------------------------------------------------- /agent/src/ios/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/lib/types.ts -------------------------------------------------------------------------------- /agent/src/ios/nsuserdefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/nsuserdefaults.ts -------------------------------------------------------------------------------- /agent/src/ios/pasteboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/pasteboard.ts -------------------------------------------------------------------------------- /agent/src/ios/pinning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/pinning.ts -------------------------------------------------------------------------------- /agent/src/ios/plist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/plist.ts -------------------------------------------------------------------------------- /agent/src/ios/userinterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/ios/userinterface.ts -------------------------------------------------------------------------------- /agent/src/lib/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/lib/color.ts -------------------------------------------------------------------------------- /agent/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/lib/constants.ts -------------------------------------------------------------------------------- /agent/src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/lib/helpers.ts -------------------------------------------------------------------------------- /agent/src/lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/lib/interfaces.ts -------------------------------------------------------------------------------- /agent/src/lib/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/lib/jobs.ts -------------------------------------------------------------------------------- /agent/src/rpc/android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/rpc/android.ts -------------------------------------------------------------------------------- /agent/src/rpc/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/rpc/environment.ts -------------------------------------------------------------------------------- /agent/src/rpc/ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/rpc/ios.ts -------------------------------------------------------------------------------- /agent/src/rpc/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/rpc/jobs.ts -------------------------------------------------------------------------------- /agent/src/rpc/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/rpc/memory.ts -------------------------------------------------------------------------------- /agent/src/rpc/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/src/rpc/other.ts -------------------------------------------------------------------------------- /agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/tsconfig.json -------------------------------------------------------------------------------- /agent/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/agent/tslint.json -------------------------------------------------------------------------------- /images/android_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/android_ls.png -------------------------------------------------------------------------------- /images/android_ssl_pinning_bypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/android_ssl_pinning_bypass.png -------------------------------------------------------------------------------- /images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/api.png -------------------------------------------------------------------------------- /images/frida_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/frida_logo.png -------------------------------------------------------------------------------- /images/ios_keychain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/ios_keychain.png -------------------------------------------------------------------------------- /images/ios_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/ios_ls.png -------------------------------------------------------------------------------- /images/ios_ssl_pinning_bypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/ios_ssl_pinning_bypass.png -------------------------------------------------------------------------------- /images/objection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/objection.png -------------------------------------------------------------------------------- /images/sqlite_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/images/sqlite_example.png -------------------------------------------------------------------------------- /objection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/__init__.py -------------------------------------------------------------------------------- /objection/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/api/app.py -------------------------------------------------------------------------------- /objection/api/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/api/rpc.py -------------------------------------------------------------------------------- /objection/api/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/api/script.py -------------------------------------------------------------------------------- /objection/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/commands/android/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/commands/android/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/clipboard.py -------------------------------------------------------------------------------- /objection/commands/android/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/command.py -------------------------------------------------------------------------------- /objection/commands/android/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/general.py -------------------------------------------------------------------------------- /objection/commands/android/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/generate.py -------------------------------------------------------------------------------- /objection/commands/android/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/heap.py -------------------------------------------------------------------------------- /objection/commands/android/hooking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/hooking.py -------------------------------------------------------------------------------- /objection/commands/android/intents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/intents.py -------------------------------------------------------------------------------- /objection/commands/android/keystore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/keystore.py -------------------------------------------------------------------------------- /objection/commands/android/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/monitor.py -------------------------------------------------------------------------------- /objection/commands/android/pinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/pinning.py -------------------------------------------------------------------------------- /objection/commands/android/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/proxy.py -------------------------------------------------------------------------------- /objection/commands/android/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/android/root.py -------------------------------------------------------------------------------- /objection/commands/command_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/command_history.py -------------------------------------------------------------------------------- /objection/commands/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/custom.py -------------------------------------------------------------------------------- /objection/commands/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/device.py -------------------------------------------------------------------------------- /objection/commands/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/filemanager.py -------------------------------------------------------------------------------- /objection/commands/frida_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/frida_commands.py -------------------------------------------------------------------------------- /objection/commands/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/http.py -------------------------------------------------------------------------------- /objection/commands/ios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/commands/ios/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/binary.py -------------------------------------------------------------------------------- /objection/commands/ios/bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/bundles.py -------------------------------------------------------------------------------- /objection/commands/ios/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/cookies.py -------------------------------------------------------------------------------- /objection/commands/ios/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/generate.py -------------------------------------------------------------------------------- /objection/commands/ios/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/heap.py -------------------------------------------------------------------------------- /objection/commands/ios/hooking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/hooking.py -------------------------------------------------------------------------------- /objection/commands/ios/jailbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/jailbreak.py -------------------------------------------------------------------------------- /objection/commands/ios/keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/keychain.py -------------------------------------------------------------------------------- /objection/commands/ios/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/monitor.py -------------------------------------------------------------------------------- /objection/commands/ios/nsurlcredentialstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/nsurlcredentialstorage.py -------------------------------------------------------------------------------- /objection/commands/ios/nsuserdefaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/nsuserdefaults.py -------------------------------------------------------------------------------- /objection/commands/ios/pasteboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/pasteboard.py -------------------------------------------------------------------------------- /objection/commands/ios/pinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/pinning.py -------------------------------------------------------------------------------- /objection/commands/ios/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ios/plist.py -------------------------------------------------------------------------------- /objection/commands/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/jobs.py -------------------------------------------------------------------------------- /objection/commands/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/memory.py -------------------------------------------------------------------------------- /objection/commands/mobile_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/mobile_packages.py -------------------------------------------------------------------------------- /objection/commands/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/plugin_manager.py -------------------------------------------------------------------------------- /objection/commands/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/sqlite.py -------------------------------------------------------------------------------- /objection/commands/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/commands/ui.py -------------------------------------------------------------------------------- /objection/console/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/console/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/cli.py -------------------------------------------------------------------------------- /objection/console/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/commands.py -------------------------------------------------------------------------------- /objection/console/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/completer.py -------------------------------------------------------------------------------- /objection/console/helpfiles/!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/!.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.clipboard.monitor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.clipboard.monitor.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.clipboard.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with the Android Clipboard. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/android.heap.search.instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.heap.search.instances.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.list.activities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.list.activities.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.list.class_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.list.class_methods.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.list.classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.list.classes.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.list.receivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.list.receivers.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.list.services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.list.services.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.list.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.search.classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.search.classes.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.search.methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.search.methods.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.search.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.set.return_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.set.return_value.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to hook Android Java methods. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.watch.class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.watch.class.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.watch.class_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.watch.class_method.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.hooking.watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.hooking.watch.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.intent.implicit_intents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.intent.implicit_intents.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.intent.launch_activity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.intent.launch_activity.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.intent.launch_service.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.intent.launch_service.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.intent.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with Android Intents. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/android.keystore.clear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.keystore.clear.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.keystore.detail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.keystore.detail.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.keystore.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.keystore.list.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.keystore.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with Android KeyStore. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/android.keystore.watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.keystore.watch.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.root.disable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.root.disable.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.root.simulate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.root.simulate.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.shell_exec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.shell_exec.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.sslpinning.disable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.sslpinning.disable.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.sslpinning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.sslpinning.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.ui.FLAG_SECURE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.ui.FLAG_SECURE.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/android.ui.screenshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/android.ui.screenshot.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/cd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/cd.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/env.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/exit.txt: -------------------------------------------------------------------------------- 1 | Performs cleanups operations and quits the objection REPL. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/file.download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/file.download.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/file.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/file.upload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/file.upload.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/frida.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/frida.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/import.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/import.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.bundles.list_bundles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.bundles.list_bundles.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.bundles.list_frameworks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.bundles.list_frameworks.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.bundles.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with iOS bundles. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.cookies.get.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.cookies.get.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.cookies.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with iOS shared cookies. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.list.class_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.list.class_methods.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.list.classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.list.classes.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.list.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.search.classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.search.classes.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.search.methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.search.methods.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.search.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.set.return_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.set.return_value.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.set.txt: -------------------------------------------------------------------------------- 1 | Sets various bits of hooking related information. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.watch.class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.watch.class.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.watch.method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.watch.method.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.hooking.watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.hooking.watch.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.jailbreak.disable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.jailbreak.disable.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.jailbreak.simulate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.jailbreak.simulate.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.jailbreak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.jailbreak.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.keychain.add.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.keychain.add.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.keychain.clear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.keychain.clear.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.keychain.dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.keychain.dump.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.keychain.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with the iOS keychain. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.monitor.crypto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.monitor.crypto.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.nsuserdefaults.get.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.nsuserdefaults.get.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.nsuserdefaults.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with the iOS NSUserDefaults class. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.pasteboard.monitor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.pasteboard.monitor.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.pasteboard.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with the iOS pasteboard. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.plist.cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.plist.cat.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.plist.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with iOS Plist entries. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.sslpinning.disable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.sslpinning.disable.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.sslpinning.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with iOS SSL pinning related calls. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.ui.alert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.ui.alert.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.ui.dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.ui.dump.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.ui.screenshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.ui.screenshot.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.ui.touchid_bypass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.ui.touchid_bypass.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ios.ui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ios.ui.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/jobs.kill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/jobs.kill.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/jobs.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/jobs.list.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/jobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/jobs.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ls.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.dump.all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.dump.all.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.dump.from_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.dump.from_base.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.dump.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to dump process memory 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.list.exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.list.exports.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.list.modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.list.modules.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.list.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.search.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/memory.write.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/memory.write.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/plugin.load.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/plugin.load.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/plugin.txt: -------------------------------------------------------------------------------- 1 | Contains subcommands to work with objection plugins. 2 | -------------------------------------------------------------------------------- /objection/console/helpfiles/pwd.print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/pwd.print.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/pwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/pwd.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/reconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/reconnect.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/rm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/rm.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.connect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.connect.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.disconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.disconnect.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.execute.query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.execute.query.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.execute.schema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.execute.schema.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.execute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.execute.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.status.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.sync.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/sqlite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/sqlite.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ui.alert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ui.alert.txt -------------------------------------------------------------------------------- /objection/console/helpfiles/ui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/helpfiles/ui.txt -------------------------------------------------------------------------------- /objection/console/repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/console/repl.py -------------------------------------------------------------------------------- /objection/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/state/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/state/api.py -------------------------------------------------------------------------------- /objection/state/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/state/app.py -------------------------------------------------------------------------------- /objection/state/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/state/connection.py -------------------------------------------------------------------------------- /objection/state/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/state/device.py -------------------------------------------------------------------------------- /objection/state/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/state/filemanager.py -------------------------------------------------------------------------------- /objection/state/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/state/jobs.py -------------------------------------------------------------------------------- /objection/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/__init__.py -------------------------------------------------------------------------------- /objection/utils/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/agent.py -------------------------------------------------------------------------------- /objection/utils/assets/javahookmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/assets/javahookmanager.js -------------------------------------------------------------------------------- /objection/utils/assets/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/assets/network_security_config.xml -------------------------------------------------------------------------------- /objection/utils/assets/objchookmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/assets/objchookmanager.js -------------------------------------------------------------------------------- /objection/utils/assets/objection.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/assets/objection.jks -------------------------------------------------------------------------------- /objection/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/helpers.py -------------------------------------------------------------------------------- /objection/utils/patchers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objection/utils/patchers/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/patchers/android.py -------------------------------------------------------------------------------- /objection/utils/patchers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/patchers/base.py -------------------------------------------------------------------------------- /objection/utils/patchers/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/patchers/github.py -------------------------------------------------------------------------------- /objection/utils/patchers/ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/patchers/ios.py -------------------------------------------------------------------------------- /objection/utils/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/plugin.py -------------------------------------------------------------------------------- /objection/utils/update_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/objection/utils/update_checker.py -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/api/__init__.py -------------------------------------------------------------------------------- /plugins/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/api/index.js -------------------------------------------------------------------------------- /plugins/flex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/flex/README.md -------------------------------------------------------------------------------- /plugins/flex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/flex/__init__.py -------------------------------------------------------------------------------- /plugins/flex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/flex/index.js -------------------------------------------------------------------------------- /plugins/flex/libFlex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/flex/libFlex.h -------------------------------------------------------------------------------- /plugins/flex/libFlex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/flex/libFlex.m -------------------------------------------------------------------------------- /plugins/mettle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/mettle/README.md -------------------------------------------------------------------------------- /plugins/mettle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/mettle/__init__.py -------------------------------------------------------------------------------- /plugins/mettle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/mettle/index.js -------------------------------------------------------------------------------- /plugins/stetho/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/stetho/README.md -------------------------------------------------------------------------------- /plugins/stetho/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/stetho/__init__.py -------------------------------------------------------------------------------- /plugins/stetho/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/plugins/stetho/index.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/android/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/android/test_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_clipboard.py -------------------------------------------------------------------------------- /tests/commands/android/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_command.py -------------------------------------------------------------------------------- /tests/commands/android/test_heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_heap.py -------------------------------------------------------------------------------- /tests/commands/android/test_hooking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_hooking.py -------------------------------------------------------------------------------- /tests/commands/android/test_intents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_intents.py -------------------------------------------------------------------------------- /tests/commands/android/test_keystore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_keystore.py -------------------------------------------------------------------------------- /tests/commands/android/test_pinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_pinning.py -------------------------------------------------------------------------------- /tests/commands/android/test_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/android/test_root.py -------------------------------------------------------------------------------- /tests/commands/ios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/ios/test_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_bundles.py -------------------------------------------------------------------------------- /tests/commands/ios/test_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_cookies.py -------------------------------------------------------------------------------- /tests/commands/ios/test_hooking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_hooking.py -------------------------------------------------------------------------------- /tests/commands/ios/test_jailbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_jailbreak.py -------------------------------------------------------------------------------- /tests/commands/ios/test_keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_keychain.py -------------------------------------------------------------------------------- /tests/commands/ios/test_nsurlcredentialstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_nsurlcredentialstorage.py -------------------------------------------------------------------------------- /tests/commands/ios/test_nsuserdefaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_nsuserdefaults.py -------------------------------------------------------------------------------- /tests/commands/ios/test_pasteboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_pasteboard.py -------------------------------------------------------------------------------- /tests/commands/ios/test_pinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_pinning.py -------------------------------------------------------------------------------- /tests/commands/ios/test_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/ios/test_plist.py -------------------------------------------------------------------------------- /tests/commands/test_command_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_command_history.py -------------------------------------------------------------------------------- /tests/commands/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_device.py -------------------------------------------------------------------------------- /tests/commands/test_filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_filemanager.py -------------------------------------------------------------------------------- /tests/commands/test_frida_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_frida_commands.py -------------------------------------------------------------------------------- /tests/commands/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_jobs.py -------------------------------------------------------------------------------- /tests/commands/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_memory.py -------------------------------------------------------------------------------- /tests/commands/test_mobile_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_mobile_packages.py -------------------------------------------------------------------------------- /tests/commands/test_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_plugin_manager.py -------------------------------------------------------------------------------- /tests/commands/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/commands/test_ui.py -------------------------------------------------------------------------------- /tests/console/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/console/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/console/test_cli.py -------------------------------------------------------------------------------- /tests/console/test_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/console/test_completer.py -------------------------------------------------------------------------------- /tests/console/test_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/console/test_repl.py -------------------------------------------------------------------------------- /tests/data/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/data/plugin/__init__.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/state/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/state/test_app.py -------------------------------------------------------------------------------- /tests/state/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/state/test_jobs.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/patchers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/patchers/test_android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/utils/patchers/test_android.py -------------------------------------------------------------------------------- /tests/utils/patchers/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/utils/patchers/test_base.py -------------------------------------------------------------------------------- /tests/utils/patchers/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/utils/patchers/test_github.py -------------------------------------------------------------------------------- /tests/utils/patchers/test_ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/utils/patchers/test_ios.py -------------------------------------------------------------------------------- /tests/utils/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/tests/utils/test_helpers.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/objection/HEAD/uv.lock --------------------------------------------------------------------------------