├── .dockerignore ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── SUPPORT.md ├── codeql-config.yml └── workflows │ ├── auto-comment.yml │ ├── codeql-analysis.yml │ ├── docker-latest.yml │ ├── docker-release.yml │ ├── docker-test.yml │ ├── mobsf-test.yml │ ├── python-publish.yml │ └── supply_chain.yml ├── .gitignore ├── .gitmodules ├── .sonarcloud.properties ├── Dockerfile ├── LICENSE ├── LICENSES ├── AdminLTE_theme.txt ├── AntiEmulator.txt ├── FSecureLabs_frida_scripts.txt ├── IP2LOCATION LITE DATA.txt ├── Rootcloak.txt ├── ac-pm_tools.txt ├── androguard.txt ├── apkinspector.txt ├── apksigner.txt ├── backsmali.txt ├── class-dump-z.txt ├── droidmon.txt ├── exodus-core.txt ├── frida.txt ├── ios_binary_analysis_rules.txt ├── jadx.txt ├── maltrail_blacklist.txt └── vd2svg.txt ├── README.md ├── docker ├── docker-compose.yml ├── docker-compose_swarm.yml └── nginx.conf ├── manage.py ├── mobsf ├── DynamicAnalyzer │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── models.py │ ├── tests.py │ ├── tools │ │ ├── __init__.py │ │ ├── apk_patcher.py │ │ ├── frida_scripts │ │ │ ├── android │ │ │ │ ├── auxiliary │ │ │ │ │ ├── class_trace.js │ │ │ │ │ ├── get_loaded_classes.js │ │ │ │ │ ├── get_methods.js │ │ │ │ │ ├── search_class_pattern.js │ │ │ │ │ ├── string_catch.js │ │ │ │ │ └── string_compare.js │ │ │ │ ├── default │ │ │ │ │ ├── api_monitor.js │ │ │ │ │ ├── debugger_check_bypass.js │ │ │ │ │ ├── dump_clipboard.js │ │ │ │ │ ├── root_bypass.js │ │ │ │ │ └── ssl_pinning_bypass.js │ │ │ │ ├── others │ │ │ │ │ ├── app-environment.js │ │ │ │ │ ├── audit-webview.js │ │ │ │ │ ├── bypass-adb-detection.js │ │ │ │ │ ├── bypass-emulator-detection.js │ │ │ │ │ ├── bypass-react-native-emulator-detection.js │ │ │ │ │ ├── crypto-aes-key.js │ │ │ │ │ ├── crypto-dump-keystore.js │ │ │ │ │ ├── crypto-keyguard-credential-intent.js │ │ │ │ │ ├── crypto-trace-cipher.js │ │ │ │ │ ├── crypto-trace-keygenparameterspec.js │ │ │ │ │ ├── crypto-trace-keystore.js │ │ │ │ │ ├── crypto-trace-secretkeyfactory.js │ │ │ │ │ ├── default.js │ │ │ │ │ ├── detect-ssl-pinning.js │ │ │ │ │ ├── device-android-id.js │ │ │ │ │ ├── device-environment.js │ │ │ │ │ ├── dump-inputstream.js │ │ │ │ │ ├── dump-intent.js │ │ │ │ │ ├── dump-library-exports.js │ │ │ │ │ ├── dump-okhttp-calls.js │ │ │ │ │ ├── helper-android-change-sdk-version.js │ │ │ │ │ ├── helper-android-spoof-gps.js │ │ │ │ │ ├── helper-bypass-method.js │ │ │ │ │ ├── helper-convert.js │ │ │ │ │ ├── helper-early-java.js │ │ │ │ │ ├── helper-heap-search.js │ │ │ │ │ ├── helper-jni-hook-by-address.js │ │ │ │ │ ├── helper-trace-jni.js │ │ │ │ │ ├── hook-billing.js │ │ │ │ │ ├── hook-constructor.js │ │ │ │ │ ├── hook-java-reflection.js │ │ │ │ │ ├── hook-json.js │ │ │ │ │ ├── hook-logging.js │ │ │ │ │ ├── ssl-bypass-flutter.js │ │ │ │ │ ├── ssl-pinning-bypass.js │ │ │ │ │ ├── stop-app-terminate.js │ │ │ │ │ ├── trace-bluetooth.js │ │ │ │ │ ├── trace-file.js │ │ │ │ │ ├── trace-intent.js │ │ │ │ │ ├── trace-javascript-interface.js │ │ │ │ │ ├── trace-shared-preference.js │ │ │ │ │ ├── ui-deeplink-trace.js │ │ │ │ │ ├── ui-fingerprint-bypass-via-exception-handling.js │ │ │ │ │ ├── ui-fingerprint-bypass.js │ │ │ │ │ ├── ui-flag-secure-bypass.js │ │ │ │ │ └── ui-webview-enable-debugging.js │ │ │ │ └── rpc │ │ │ │ │ └── get-hooks.js │ │ │ └── ios │ │ │ │ ├── auxiliary │ │ │ │ ├── class-trace.js │ │ │ │ ├── find-app-classes-methods.js │ │ │ │ ├── find-app-classes.js │ │ │ │ ├── find-specific-method.js │ │ │ │ ├── get-methods.js │ │ │ │ ├── search-class-pattern.js │ │ │ │ ├── string-capture.js │ │ │ │ └── string-compare.js │ │ │ │ ├── default │ │ │ │ └── jailbreak_bypass.js │ │ │ │ ├── dump │ │ │ │ ├── cookies.js │ │ │ │ ├── crypto.js │ │ │ │ ├── data-dir.js │ │ │ │ ├── file-access.js │ │ │ │ ├── json.js │ │ │ │ ├── keychain.js │ │ │ │ ├── network.js │ │ │ │ ├── nslog.js │ │ │ │ ├── nsurlcredentialstorage.js │ │ │ │ ├── nsuserdefaults.js │ │ │ │ ├── pasteboard.js │ │ │ │ ├── sqlite.js │ │ │ │ └── text-inputs.js │ │ │ │ ├── others │ │ │ │ ├── app-environment.js │ │ │ │ ├── bypass-ssl-flutter.js │ │ │ │ ├── bypass-ssl-ios10.js │ │ │ │ ├── bypass-ssl-ios11.js │ │ │ │ ├── bypass-ssl-ios12.js │ │ │ │ ├── bypass-ssl-ios13.js │ │ │ │ ├── bypass-ssl-trustkit.js │ │ │ │ ├── check-keyboard-cache.js │ │ │ │ ├── check-keyboard-thridparty.js │ │ │ │ ├── device-environment.js │ │ │ │ ├── dump-ios-url-scheme.js │ │ │ │ ├── find-all-classes-methods.js │ │ │ │ ├── find-all-classes.js │ │ │ │ ├── flutter-trace-function.js │ │ │ │ ├── get-exports.js │ │ │ │ ├── get-modules.js │ │ │ │ ├── helper-backtrace.js │ │ │ │ ├── helper-get-memory-address-of-class.js │ │ │ │ ├── helper-ios-change-system-version.js │ │ │ │ ├── helper-ios-spoof-gps.js │ │ │ │ ├── helper-memory-hex-dump.js │ │ │ │ ├── helper-method-hooking.js │ │ │ │ ├── helper-read-plist-file.js │ │ │ │ ├── helper-replace-exported-method.js │ │ │ │ ├── helper-show-modify-function-arguments.js │ │ │ │ ├── helper-show-modify-method-return-value.js │ │ │ │ ├── helper-ssh-commands.js │ │ │ │ ├── helper-view-and-modify-method-registers.js │ │ │ │ ├── helper-view-method-arguments.js │ │ │ │ ├── trace-bluetooth.js │ │ │ │ ├── ui-enable-webinspector.js │ │ │ │ ├── ui-ios-alert.js │ │ │ │ ├── ui-ios-biometric-bypass.js │ │ │ │ ├── ui-send-url-scheme.js │ │ │ │ ├── ui-trace.js │ │ │ │ ├── ui-view-trace.js │ │ │ │ └── ui-webview-trace.js │ │ │ │ └── rpc │ │ │ │ └── get-app-container.js │ │ ├── onDevice │ │ │ └── xposed │ │ │ │ ├── ClipDump.apk │ │ │ │ ├── Xposed.apk │ │ │ │ ├── XposedInstaller_3.1.5.apk │ │ │ │ └── modules │ │ │ │ ├── AndroidBluePill.apk │ │ │ │ ├── Droidmon.apk │ │ │ │ ├── JustTrustMe.apk │ │ │ │ ├── com.devadvance.rootcloak2_v18_c43b61.apk │ │ │ │ ├── hooks.json │ │ │ │ ├── mobi.acpm.proxyon_v1_419b04.apk │ │ │ │ └── mobi.acpm.sslunpinning_v2_37f44f.apk │ │ └── webproxy.py │ └── views │ │ ├── __init__.py │ │ ├── android │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── dynamic_analyzer.py │ │ ├── environment.py │ │ ├── frida_core.py │ │ ├── frida_scripts.py │ │ ├── frida_server_download.py │ │ ├── operations.py │ │ ├── report.py │ │ ├── tests_common.py │ │ ├── tests_frida.py │ │ ├── tests_tls.py │ │ └── tests_xposed.py │ │ ├── common │ │ ├── __init__.py │ │ ├── device.py │ │ ├── frida │ │ │ ├── __init__.py │ │ │ ├── bridge_loader.py │ │ │ └── views.py │ │ └── shared.py │ │ └── ios │ │ ├── analysis.py │ │ ├── corellium_apis.py │ │ ├── corellium_instance.py │ │ ├── corellium_ssh.py │ │ ├── dynamic_analyzer.py │ │ ├── frida_auxiliary_scripts.py │ │ ├── frida_core.py │ │ ├── report.py │ │ └── tests_frida.py ├── MalwareAnalyzer │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── tests.py │ └── views │ │ ├── MalwareDomainCheck.py │ │ ├── Trackers.py │ │ ├── VirusTotal.py │ │ ├── __init__.py │ │ └── android │ │ ├── apkid.py │ │ ├── behaviour_analysis.py │ │ ├── permissions.py │ │ └── rules │ │ └── behaviour_rules.yaml ├── MobSF │ ├── __init__.py │ ├── forms.py │ ├── init.py │ ├── management │ │ └── commands │ │ │ ├── clear_tasks.py │ │ │ └── create_roles.py │ ├── models.py │ ├── security.py │ ├── settings.py │ ├── tools_download.py │ ├── urls.py │ ├── utils.py │ ├── views │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_android_dynamic_analysis.py │ │ │ ├── api_ios_dynamic_analysis.py │ │ │ ├── api_middleware.py │ │ │ └── api_static_analysis.py │ │ ├── apk_downloader.py │ │ ├── authentication.py │ │ ├── authorization.py │ │ ├── helpers.py │ │ ├── home.py │ │ ├── saml2.py │ │ └── scanning.py │ └── wsgi.py ├── StaticAnalyzer │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── models.py │ ├── tests.py │ ├── tools │ │ ├── __init__.py │ │ ├── androguard4 │ │ │ ├── apk.py │ │ │ ├── apkinspector │ │ │ │ ├── extract.py │ │ │ │ ├── headers.py │ │ │ │ └── helpers.py │ │ │ ├── axml.py │ │ │ ├── resources │ │ │ │ ├── public.py │ │ │ │ └── public.xml │ │ │ ├── types.py │ │ │ └── util.py │ │ ├── apksigner.jar │ │ ├── apktool_2.10.0.jar │ │ ├── baksmali-3.0.8-dev-fat.jar │ │ ├── bundletool-all-1.17.2.jar │ │ ├── ios │ │ │ ├── CgbiPngFix │ │ │ │ ├── CgbiPngFix.exe │ │ │ │ ├── CgbiPngFix_amd64 │ │ │ │ └── CgbiPngFix_arm64 │ │ │ ├── class-dump │ │ │ ├── class-dump-swift │ │ │ └── jtool.ELF64 │ │ ├── strings.py │ │ └── vd2svg-0.4.4.jar │ └── views │ │ ├── __init__.py │ │ ├── android │ │ ├── __init__.py │ │ ├── aapt.py │ │ ├── apk.py │ │ ├── app.py │ │ ├── cert_analysis.py │ │ ├── code_analysis.py │ │ ├── converter.py │ │ ├── db_interaction.py │ │ ├── icon_analysis.py │ │ ├── jar_aar.py │ │ ├── kb │ │ │ ├── android_manifest_desc.py │ │ │ └── dvm_permissions.py │ │ ├── manifest_analysis.py │ │ ├── manifest_utils.py │ │ ├── network_security.py │ │ ├── playstore.py │ │ ├── rules │ │ │ ├── android_apis.yaml │ │ │ ├── android_niap.yaml │ │ │ ├── android_permissions.yaml │ │ │ └── android_rules.yaml │ │ ├── sbom_analysis.py │ │ ├── so.py │ │ ├── static_analyzer.py │ │ ├── strings.py │ │ ├── views │ │ │ ├── find.py │ │ │ ├── manifest_view.py │ │ │ ├── source_tree.py │ │ │ └── view_source.py │ │ └── xapk.py │ │ ├── common │ │ ├── __init__.py │ │ ├── a.py │ │ ├── appsec.py │ │ ├── async_task.py │ │ ├── binary │ │ │ ├── elf.py │ │ │ ├── lib_analysis.py │ │ │ ├── macho.py │ │ │ └── strings.py │ │ ├── entropy.py │ │ ├── firebase.py │ │ ├── pdf.py │ │ ├── shared_func.py │ │ └── suppression.py │ │ ├── comparer.py │ │ ├── ios │ │ ├── __init__.py │ │ ├── app_transport_security.py │ │ ├── appstore.py │ │ ├── binary_analysis.py │ │ ├── binary_rule_matcher.py │ │ ├── classdump.py │ │ ├── code_analysis.py │ │ ├── db_interaction.py │ │ ├── dylib.py │ │ ├── file_analysis.py │ │ ├── icon_analysis.py │ │ ├── ipa.py │ │ ├── kb │ │ │ └── permission_analysis.py │ │ ├── plist_analysis.py │ │ ├── rules │ │ │ ├── __init__.py │ │ │ ├── ios_apis.yaml │ │ │ ├── ipa_rules.py │ │ │ ├── objective_c_rules.yaml │ │ │ └── swift_rules.yaml │ │ ├── static_analyzer.py │ │ ├── strings.py │ │ └── views │ │ │ └── view_source.py │ │ ├── sast_engine.py │ │ └── windows │ │ ├── __init__.py │ │ ├── db_interaction.py │ │ └── windows.py ├── __init__.py ├── __main__.py ├── install │ ├── __init__.py │ └── windows │ │ ├── __init__.py │ │ ├── config.txt │ │ ├── readme.md │ │ ├── rpc_client.py │ │ └── setup.py ├── signatures │ ├── IP2LOCATION-LITE-DB5.IPV6.BIN │ ├── exodus_trackers │ ├── maltrail-malware-domains.txt │ └── malwaredomainlist ├── static │ ├── adminlte │ │ ├── dashboard │ │ │ ├── css │ │ │ │ ├── adminlte.min.css │ │ │ │ └── adminlte.min.css.map │ │ │ └── js │ │ │ │ ├── adminlte.min.js │ │ │ │ └── adminlte.min.js.map │ │ └── plugins │ │ │ ├── bootstrap │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.bundle.min.js.map │ │ │ ├── datatables-bs4 │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ └── dataTables.bootstrap4.min.js │ │ │ ├── datatables │ │ │ └── jquery.dataTables.min.js │ │ │ ├── fontawesome-free │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.min.js │ │ │ ├── overlayScrollbars │ │ │ ├── css │ │ │ │ └── OverlayScrollbars.min.css │ │ │ └── js │ │ │ │ └── jquery.overlayScrollbars.min.js │ │ │ └── sweetalert2 │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ ├── amcharts │ │ ├── animated.js │ │ ├── core.js │ │ ├── maps.js │ │ └── worldIndiaLow.js │ ├── chartjs │ │ ├── Chart.bundle.js │ │ └── chartjs-gauge.js │ ├── codemirror │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── javascript-lint.js │ │ ├── javascript.js │ │ ├── jshint.js │ │ ├── lint.css │ │ └── lint.js │ ├── datatables │ │ ├── css │ │ │ └── datatables.combined.min.css │ │ └── js │ │ │ ├── datatables.combined.min.js │ │ │ ├── pdfmake.min.js │ │ │ ├── pdfmake.min.js.map │ │ │ └── vfs_fonts.js │ ├── enlighterjs │ │ ├── enlighterjs.enlighter.min.css │ │ ├── enlighterjs.min.css │ │ └── enlighterjs.min.js │ ├── fonts │ │ ├── Open_Sans │ │ │ ├── LICENSE.txt │ │ │ └── OpenSans-Regular.ttf │ │ └── Oswald │ │ │ ├── OFL.txt │ │ │ └── Oswald-Regular.ttf │ ├── img │ │ ├── favicon.ico │ │ ├── loading.jpg │ │ ├── mobsf_icon.png │ │ ├── mobsf_logo.png │ │ └── no_icon.png │ ├── jqueryknob │ │ └── jquery.knob.min.js │ ├── jsTree │ │ ├── custom.css │ │ ├── jstree.min.js │ │ └── themes │ │ │ └── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── content_background.gif │ │ │ ├── dir.gif │ │ │ ├── file.png │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ ├── landing │ │ └── css │ │ │ └── home.css │ └── others │ │ ├── css │ │ ├── devices.min.css │ │ ├── pdf_report.css │ │ ├── spinner.css │ │ ├── terminal.css │ │ └── xcode.min.css │ │ └── js │ │ ├── datatables_init.js │ │ ├── suppression.js │ │ └── swipe.js └── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── auth │ ├── change_password.html │ ├── login.html │ ├── register.html │ └── users.html │ ├── base │ ├── base_layout.html │ ├── list.html │ ├── list_href.html │ └── nav.html │ ├── dynamic_analysis │ ├── android │ │ ├── dynamic_analysis.html │ │ ├── dynamic_analyzer.html │ │ ├── dynamic_report.html │ │ ├── frida_logs.html │ │ ├── live_api.html │ │ └── logcat.html │ └── ios │ │ ├── dynamic_analysis.html │ │ ├── dynamic_analyzer.html │ │ ├── dynamic_report.html │ │ └── system_logs.html │ ├── general │ ├── about.html │ ├── apidocs.html │ ├── donate.html │ ├── dynamic.html │ ├── error.html │ ├── home.html │ ├── recent.html │ ├── tasks.html │ ├── view.html │ └── zip.html │ ├── pdf │ ├── android_report.html │ ├── ios_report.html │ └── windows_report.html │ └── static_analysis │ ├── android_binary_analysis.html │ ├── android_source_analysis.html │ ├── appsec_dashboard.html │ ├── compare.html │ ├── ios_binary_analysis.html │ ├── ios_source_analysis.html │ ├── source_tree.html │ ├── treeview_file.html │ ├── treeview_folder.html │ └── windows_binary_analysis.html ├── poetry.lock ├── pyproject.toml ├── run.bat ├── run.sh ├── scripts ├── __init__.py ├── clean.bat ├── clean.sh ├── dependencies.sh ├── entrypoint.sh ├── mass_static_analysis.py ├── migrate.sh ├── qcluster.sh ├── start_avd.ps1 ├── start_avd.sh └── update_android_permissions.py ├── setup.bat ├── setup.sh └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/codeql-config.yml -------------------------------------------------------------------------------- /.github/workflows/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/auto-comment.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docker-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/docker-latest.yml -------------------------------------------------------------------------------- /.github/workflows/docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/docker-release.yml -------------------------------------------------------------------------------- /.github/workflows/docker-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/docker-test.yml -------------------------------------------------------------------------------- /.github/workflows/mobsf-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/mobsf-test.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/supply_chain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.github/workflows/supply_chain.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.gitmodules -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AdminLTE_theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/AdminLTE_theme.txt -------------------------------------------------------------------------------- /LICENSES/AntiEmulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/AntiEmulator.txt -------------------------------------------------------------------------------- /LICENSES/FSecureLabs_frida_scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/FSecureLabs_frida_scripts.txt -------------------------------------------------------------------------------- /LICENSES/IP2LOCATION LITE DATA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/IP2LOCATION LITE DATA.txt -------------------------------------------------------------------------------- /LICENSES/Rootcloak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/Rootcloak.txt -------------------------------------------------------------------------------- /LICENSES/ac-pm_tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/ac-pm_tools.txt -------------------------------------------------------------------------------- /LICENSES/androguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/androguard.txt -------------------------------------------------------------------------------- /LICENSES/apkinspector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/apkinspector.txt -------------------------------------------------------------------------------- /LICENSES/apksigner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/apksigner.txt -------------------------------------------------------------------------------- /LICENSES/backsmali.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/backsmali.txt -------------------------------------------------------------------------------- /LICENSES/class-dump-z.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/class-dump-z.txt -------------------------------------------------------------------------------- /LICENSES/droidmon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/droidmon.txt -------------------------------------------------------------------------------- /LICENSES/exodus-core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/exodus-core.txt -------------------------------------------------------------------------------- /LICENSES/frida.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/frida.txt -------------------------------------------------------------------------------- /LICENSES/ios_binary_analysis_rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/ios_binary_analysis_rules.txt -------------------------------------------------------------------------------- /LICENSES/jadx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/jadx.txt -------------------------------------------------------------------------------- /LICENSES/maltrail_blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/maltrail_blacklist.txt -------------------------------------------------------------------------------- /LICENSES/vd2svg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/LICENSES/vd2svg.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-compose_swarm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/docker/docker-compose_swarm.yml -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/manage.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/forms.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/apk_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/apk_patcher.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/class_trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/class_trace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/get_loaded_classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/get_loaded_classes.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/get_methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/get_methods.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/search_class_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/search_class_pattern.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/string_catch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/string_catch.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/string_compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/auxiliary/string_compare.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/api_monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/api_monitor.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/debugger_check_bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/debugger_check_bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/dump_clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/dump_clipboard.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/root_bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/root_bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/ssl_pinning_bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/default/ssl_pinning_bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/app-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/app-environment.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/audit-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/audit-webview.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/bypass-adb-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/bypass-adb-detection.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/bypass-emulator-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/bypass-emulator-detection.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/bypass-react-native-emulator-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/bypass-react-native-emulator-detection.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-aes-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-aes-key.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-dump-keystore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-dump-keystore.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-keyguard-credential-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-keyguard-credential-intent.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-cipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-cipher.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-keygenparameterspec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-keygenparameterspec.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-keystore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-keystore.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-secretkeyfactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/crypto-trace-secretkeyfactory.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/default.js: -------------------------------------------------------------------------------- 1 | Java.perform(function() { 2 | // Use send() for logging 3 | }); -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/detect-ssl-pinning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/detect-ssl-pinning.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/device-android-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/device-android-id.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/device-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/device-environment.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-inputstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-inputstream.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-intent.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-library-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-library-exports.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-okhttp-calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/dump-okhttp-calls.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-android-change-sdk-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-android-change-sdk-version.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-android-spoof-gps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-android-spoof-gps.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-bypass-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-bypass-method.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-convert.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-early-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-early-java.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-heap-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-heap-search.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-jni-hook-by-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-jni-hook-by-address.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-trace-jni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/helper-trace-jni.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-billing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-billing.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-constructor.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-java-reflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-java-reflection.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-json.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/hook-logging.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ssl-bypass-flutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ssl-bypass-flutter.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ssl-pinning-bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ssl-pinning-bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/stop-app-terminate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/stop-app-terminate.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-bluetooth.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-file.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-intent.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-javascript-interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-javascript-interface.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-shared-preference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/trace-shared-preference.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-deeplink-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-deeplink-trace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-fingerprint-bypass-via-exception-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-fingerprint-bypass-via-exception-handling.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-fingerprint-bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-fingerprint-bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-flag-secure-bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-flag-secure-bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-webview-enable-debugging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/others/ui-webview-enable-debugging.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/android/rpc/get-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/android/rpc/get-hooks.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/class-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/class-trace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/find-app-classes-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/find-app-classes-methods.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/find-app-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/find-app-classes.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/find-specific-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/find-specific-method.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/get-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/get-methods.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/search-class-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/search-class-pattern.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/string-capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/string-capture.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/string-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/auxiliary/string-compare.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/default/jailbreak_bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/default/jailbreak_bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/cookies.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/crypto.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/data-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/data-dir.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/file-access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/file-access.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/json.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/keychain.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/network.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/nslog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/nslog.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/nsurlcredentialstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/nsurlcredentialstorage.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/nsuserdefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/nsuserdefaults.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/pasteboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/pasteboard.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/sqlite.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/text-inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/dump/text-inputs.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/app-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/app-environment.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-flutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-flutter.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios10.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios11.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios12.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-ios13.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-trustkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/bypass-ssl-trustkit.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/check-keyboard-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/check-keyboard-cache.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/check-keyboard-thridparty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/check-keyboard-thridparty.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/device-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/device-environment.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/dump-ios-url-scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/dump-ios-url-scheme.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/find-all-classes-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/find-all-classes-methods.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/find-all-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/find-all-classes.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/flutter-trace-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/flutter-trace-function.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/get-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/get-exports.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/get-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/get-modules.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-backtrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-backtrace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-get-memory-address-of-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-get-memory-address-of-class.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-ios-change-system-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-ios-change-system-version.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-ios-spoof-gps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-ios-spoof-gps.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-memory-hex-dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-memory-hex-dump.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-method-hooking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-method-hooking.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-read-plist-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-read-plist-file.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-replace-exported-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-replace-exported-method.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-show-modify-function-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-show-modify-function-arguments.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-show-modify-method-return-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-show-modify-method-return-value.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-ssh-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-ssh-commands.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-view-and-modify-method-registers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-view-and-modify-method-registers.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-view-method-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/helper-view-method-arguments.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/trace-bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/trace-bluetooth.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-enable-webinspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-enable-webinspector.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-ios-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-ios-alert.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-ios-biometric-bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-ios-biometric-bypass.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-send-url-scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-send-url-scheme.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-trace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-view-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-view-trace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-webview-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/others/ui-webview-trace.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/frida_scripts/ios/rpc/get-app-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/frida_scripts/ios/rpc/get-app-container.js -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/ClipDump.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/ClipDump.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/Xposed.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/Xposed.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/XposedInstaller_3.1.5.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/XposedInstaller_3.1.5.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/AndroidBluePill.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/AndroidBluePill.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/Droidmon.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/Droidmon.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/JustTrustMe.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/JustTrustMe.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/com.devadvance.rootcloak2_v18_c43b61.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/com.devadvance.rootcloak2_v18_c43b61.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/hooks.json -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.proxyon_v1_419b04.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.proxyon_v1_419b04.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.sslunpinning_v2_37f44f.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.sslunpinning_v2_37f44f.apk -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/tools/webproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/tools/webproxy.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/analysis.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/dynamic_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/dynamic_analyzer.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/environment.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/frida_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/frida_core.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/frida_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/frida_scripts.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/frida_server_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/frida_server_download.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/operations.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/report.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/tests_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/tests_common.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/tests_frida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/tests_frida.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/tests_tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/tests_tls.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/android/tests_xposed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/android/tests_xposed.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/common/__init__.py: -------------------------------------------------------------------------------- 1 | # Common utilities for Dynamic Analysis 2 | -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/common/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/common/device.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/common/frida/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/common/frida/__init__.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/common/frida/bridge_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/common/frida/bridge_loader.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/common/frida/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/common/frida/views.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/common/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/common/shared.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/analysis.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/corellium_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/corellium_apis.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/corellium_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/corellium_instance.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/corellium_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/corellium_ssh.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/dynamic_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/dynamic_analyzer.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/frida_auxiliary_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/frida_auxiliary_scripts.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/frida_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/frida_core.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/report.py -------------------------------------------------------------------------------- /mobsf/DynamicAnalyzer/views/ios/tests_frida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/DynamicAnalyzer/views/ios/tests_frida.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/MalwareDomainCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/MalwareDomainCheck.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/Trackers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/Trackers.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/VirusTotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/VirusTotal.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/android/apkid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/android/apkid.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/android/behaviour_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/android/behaviour_analysis.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/android/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/android/permissions.py -------------------------------------------------------------------------------- /mobsf/MalwareAnalyzer/views/android/rules/behaviour_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MalwareAnalyzer/views/android/rules/behaviour_rules.yaml -------------------------------------------------------------------------------- /mobsf/MobSF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MobSF/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/forms.py -------------------------------------------------------------------------------- /mobsf/MobSF/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/init.py -------------------------------------------------------------------------------- /mobsf/MobSF/management/commands/clear_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/management/commands/clear_tasks.py -------------------------------------------------------------------------------- /mobsf/MobSF/management/commands/create_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/management/commands/create_roles.py -------------------------------------------------------------------------------- /mobsf/MobSF/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MobSF/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/security.py -------------------------------------------------------------------------------- /mobsf/MobSF/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/settings.py -------------------------------------------------------------------------------- /mobsf/MobSF/tools_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/tools_download.py -------------------------------------------------------------------------------- /mobsf/MobSF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/urls.py -------------------------------------------------------------------------------- /mobsf/MobSF/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/utils.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MobSF/views/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/MobSF/views/api/api_android_dynamic_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/api/api_android_dynamic_analysis.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/api/api_ios_dynamic_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/api/api_ios_dynamic_analysis.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/api/api_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/api/api_middleware.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/api/api_static_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/api/api_static_analysis.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/apk_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/apk_downloader.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/authentication.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/authorization.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/helpers.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/home.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/saml2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/saml2.py -------------------------------------------------------------------------------- /mobsf/MobSF/views/scanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/views/scanning.py -------------------------------------------------------------------------------- /mobsf/MobSF/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/MobSF/wsgi.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/forms.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/models.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tests.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/apk.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/apkinspector/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/apkinspector/extract.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/apkinspector/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/apkinspector/headers.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/apkinspector/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/apkinspector/helpers.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/axml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/axml.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/resources/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/resources/public.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/resources/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/resources/public.xml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/types.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/androguard4/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/androguard4/util.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/apksigner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/apksigner.jar -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/apktool_2.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/apktool_2.10.0.jar -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/baksmali-3.0.8-dev-fat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/baksmali-3.0.8-dev-fat.jar -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/bundletool-all-1.17.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/bundletool-all-1.17.2.jar -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/ios/CgbiPngFix/CgbiPngFix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/ios/CgbiPngFix/CgbiPngFix.exe -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/ios/CgbiPngFix/CgbiPngFix_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/ios/CgbiPngFix/CgbiPngFix_amd64 -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/ios/CgbiPngFix/CgbiPngFix_arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/ios/CgbiPngFix/CgbiPngFix_arm64 -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/ios/class-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/ios/class-dump -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/ios/class-dump-swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/ios/class-dump-swift -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/ios/jtool.ELF64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/ios/jtool.ELF64 -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/strings.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/tools/vd2svg-0.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/tools/vd2svg-0.4.4.jar -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/aapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/aapt.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/apk.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/app.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/cert_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/cert_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/code_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/converter.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/db_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/db_interaction.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/icon_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/icon_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/jar_aar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/jar_aar.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/kb/android_manifest_desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/kb/android_manifest_desc.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/kb/dvm_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/kb/dvm_permissions.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/manifest_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/manifest_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/manifest_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/manifest_utils.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/network_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/network_security.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/playstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/playstore.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/rules/android_apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/rules/android_apis.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/rules/android_niap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/rules/android_niap.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/rules/android_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/rules/android_permissions.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/rules/android_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/rules/android_rules.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/sbom_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/sbom_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/so.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/static_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/static_analyzer.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/strings.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/views/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/views/find.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/views/manifest_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/views/manifest_view.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/views/source_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/views/source_tree.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/views/view_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/views/view_source.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/android/xapk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/android/xapk.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/a.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/appsec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/appsec.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/async_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/async_task.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/binary/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/binary/elf.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/binary/lib_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/binary/lib_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/binary/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/binary/macho.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/binary/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/binary/strings.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/entropy.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/firebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/firebase.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/pdf.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/shared_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/shared_func.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/common/suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/common/suppression.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/comparer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/comparer.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/app_transport_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/app_transport_security.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/appstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/appstore.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/binary_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/binary_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/binary_rule_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/binary_rule_matcher.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/classdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/classdump.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/code_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/db_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/db_interaction.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/dylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/dylib.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/file_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/file_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/icon_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/icon_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/ipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/ipa.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/kb/permission_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/kb/permission_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/plist_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/plist_analysis.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/rules/ios_apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/rules/ios_apis.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/rules/ipa_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/rules/ipa_rules.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/rules/objective_c_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/rules/objective_c_rules.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/rules/swift_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/rules/swift_rules.yaml -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/static_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/static_analyzer.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/strings.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/ios/views/view_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/ios/views/view_source.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/sast_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/sast_engine.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/windows/db_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/windows/db_interaction.py -------------------------------------------------------------------------------- /mobsf/StaticAnalyzer/views/windows/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/StaticAnalyzer/views/windows/windows.py -------------------------------------------------------------------------------- /mobsf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/__main__.py -------------------------------------------------------------------------------- /mobsf/install/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/install/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobsf/install/windows/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/install/windows/config.txt -------------------------------------------------------------------------------- /mobsf/install/windows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/install/windows/readme.md -------------------------------------------------------------------------------- /mobsf/install/windows/rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/install/windows/rpc_client.py -------------------------------------------------------------------------------- /mobsf/install/windows/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/install/windows/setup.py -------------------------------------------------------------------------------- /mobsf/signatures/IP2LOCATION-LITE-DB5.IPV6.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/signatures/IP2LOCATION-LITE-DB5.IPV6.BIN -------------------------------------------------------------------------------- /mobsf/signatures/exodus_trackers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/signatures/exodus_trackers -------------------------------------------------------------------------------- /mobsf/signatures/maltrail-malware-domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/signatures/maltrail-malware-domains.txt -------------------------------------------------------------------------------- /mobsf/signatures/malwaredomainlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/signatures/malwaredomainlist -------------------------------------------------------------------------------- /mobsf/static/adminlte/dashboard/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/dashboard/css/adminlte.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/dashboard/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/dashboard/css/adminlte.min.css.map -------------------------------------------------------------------------------- /mobsf/static/adminlte/dashboard/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/dashboard/js/adminlte.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/dashboard/js/adminlte.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/dashboard/js/adminlte.min.js.map -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/datatables/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/datatables/jquery.dataTables.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/jquery-ui.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/jquery.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.css -------------------------------------------------------------------------------- /mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.js -------------------------------------------------------------------------------- /mobsf/static/amcharts/animated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/amcharts/animated.js -------------------------------------------------------------------------------- /mobsf/static/amcharts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/amcharts/core.js -------------------------------------------------------------------------------- /mobsf/static/amcharts/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/amcharts/maps.js -------------------------------------------------------------------------------- /mobsf/static/amcharts/worldIndiaLow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/amcharts/worldIndiaLow.js -------------------------------------------------------------------------------- /mobsf/static/chartjs/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/chartjs/Chart.bundle.js -------------------------------------------------------------------------------- /mobsf/static/chartjs/chartjs-gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/chartjs/chartjs-gauge.js -------------------------------------------------------------------------------- /mobsf/static/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/codemirror.css -------------------------------------------------------------------------------- /mobsf/static/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/codemirror.js -------------------------------------------------------------------------------- /mobsf/static/codemirror/javascript-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/javascript-lint.js -------------------------------------------------------------------------------- /mobsf/static/codemirror/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/javascript.js -------------------------------------------------------------------------------- /mobsf/static/codemirror/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/jshint.js -------------------------------------------------------------------------------- /mobsf/static/codemirror/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/lint.css -------------------------------------------------------------------------------- /mobsf/static/codemirror/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/codemirror/lint.js -------------------------------------------------------------------------------- /mobsf/static/datatables/css/datatables.combined.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/datatables/css/datatables.combined.min.css -------------------------------------------------------------------------------- /mobsf/static/datatables/js/datatables.combined.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/datatables/js/datatables.combined.min.js -------------------------------------------------------------------------------- /mobsf/static/datatables/js/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/datatables/js/pdfmake.min.js -------------------------------------------------------------------------------- /mobsf/static/datatables/js/pdfmake.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/datatables/js/pdfmake.min.js.map -------------------------------------------------------------------------------- /mobsf/static/datatables/js/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/datatables/js/vfs_fonts.js -------------------------------------------------------------------------------- /mobsf/static/enlighterjs/enlighterjs.enlighter.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/enlighterjs/enlighterjs.enlighter.min.css -------------------------------------------------------------------------------- /mobsf/static/enlighterjs/enlighterjs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/enlighterjs/enlighterjs.min.css -------------------------------------------------------------------------------- /mobsf/static/enlighterjs/enlighterjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/enlighterjs/enlighterjs.min.js -------------------------------------------------------------------------------- /mobsf/static/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /mobsf/static/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /mobsf/static/fonts/Oswald/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/fonts/Oswald/OFL.txt -------------------------------------------------------------------------------- /mobsf/static/fonts/Oswald/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/fonts/Oswald/Oswald-Regular.ttf -------------------------------------------------------------------------------- /mobsf/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/img/favicon.ico -------------------------------------------------------------------------------- /mobsf/static/img/loading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/img/loading.jpg -------------------------------------------------------------------------------- /mobsf/static/img/mobsf_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/img/mobsf_icon.png -------------------------------------------------------------------------------- /mobsf/static/img/mobsf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/img/mobsf_logo.png -------------------------------------------------------------------------------- /mobsf/static/img/no_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/img/no_icon.png -------------------------------------------------------------------------------- /mobsf/static/jqueryknob/jquery.knob.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jqueryknob/jquery.knob.min.js -------------------------------------------------------------------------------- /mobsf/static/jsTree/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/custom.css -------------------------------------------------------------------------------- /mobsf/static/jsTree/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/jstree.min.js -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/32px.png -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/40px.png -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/content_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/content_background.gif -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/dir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/dir.gif -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/file.png -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/style.min.css -------------------------------------------------------------------------------- /mobsf/static/jsTree/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/jsTree/themes/default/throbber.gif -------------------------------------------------------------------------------- /mobsf/static/landing/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/landing/css/home.css -------------------------------------------------------------------------------- /mobsf/static/others/css/devices.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/css/devices.min.css -------------------------------------------------------------------------------- /mobsf/static/others/css/pdf_report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/css/pdf_report.css -------------------------------------------------------------------------------- /mobsf/static/others/css/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/css/spinner.css -------------------------------------------------------------------------------- /mobsf/static/others/css/terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/css/terminal.css -------------------------------------------------------------------------------- /mobsf/static/others/css/xcode.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/css/xcode.min.css -------------------------------------------------------------------------------- /mobsf/static/others/js/datatables_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/js/datatables_init.js -------------------------------------------------------------------------------- /mobsf/static/others/js/suppression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/js/suppression.js -------------------------------------------------------------------------------- /mobsf/static/others/js/swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/static/others/js/swipe.js -------------------------------------------------------------------------------- /mobsf/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/403.html -------------------------------------------------------------------------------- /mobsf/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/404.html -------------------------------------------------------------------------------- /mobsf/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/500.html -------------------------------------------------------------------------------- /mobsf/templates/auth/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/auth/change_password.html -------------------------------------------------------------------------------- /mobsf/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/auth/login.html -------------------------------------------------------------------------------- /mobsf/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/auth/register.html -------------------------------------------------------------------------------- /mobsf/templates/auth/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/auth/users.html -------------------------------------------------------------------------------- /mobsf/templates/base/base_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/base/base_layout.html -------------------------------------------------------------------------------- /mobsf/templates/base/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/base/list.html -------------------------------------------------------------------------------- /mobsf/templates/base/list_href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/base/list_href.html -------------------------------------------------------------------------------- /mobsf/templates/base/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/base/nav.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/android/dynamic_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/android/dynamic_analysis.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/android/dynamic_analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/android/dynamic_analyzer.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/android/dynamic_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/android/dynamic_report.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/android/frida_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/android/frida_logs.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/android/live_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/android/live_api.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/android/logcat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/android/logcat.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/ios/dynamic_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/ios/dynamic_analysis.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/ios/dynamic_analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/ios/dynamic_analyzer.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/ios/dynamic_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/ios/dynamic_report.html -------------------------------------------------------------------------------- /mobsf/templates/dynamic_analysis/ios/system_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/dynamic_analysis/ios/system_logs.html -------------------------------------------------------------------------------- /mobsf/templates/general/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/about.html -------------------------------------------------------------------------------- /mobsf/templates/general/apidocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/apidocs.html -------------------------------------------------------------------------------- /mobsf/templates/general/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/donate.html -------------------------------------------------------------------------------- /mobsf/templates/general/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/dynamic.html -------------------------------------------------------------------------------- /mobsf/templates/general/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/error.html -------------------------------------------------------------------------------- /mobsf/templates/general/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/home.html -------------------------------------------------------------------------------- /mobsf/templates/general/recent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/recent.html -------------------------------------------------------------------------------- /mobsf/templates/general/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/tasks.html -------------------------------------------------------------------------------- /mobsf/templates/general/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/view.html -------------------------------------------------------------------------------- /mobsf/templates/general/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/general/zip.html -------------------------------------------------------------------------------- /mobsf/templates/pdf/android_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/pdf/android_report.html -------------------------------------------------------------------------------- /mobsf/templates/pdf/ios_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/pdf/ios_report.html -------------------------------------------------------------------------------- /mobsf/templates/pdf/windows_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/pdf/windows_report.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/android_binary_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/android_binary_analysis.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/android_source_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/android_source_analysis.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/appsec_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/appsec_dashboard.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/compare.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/ios_binary_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/ios_binary_analysis.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/ios_source_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/ios_source_analysis.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/source_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/source_tree.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/treeview_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/treeview_file.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/treeview_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/treeview_folder.html -------------------------------------------------------------------------------- /mobsf/templates/static_analysis/windows_binary_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/mobsf/templates/static_analysis/windows_binary_analysis.html -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/clean.bat -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/dependencies.sh -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/entrypoint.sh -------------------------------------------------------------------------------- /scripts/mass_static_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/mass_static_analysis.py -------------------------------------------------------------------------------- /scripts/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/migrate.sh -------------------------------------------------------------------------------- /scripts/qcluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/qcluster.sh -------------------------------------------------------------------------------- /scripts/start_avd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/start_avd.ps1 -------------------------------------------------------------------------------- /scripts/start_avd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/start_avd.sh -------------------------------------------------------------------------------- /scripts/update_android_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/scripts/update_android_permissions.py -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/setup.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/HEAD/tox.ini --------------------------------------------------------------------------------