gitextract_j8lfqr1u/ ├── .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.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 ├── 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