supplier-meesho.webflow 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of supplier-meesho.webflow might be problematic. Click here for more details.
- package/.localized +0 -0
- package/2.sh +1 -0
- package/Complaince.pdf +0 -0
- package/GitRepos/CircleIndicator/.idea/caches/build_file_checksums.ser +0 -0
- package/GitRepos/CircleIndicator/.idea/caches/gradle_models.ser +0 -0
- package/GitRepos/CircleIndicator/.idea/checkstyle-idea.xml +16 -0
- package/GitRepos/CircleIndicator/.idea/compiler.xml +21 -0
- package/GitRepos/CircleIndicator/.idea/copyright/profiles_settings.xml +3 -0
- package/GitRepos/CircleIndicator/.idea/encodings.xml +6 -0
- package/GitRepos/CircleIndicator/.idea/gradle.xml +23 -0
- package/GitRepos/CircleIndicator/.idea/misc.xml +93 -0
- package/GitRepos/CircleIndicator/.idea/modules.xml +11 -0
- package/GitRepos/CircleIndicator/.idea/runConfigurations.xml +12 -0
- package/GitRepos/CircleIndicator/.idea/vcs.xml +6 -0
- package/GitRepos/CircleIndicator/CHANGELOG.md +62 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/README.md +4 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/build.gradle +22 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/proguard-rules.pro +17 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/src/main/AndroidManifest.xml +5 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/src/main/java/com/imbryk/viewPager/LoopPagerAdapterWrapper.java +168 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/src/main/java/com/imbryk/viewPager/LoopViewPager.java +208 -0
- package/GitRepos/CircleIndicator/README.md +73 -0
- package/GitRepos/CircleIndicator/apk/sample.apk +0 -0
- package/GitRepos/CircleIndicator/build.gradle +20 -0
- package/GitRepos/CircleIndicator/circleindicator/build.gradle +30 -0
- package/GitRepos/CircleIndicator/circleindicator/gradle.properties +22 -0
- package/GitRepos/CircleIndicator/circleindicator/proguard-rules.pro +17 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/AndroidManifest.xml +5 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/java/me/relex/circleindicator/CircleIndicator.java +323 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/java/me/relex/circleindicator/SnackbarBehavior.java +45 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/res/animator/scale_with_alpha.xml +22 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/res/drawable/white_radius.xml +6 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/res/values/attrs.xml +60 -0
- package/GitRepos/CircleIndicator/circleindicator/upload-jcenter.gradle +67 -0
- package/GitRepos/CircleIndicator/circleindicator/upload-maven.gradle +55 -0
- package/GitRepos/CircleIndicator/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/GitRepos/CircleIndicator/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/GitRepos/CircleIndicator/gradle.properties +18 -0
- package/GitRepos/CircleIndicator/gradlew +164 -0
- package/GitRepos/CircleIndicator/gradlew.bat +90 -0
- package/GitRepos/CircleIndicator/sample/build.gradle +32 -0
- package/GitRepos/CircleIndicator/sample/proguard-rules.pro +17 -0
- package/GitRepos/CircleIndicator/sample/src/main/AndroidManifest.xml +23 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/SampleActivity.java +158 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/SamplePagerAdapter.java +59 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/ChangeColorFragment.java +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/CustomAnimationFragment.java +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/DefaultFragment.java +29 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/DynamicAdapterFragment.java +52 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/LoopViewPagerFragment.java +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/ResetAdapterFragment.java +41 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/SnackbarBehaviorFragment.java +44 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/animator/indicator_animator.xml +16 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/animator/indicator_animator_reverse.xml +10 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/animator/indicator_no_animator.xml +4 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable/black_radius.xml +8 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable/black_radius_square.xml +7 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable/white_radius.xml +6 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-hdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-mdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-xhdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-xxhdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/activity_sample.xml +22 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_change_color.xml +21 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_custom_animation.xml +26 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_default.xml +18 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_dynamic_adapter.xml +34 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_loop_viewpager.xml +18 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_reset_adapter.xml +27 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_snackbar_behavior.xml +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/item_view.xml +2 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/viewpager_activity.xml +74 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/array.xml +10 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/colors.xml +19 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/ids.xml +17 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/strings.xml +9 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/styles.xml +26 -0
- package/GitRepos/CircleIndicator/screenshot.gif +0 -0
- package/GitRepos/CircleIndicator/settings.gradle +1 -0
- package/GitRepos/Time/.travis.yml +14 -0
- package/GitRepos/Time/LICENSE.md +22 -0
- package/GitRepos/Time/README.md +269 -0
- package/GitRepos/Time/build.gradle +23 -0
- package/GitRepos/Time/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/GitRepos/Time/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/GitRepos/Time/gradlew +172 -0
- package/GitRepos/Time/gradlew.bat +84 -0
- package/GitRepos/Time/settings.gradle +3 -0
- package/GitRepos/Time/time/build.gradle +20 -0
- package/GitRepos/Time/time/src/main/kotlin/com/kizitonwose/time/Extensions.kt +65 -0
- package/GitRepos/Time/time/src/main/kotlin/com/kizitonwose/time/Time.kt +143 -0
- package/GitRepos/Time/time/src/test/kotlin/com/kizitonwose/time/TimeTest.kt +110 -0
- package/GitRepos/Time/time-android/build.gradle +38 -0
- package/GitRepos/Time/time-android/proguard-rules.pro +21 -0
- package/GitRepos/Time/time-android/src/main/AndroidManifest.xml +2 -0
- package/GitRepos/Time/time-android/src/main/kotlin/com/kizitonwose/timeandroid/AndroidExtensions.kt +15 -0
- package/GitRepos/Time/time-android/src/main/res/values/strings.xml +3 -0
- package/GitRepos/black/.coveragerc +9 -0
- package/GitRepos/black/.flake8 +7 -0
- package/GitRepos/black/.github/CODE_OF_CONDUCT.md +11 -0
- package/GitRepos/black/.github/ISSUE_TEMPLATE/bug_report.md +36 -0
- package/GitRepos/black/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
- package/GitRepos/black/.github/ISSUE_TEMPLATE/style_issue.md +29 -0
- package/GitRepos/black/.github/workflows/changelog.yml +21 -0
- package/GitRepos/black/.github/workflows/doc.yml +30 -0
- package/GitRepos/black/.github/workflows/docker.yml +43 -0
- package/GitRepos/black/.github/workflows/fuzz.yml +35 -0
- package/GitRepos/black/.github/workflows/lint.yml +28 -0
- package/GitRepos/black/.github/workflows/primer.yml +47 -0
- package/GitRepos/black/.github/workflows/pypi_upload.yml +31 -0
- package/GitRepos/black/.github/workflows/test.yml +76 -0
- package/GitRepos/black/.github/workflows/upload_binary.yml +51 -0
- package/GitRepos/black/.pre-commit-config.yaml +30 -0
- package/GitRepos/black/.pre-commit-hooks.yaml +9 -0
- package/GitRepos/black/.prettierrc.yaml +3 -0
- package/GitRepos/black/.readthedocs.yaml +14 -0
- package/GitRepos/black/AUTHORS.md +184 -0
- package/GitRepos/black/CHANGES.md +648 -0
- package/GitRepos/black/CONTRIBUTING.md +10 -0
- package/GitRepos/black/Dockerfile +14 -0
- package/GitRepos/black/LICENSE +21 -0
- package/GitRepos/black/Pipfile +36 -0
- package/GitRepos/black/Pipfile.lock +1308 -0
- package/GitRepos/black/README.md +220 -0
- package/GitRepos/black/action/Dockerfile +10 -0
- package/GitRepos/black/action/entrypoint.sh +9 -0
- package/GitRepos/black/action.yml +24 -0
- package/GitRepos/black/autoload/black.vim +172 -0
- package/GitRepos/black/docs/Makefile +20 -0
- package/GitRepos/black/docs/_static/custom.css +38 -0
- package/GitRepos/black/docs/_static/license.svg +1 -0
- package/GitRepos/black/docs/_static/logo2-readme.png +0 -0
- package/GitRepos/black/docs/_static/logo2.png +0 -0
- package/GitRepos/black/docs/_static/pypi_template.svg +1 -0
- package/GitRepos/black/docs/compatible_configs/flake8/.flake8 +3 -0
- package/GitRepos/black/docs/compatible_configs/flake8/setup.cfg +3 -0
- package/GitRepos/black/docs/compatible_configs/flake8/tox.ini +3 -0
- package/GitRepos/black/docs/compatible_configs/isort/.editorconfig +2 -0
- package/GitRepos/black/docs/compatible_configs/isort/.isort.cfg +2 -0
- package/GitRepos/black/docs/compatible_configs/isort/pyproject.toml +2 -0
- package/GitRepos/black/docs/compatible_configs/isort/setup.cfg +2 -0
- package/GitRepos/black/docs/compatible_configs/pylint/pylintrc +5 -0
- package/GitRepos/black/docs/compatible_configs/pylint/pyproject.toml +5 -0
- package/GitRepos/black/docs/compatible_configs/pylint/setup.cfg +5 -0
- package/GitRepos/black/docs/conf.py +227 -0
- package/GitRepos/black/docs/contributing/gauging_changes.md +42 -0
- package/GitRepos/black/docs/contributing/index.rst +42 -0
- package/GitRepos/black/docs/contributing/issue_triage.md +169 -0
- package/GitRepos/black/docs/contributing/reference/reference_classes.rst +76 -0
- package/GitRepos/black/docs/contributing/reference/reference_exceptions.rst +12 -0
- package/GitRepos/black/docs/contributing/reference/reference_functions.rst +178 -0
- package/GitRepos/black/docs/contributing/reference/reference_summary.rst +16 -0
- package/GitRepos/black/docs/contributing/release_process.md +89 -0
- package/GitRepos/black/docs/contributing/the_basics.md +101 -0
- package/GitRepos/black/docs/getting_started.md +49 -0
- package/GitRepos/black/docs/guides/index.rst +14 -0
- package/GitRepos/black/docs/guides/introducing_black_to_your_project.md +50 -0
- package/GitRepos/black/docs/guides/using_black_with_other_tools.md +278 -0
- package/GitRepos/black/docs/index.rst +120 -0
- package/GitRepos/black/docs/integrations/editors.md +326 -0
- package/GitRepos/black/docs/integrations/github_actions.md +35 -0
- package/GitRepos/black/docs/integrations/index.rst +28 -0
- package/GitRepos/black/docs/integrations/source_version_control.md +14 -0
- package/GitRepos/black/docs/license.rst +6 -0
- package/GitRepos/black/docs/make.bat +36 -0
- package/GitRepos/black/docs/requirements.txt +6 -0
- package/GitRepos/black/docs/the_black_code_style/current_style.md +456 -0
- package/GitRepos/black/docs/the_black_code_style/future_style.md +35 -0
- package/GitRepos/black/docs/the_black_code_style/index.rst +19 -0
- package/GitRepos/black/docs/usage_and_configuration/black_as_a_server.md +78 -0
- package/GitRepos/black/docs/usage_and_configuration/file_collection_and_discovery.md +36 -0
- package/GitRepos/black/docs/usage_and_configuration/index.rst +24 -0
- package/GitRepos/black/docs/usage_and_configuration/the_basics.md +286 -0
- package/GitRepos/black/fuzz.py +85 -0
- package/GitRepos/black/gallery/Dockerfile +11 -0
- package/GitRepos/black/gallery/README.md +45 -0
- package/GitRepos/black/gallery/gallery.py +307 -0
- package/GitRepos/black/mypy.ini +39 -0
- package/GitRepos/black/plugin/black.vim +60 -0
- package/GitRepos/black/profiling/dict_big.py +8001 -0
- package/GitRepos/black/profiling/dict_huge.py +41440 -0
- package/GitRepos/black/profiling/list_big.py +4000 -0
- package/GitRepos/black/profiling/list_huge.py +22431 -0
- package/GitRepos/black/profiling/mix_big.py +1002 -0
- package/GitRepos/black/profiling/mix_huge.py +7692 -0
- package/GitRepos/black/profiling/mix_small.py +102 -0
- package/GitRepos/black/pyproject.toml +34 -0
- package/GitRepos/black/setup.cfg +2 -0
- package/GitRepos/black/setup.py +113 -0
- package/GitRepos/black/src/black/__init__.py +1062 -0
- package/GitRepos/black/src/black/__main__.py +3 -0
- package/GitRepos/black/src/black/brackets.py +334 -0
- package/GitRepos/black/src/black/cache.py +83 -0
- package/GitRepos/black/src/black/comments.py +269 -0
- package/GitRepos/black/src/black/concurrency.py +39 -0
- package/GitRepos/black/src/black/const.py +4 -0
- package/GitRepos/black/src/black/debug.py +48 -0
- package/GitRepos/black/src/black/files.py +243 -0
- package/GitRepos/black/src/black/linegen.py +984 -0
- package/GitRepos/black/src/black/lines.py +734 -0
- package/GitRepos/black/src/black/mode.py +123 -0
- package/GitRepos/black/src/black/nodes.py +843 -0
- package/GitRepos/black/src/black/numerics.py +65 -0
- package/GitRepos/black/src/black/output.py +83 -0
- package/GitRepos/black/src/black/parsing.py +215 -0
- package/GitRepos/black/src/black/py.typed +1 -0
- package/GitRepos/black/src/black/report.py +100 -0
- package/GitRepos/black/src/black/rusty.py +28 -0
- package/GitRepos/black/src/black/strings.py +216 -0
- package/GitRepos/black/src/black/trans.py +1925 -0
- package/GitRepos/black/src/black_primer/cli.py +147 -0
- package/GitRepos/black/src/black_primer/lib.py +361 -0
- package/GitRepos/black/src/black_primer/primer.json +143 -0
- package/GitRepos/black/src/blackd/__init__.py +211 -0
- package/GitRepos/black/src/blib2to3/Grammar.txt +215 -0
- package/GitRepos/black/src/blib2to3/LICENSE +254 -0
- package/GitRepos/black/src/blib2to3/PatternGrammar.txt +28 -0
- package/GitRepos/black/src/blib2to3/README +16 -0
- package/GitRepos/black/src/blib2to3/__init__.py +1 -0
- package/GitRepos/black/src/blib2to3/pgen2/__init__.py +4 -0
- package/GitRepos/black/src/blib2to3/pgen2/conv.py +256 -0
- package/GitRepos/black/src/blib2to3/pgen2/driver.py +253 -0
- package/GitRepos/black/src/blib2to3/pgen2/grammar.py +223 -0
- package/GitRepos/black/src/blib2to3/pgen2/literals.py +68 -0
- package/GitRepos/black/src/blib2to3/pgen2/parse.py +235 -0
- package/GitRepos/black/src/blib2to3/pgen2/pgen.py +428 -0
- package/GitRepos/black/src/blib2to3/pgen2/token.py +94 -0
- package/GitRepos/black/src/blib2to3/pgen2/tokenize.py +681 -0
- package/GitRepos/black/src/blib2to3/pygram.py +197 -0
- package/GitRepos/black/src/blib2to3/pytree.py +980 -0
- package/GitRepos/black/test_requirements.txt +9 -0
- package/GitRepos/black/tests/__init__.py +0 -0
- package/GitRepos/black/tests/conftest.py +1 -0
- package/GitRepos/black/tests/data/async_as_identifier.py +49 -0
- package/GitRepos/black/tests/data/beginning_backslash.py +12 -0
- package/GitRepos/black/tests/data/blackd_diff.diff +13 -0
- package/GitRepos/black/tests/data/blackd_diff.py +6 -0
- package/GitRepos/black/tests/data/bracketmatch.py +15 -0
- package/GitRepos/black/tests/data/cantfit.py +107 -0
- package/GitRepos/black/tests/data/class_blank_parentheses.py +58 -0
- package/GitRepos/black/tests/data/class_methods_new_line.py +270 -0
- package/GitRepos/black/tests/data/collections.py +174 -0
- package/GitRepos/black/tests/data/comment_after_escaped_newline.py +18 -0
- package/GitRepos/black/tests/data/comments.py +96 -0
- package/GitRepos/black/tests/data/comments2.py +342 -0
- package/GitRepos/black/tests/data/comments3.py +47 -0
- package/GitRepos/black/tests/data/comments4.py +94 -0
- package/GitRepos/black/tests/data/comments5.py +71 -0
- package/GitRepos/black/tests/data/comments6.py +118 -0
- package/GitRepos/black/tests/data/comments7.py +271 -0
- package/GitRepos/black/tests/data/comments_non_breaking_space.py +44 -0
- package/GitRepos/black/tests/data/composition.py +181 -0
- package/GitRepos/black/tests/data/composition_no_trailing_comma.py +367 -0
- package/GitRepos/black/tests/data/debug_visitor.out +810 -0
- package/GitRepos/black/tests/data/debug_visitor.py +32 -0
- package/GitRepos/black/tests/data/decorators.py +182 -0
- package/GitRepos/black/tests/data/docstring.py +377 -0
- package/GitRepos/black/tests/data/docstring_no_string_normalization.py +249 -0
- package/GitRepos/black/tests/data/empty_lines.py +187 -0
- package/GitRepos/black/tests/data/empty_pyproject.toml +2 -0
- package/GitRepos/black/tests/data/expression.diff +447 -0
- package/GitRepos/black/tests/data/expression.py +630 -0
- package/GitRepos/black/tests/data/expression_skip_magic_trailing_comma.diff +428 -0
- package/GitRepos/black/tests/data/fmtonoff.py +413 -0
- package/GitRepos/black/tests/data/fmtonoff2.py +40 -0
- package/GitRepos/black/tests/data/fmtonoff3.py +35 -0
- package/GitRepos/black/tests/data/fmtonoff4.py +36 -0
- package/GitRepos/black/tests/data/fmtskip.py +3 -0
- package/GitRepos/black/tests/data/fmtskip2.py +17 -0
- package/GitRepos/black/tests/data/fmtskip3.py +20 -0
- package/GitRepos/black/tests/data/fmtskip4.py +13 -0
- package/GitRepos/black/tests/data/fmtskip5.py +22 -0
- package/GitRepos/black/tests/data/force_py36.py +16 -0
- package/GitRepos/black/tests/data/force_pyi.py +65 -0
- package/GitRepos/black/tests/data/fstring.py +21 -0
- package/GitRepos/black/tests/data/function.py +247 -0
- package/GitRepos/black/tests/data/function2.py +58 -0
- package/GitRepos/black/tests/data/function_trailing_comma.py +88 -0
- package/GitRepos/black/tests/data/import_spacing.py +118 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/.definitely_exclude/a.pie +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/.definitely_exclude/a.py +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/.definitely_exclude/a.pyi +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/dont_exclude/a.pie +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/dont_exclude/a.py +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/dont_exclude/a.pyi +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/exclude/a.pie +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/exclude/a.py +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/exclude/a.pyi +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/pyproject.toml +3 -0
- package/GitRepos/black/tests/data/long_strings.py +589 -0
- package/GitRepos/black/tests/data/long_strings__edge_case.py +110 -0
- package/GitRepos/black/tests/data/long_strings__regression.py +888 -0
- package/GitRepos/black/tests/data/long_strings_flag_disabled.py +289 -0
- package/GitRepos/black/tests/data/missing_final_newline.diff +8 -0
- package/GitRepos/black/tests/data/missing_final_newline.py +3 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/pyproject.toml +3 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/root/b.py +1 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/root/c.py +1 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/root/child/c.py +1 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/x.py +0 -0
- package/GitRepos/black/tests/data/numeric_literals.py +44 -0
- package/GitRepos/black/tests/data/numeric_literals_py2.py +16 -0
- package/GitRepos/black/tests/data/numeric_literals_skip_underscores.py +23 -0
- package/GitRepos/black/tests/data/pep_570.py +44 -0
- package/GitRepos/black/tests/data/pep_572.py +47 -0
- package/GitRepos/black/tests/data/pep_572_do_not_remove_parens.py +21 -0
- package/GitRepos/black/tests/data/pep_572_remove_parens.py +105 -0
- package/GitRepos/black/tests/data/percent_precedence.py +41 -0
- package/GitRepos/black/tests/data/python2.py +33 -0
- package/GitRepos/black/tests/data/python2_print_function.py +16 -0
- package/GitRepos/black/tests/data/python2_unicode_literals.py +20 -0
- package/GitRepos/black/tests/data/python37.py +65 -0
- package/GitRepos/black/tests/data/python38.py +45 -0
- package/GitRepos/black/tests/data/python39.py +37 -0
- package/GitRepos/black/tests/data/remove_parens.py +142 -0
- package/GitRepos/black/tests/data/slices.py +31 -0
- package/GitRepos/black/tests/data/string_prefixes.py +18 -0
- package/GitRepos/black/tests/data/string_quotes.py +102 -0
- package/GitRepos/black/tests/data/stub.pyi +35 -0
- package/GitRepos/black/tests/data/trailing_comma_optional_parens1.py +3 -0
- package/GitRepos/black/tests/data/trailing_comma_optional_parens2.py +3 -0
- package/GitRepos/black/tests/data/trailing_comma_optional_parens3.py +8 -0
- package/GitRepos/black/tests/data/tricky_unicode_symbols.py +6 -0
- package/GitRepos/black/tests/data/tupleassign.py +23 -0
- package/GitRepos/black/tests/empty.toml +1 -0
- package/GitRepos/black/tests/optional.py +119 -0
- package/GitRepos/black/tests/test.toml +10 -0
- package/GitRepos/black/tests/test_black.py +2100 -0
- package/GitRepos/black/tests/test_blackd.py +166 -0
- package/GitRepos/black/tests/test_format.py +144 -0
- package/GitRepos/black/tests/test_primer.py +217 -0
- package/GitRepos/black/tests/util.py +74 -0
- package/GitRepos/black/tox.ini +28 -0
- package/GitRepos/danger-static_analyzer_comments/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/GitRepos/danger-static_analyzer_comments/.idea/modules.xml +8 -0
- package/GitRepos/danger-static_analyzer_comments/Gemfile +3 -0
- package/GitRepos/danger-static_analyzer_comments/Gemfile.lock +141 -0
- package/GitRepos/danger-static_analyzer_comments/Guardfile +19 -0
- package/GitRepos/danger-static_analyzer_comments/LICENSE +21 -0
- package/GitRepos/danger-static_analyzer_comments/PLUGIN.gemspec.template.cpgz +0 -0
- package/GitRepos/danger-static_analyzer_comments/PLUGIN_LICENSE.txt +22 -0
- package/GitRepos/danger-static_analyzer_comments/PLUGIN_README.md +20 -0
- package/GitRepos/danger-static_analyzer_comments/README.md +2 -0
- package/GitRepos/danger-static_analyzer_comments/Rakefile +23 -0
- package/GitRepos/danger-static_analyzer_comments/configure +123 -0
- package/GitRepos/danger-static_analyzer_comments/danger-static_analyzer_comments.gemspec +49 -0
- package/GitRepos/danger-static_analyzer_comments/lib/danger_plugin.rb +73 -0
- package/GitRepos/danger-static_analyzer_comments/lib/version.rb +3 -0
- package/GitRepos/danger-static_analyzer_comments/spec/danger_static_analyzer_comments_spec.rb +23 -0
- package/GitRepos/danger-static_analyzer_comments/spec/spec_helper.rb +65 -0
- package/GitRepos/isort/.codecov.yml +10 -0
- package/GitRepos/isort/.coveragerc +20 -0
- package/GitRepos/isort/.cruft.json +17 -0
- package/GitRepos/isort/.deepsource.toml +18 -0
- package/GitRepos/isort/.dockerignore +17 -0
- package/GitRepos/isort/.editorconfig +19 -0
- package/GitRepos/isort/.github/FUNDING.yml +2 -0
- package/GitRepos/isort/.github/workflows/integration.yml +35 -0
- package/GitRepos/isort/.github/workflows/lint.yml +35 -0
- package/GitRepos/isort/.github/workflows/test.yml +64 -0
- package/GitRepos/isort/.isort.cfg +5 -0
- package/GitRepos/isort/.pre-commit-config.yaml +5 -0
- package/GitRepos/isort/.pre-commit-hooks.yaml +9 -0
- package/GitRepos/isort/CHANGELOG.md +522 -0
- package/GitRepos/isort/Dockerfile +26 -0
- package/GitRepos/isort/LICENSE +21 -0
- package/GitRepos/isort/MANIFEST.in +4 -0
- package/GitRepos/isort/README.md +355 -0
- package/GitRepos/isort/art/isort_loves_black.png +0 -0
- package/GitRepos/isort/art/logo.png +0 -0
- package/GitRepos/isort/art/logo.xcf +0 -0
- package/GitRepos/isort/art/logo_5.png +0 -0
- package/GitRepos/isort/art/logo_large.png +0 -0
- package/GitRepos/isort/art/logo_large.xcf +0 -0
- package/GitRepos/isort/art/stylesheets/extra.css +5 -0
- package/GitRepos/isort/docs/configuration/action_comments.md +108 -0
- package/GitRepos/isort/docs/configuration/add_or_remove_imports.md +28 -0
- package/GitRepos/isort/docs/configuration/black_compatibility.md +63 -0
- package/GitRepos/isort/docs/configuration/config_files.md +89 -0
- package/GitRepos/isort/docs/configuration/custom_sections_and_ordering.md +131 -0
- package/GitRepos/isort/docs/configuration/git_hook.md +34 -0
- package/GitRepos/isort/docs/configuration/github_action.md +63 -0
- package/GitRepos/isort/docs/configuration/multi_line_output_modes.md +121 -0
- package/GitRepos/isort/docs/configuration/options.md +1314 -0
- package/GitRepos/isort/docs/configuration/pre-commit.md +32 -0
- package/GitRepos/isort/docs/configuration/profiles.md +86 -0
- package/GitRepos/isort/docs/configuration/setuptools_integration.md +27 -0
- package/GitRepos/isort/docs/contributing/1.-contributing-guide.md +81 -0
- package/GitRepos/isort/docs/contributing/2.-coding-standard.md +57 -0
- package/GitRepos/isort/docs/contributing/3.-code-of-conduct.md +88 -0
- package/GitRepos/isort/docs/contributing/4.-acknowledgements.md +259 -0
- package/GitRepos/isort/docs/major_releases/introducing_isort_5.md +142 -0
- package/GitRepos/isort/docs/major_releases/release_policy.md +46 -0
- package/GitRepos/isort/docs/quick_start/0.-try.md +50 -0
- package/GitRepos/isort/docs/quick_start/1.-install.md +22 -0
- package/GitRepos/isort/docs/quick_start/2.-cli.md +43 -0
- package/GitRepos/isort/docs/quick_start/3.-api.md +22 -0
- package/GitRepos/isort/docs/quick_start/interactive.css +26 -0
- package/GitRepos/isort/docs/quick_start/interactive.js +55 -0
- package/GitRepos/isort/docs/quick_start/isort-5.0.0-py3-none-any.whl +0 -0
- package/GitRepos/isort/docs/quick_start/isort-5.0.1-py3-none-any.whl +0 -0
- package/GitRepos/isort/docs/upgrade_guides/5.0.0.md +97 -0
- package/GitRepos/isort/docs/warning_and_error_codes/W0500.md +22 -0
- package/GitRepos/isort/example.gif +0 -0
- package/GitRepos/isort/example_isort_formatting_plugin/example_isort_formatting_plugin.py +23 -0
- package/GitRepos/isort/example_isort_formatting_plugin/poetry.lock +173 -0
- package/GitRepos/isort/example_isort_formatting_plugin/pyproject.toml +20 -0
- package/GitRepos/isort/example_shared_isort_profile/example_shared_isort_profile.py +7 -0
- package/GitRepos/isort/example_shared_isort_profile/poetry.lock +7 -0
- package/GitRepos/isort/example_shared_isort_profile/pyproject.toml +18 -0
- package/GitRepos/isort/isort/__init__.py +19 -0
- package/GitRepos/isort/isort/__main__.py +3 -0
- package/GitRepos/isort/isort/_future/__init__.py +12 -0
- package/GitRepos/isort/isort/_future/_dataclasses.py +1209 -0
- package/GitRepos/isort/isort/_vendored/toml/LICENSE +27 -0
- package/GitRepos/isort/isort/_vendored/toml/__init__.py +23 -0
- package/GitRepos/isort/isort/_vendored/toml/decoder.py +1053 -0
- package/GitRepos/isort/isort/_vendored/toml/encoder.py +295 -0
- package/GitRepos/isort/isort/_vendored/toml/ordered.py +13 -0
- package/GitRepos/isort/isort/_vendored/toml/tz.py +21 -0
- package/GitRepos/isort/isort/_version.py +1 -0
- package/GitRepos/isort/isort/api.py +576 -0
- package/GitRepos/isort/isort/comments.py +32 -0
- package/GitRepos/isort/isort/core.py +455 -0
- package/GitRepos/isort/isort/deprecated/__init__.py +0 -0
- package/GitRepos/isort/isort/deprecated/finders.py +415 -0
- package/GitRepos/isort/isort/exceptions.py +180 -0
- package/GitRepos/isort/isort/files.py +41 -0
- package/GitRepos/isort/isort/format.py +150 -0
- package/GitRepos/isort/isort/hooks.py +86 -0
- package/GitRepos/isort/isort/identify.py +206 -0
- package/GitRepos/isort/isort/io.py +73 -0
- package/GitRepos/isort/isort/literal.py +109 -0
- package/GitRepos/isort/isort/logo.py +19 -0
- package/GitRepos/isort/isort/main.py +1230 -0
- package/GitRepos/isort/isort/output.py +634 -0
- package/GitRepos/isort/isort/parse.py +569 -0
- package/GitRepos/isort/isort/place.py +145 -0
- package/GitRepos/isort/isort/profiles.py +86 -0
- package/GitRepos/isort/isort/py.typed +0 -0
- package/GitRepos/isort/isort/pylama_isort.py +43 -0
- package/GitRepos/isort/isort/sections.py +9 -0
- package/GitRepos/isort/isort/settings.py +779 -0
- package/GitRepos/isort/isort/setuptools_commands.py +61 -0
- package/GitRepos/isort/isort/sorting.py +118 -0
- package/GitRepos/isort/isort/stdlibs/__init__.py +2 -0
- package/GitRepos/isort/isort/stdlibs/all.py +3 -0
- package/GitRepos/isort/isort/stdlibs/py2.py +3 -0
- package/GitRepos/isort/isort/stdlibs/py27.py +300 -0
- package/GitRepos/isort/isort/stdlibs/py3.py +3 -0
- package/GitRepos/isort/isort/stdlibs/py35.py +222 -0
- package/GitRepos/isort/isort/stdlibs/py36.py +223 -0
- package/GitRepos/isort/isort/stdlibs/py37.py +224 -0
- package/GitRepos/isort/isort/stdlibs/py38.py +223 -0
- package/GitRepos/isort/isort/stdlibs/py39.py +223 -0
- package/GitRepos/isort/isort/utils.py +16 -0
- package/GitRepos/isort/isort/wrap.py +139 -0
- package/GitRepos/isort/isort/wrap_modes.py +323 -0
- package/GitRepos/isort/logo.png +0 -0
- package/GitRepos/isort/mkdocs.yml +2 -0
- package/GitRepos/isort/poetry.lock +2472 -0
- package/GitRepos/isort/pyproject.toml +114 -0
- package/GitRepos/isort/rtd/index.md +6 -0
- package/GitRepos/isort/scripts/build_config_option_docs.py +214 -0
- package/GitRepos/isort/scripts/build_profile_docs.py +42 -0
- package/GitRepos/isort/scripts/check_acknowledgments.py +83 -0
- package/GitRepos/isort/scripts/clean.sh +7 -0
- package/GitRepos/isort/scripts/docker.sh +12 -0
- package/GitRepos/isort/scripts/done.sh +5 -0
- package/GitRepos/isort/scripts/lint.sh +11 -0
- package/GitRepos/isort/scripts/mkstdlibs.py +47 -0
- package/GitRepos/isort/scripts/test.sh +6 -0
- package/GitRepos/isort/scripts/test_integration.sh +4 -0
- package/GitRepos/isort/setup.cfg +28 -0
- package/GitRepos/isort/tests/__init__.py +0 -0
- package/GitRepos/isort/tests/integration/test_hypothesmith.py +96 -0
- package/GitRepos/isort/tests/integration/test_projects_using_isort.py +166 -0
- package/GitRepos/isort/tests/integration/test_setting_combinations.py +1869 -0
- package/GitRepos/isort/tests/unit/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/conftest.py +33 -0
- package/GitRepos/isort/tests/unit/example_crlf_file.py +10 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/root/y.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/implicit/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/implicit/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/implicit/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/none/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/none/root/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/none/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/root/__init__.py +1 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/root/__init__.py +1 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/profiles/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/profiles/test_attrs.py +102 -0
- package/GitRepos/isort/tests/unit/profiles/test_black.py +370 -0
- package/GitRepos/isort/tests/unit/profiles/test_django.py +122 -0
- package/GitRepos/isort/tests/unit/profiles/test_google.py +413 -0
- package/GitRepos/isort/tests/unit/profiles/test_hug.py +112 -0
- package/GitRepos/isort/tests/unit/profiles/test_open_stack.py +134 -0
- package/GitRepos/isort/tests/unit/profiles/test_plone.py +75 -0
- package/GitRepos/isort/tests/unit/profiles/test_pycharm.py +55 -0
- package/GitRepos/isort/tests/unit/profiles/test_wemake.py +87 -0
- package/GitRepos/isort/tests/unit/test_action_comments.py +47 -0
- package/GitRepos/isort/tests/unit/test_api.py +108 -0
- package/GitRepos/isort/tests/unit/test_comments.py +34 -0
- package/GitRepos/isort/tests/unit/test_deprecated_finders.py +210 -0
- package/GitRepos/isort/tests/unit/test_exceptions.py +100 -0
- package/GitRepos/isort/tests/unit/test_files.py +8 -0
- package/GitRepos/isort/tests/unit/test_format.py +121 -0
- package/GitRepos/isort/tests/unit/test_hooks.py +101 -0
- package/GitRepos/isort/tests/unit/test_identify.py +274 -0
- package/GitRepos/isort/tests/unit/test_importable.py +42 -0
- package/GitRepos/isort/tests/unit/test_io.py +43 -0
- package/GitRepos/isort/tests/unit/test_isort.py +5166 -0
- package/GitRepos/isort/tests/unit/test_literal.py +37 -0
- package/GitRepos/isort/tests/unit/test_main.py +1087 -0
- package/GitRepos/isort/tests/unit/test_output.py +22 -0
- package/GitRepos/isort/tests/unit/test_parse.py +82 -0
- package/GitRepos/isort/tests/unit/test_place.py +56 -0
- package/GitRepos/isort/tests/unit/test_pylama_isort.py +24 -0
- package/GitRepos/isort/tests/unit/test_regressions.py +1653 -0
- package/GitRepos/isort/tests/unit/test_settings.py +229 -0
- package/GitRepos/isort/tests/unit/test_setuptools_command.py +31 -0
- package/GitRepos/isort/tests/unit/test_ticketed_features.py +1117 -0
- package/GitRepos/isort/tests/unit/test_wrap.py +15 -0
- package/GitRepos/isort/tests/unit/test_wrap_modes.py +587 -0
- package/GitRepos/isort/tests/unit/utils.py +14 -0
- package/GitRepos/kettle/LICENSE.txt +21 -0
- package/GitRepos/kettle/README.md +215 -0
- package/GitRepos/kettle/bin/kettle-skeleton.php +316 -0
- package/GitRepos/kettle/composer.json +33 -0
- package/GitRepos/kettle/src/kettle.php +1418 -0
- package/GitRepos/mirrors-autoflake/.pre-commit-hooks.yaml +5 -0
- package/GitRepos/mirrors-autoflake/.version +1 -0
- package/GitRepos/mirrors-autoflake/hooks.yaml +7 -0
- package/GitRepos/mirrors-autoflake/setup.py +8 -0
- package/GitRepos/razorpay-java/LICENSE.txt +8 -0
- package/GitRepos/razorpay-java/README.md +421 -0
- package/GitRepos/razorpay-java/pom.xml +153 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Addon.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/AddonClient.java +17 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/ApiClient.java +194 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/ApiUtils.java +179 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/BankTransfer.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Card.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/CardClient.java +12 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Constants.java +78 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/CustomTLSSocketFactory.java +75 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Customer.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/CustomerClient.java +36 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Entity.java +45 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Invoice.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/InvoiceClient.java +32 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Order.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/OrderClient.java +32 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Payment.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/PaymentClient.java +83 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Plan.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/PlanClient.java +28 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/RazorpayClient.java +45 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/RazorpayException.java +21 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Refund.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/RefundClient.java +28 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Reversal.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Subscription.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/SubscriptionClient.java +36 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Token.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Transfer.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/TransferClient.java +36 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Utils.java +62 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/VirtualAccount.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/VirtualAccountClient.java +44 -0
- package/GitRepos/razorpay-java/src/main/resources/project.properties +1 -0
- package/GitRepos/react-data-grid/.babelrc +8 -0
- package/GitRepos/react-data-grid/.github/ISSUE_TEMPLATE.md +25 -0
- package/GitRepos/react-data-grid/.github/PULL_REQUEST_TEMPLATE.md +38 -0
- package/GitRepos/react-data-grid/LICENSE +24 -0
- package/GitRepos/react-data-grid/README.md +82 -0
- package/GitRepos/react-data-grid/addons.js +1 -0
- package/GitRepos/react-data-grid/docs/api/docs.json +6685 -0
- package/GitRepos/react-data-grid/docs/markdowns/AdvancedToolbar.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/AutoCompleteEditor.md +68 -0
- package/GitRepos/react-data-grid/docs/markdowns/AutoCompleteFilter.md +22 -0
- package/GitRepos/react-data-grid/docs/markdowns/AutoCompleteTokensEditor.md +22 -0
- package/GitRepos/react-data-grid/docs/markdowns/Canvas.md +126 -0
- package/GitRepos/react-data-grid/docs/markdowns/Cell.md +101 -0
- package/GitRepos/react-data-grid/docs/markdowns/CheckboxEditor.md +27 -0
- package/GitRepos/react-data-grid/docs/markdowns/ContextMenu.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/DateRangeEditor.md +24 -0
- package/GitRepos/react-data-grid/docs/markdowns/DateRangeFilter.md +42 -0
- package/GitRepos/react-data-grid/docs/markdowns/DateRangeFormatter.md +25 -0
- package/GitRepos/react-data-grid/docs/markdowns/DragDropContainer.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/Draggable.md +30 -0
- package/GitRepos/react-data-grid/docs/markdowns/DraggableHeaderCell.md +22 -0
- package/GitRepos/react-data-grid/docs/markdowns/DropDownEditor.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/DropDownFormatter.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/EditorBase.md +32 -0
- package/GitRepos/react-data-grid/docs/markdowns/EditorContainer.md +37 -0
- package/GitRepos/react-data-grid/docs/markdowns/FilterableHeaderCell.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/Grid.md +169 -0
- package/GitRepos/react-data-grid/docs/markdowns/GroupedColumnButton.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/GroupedColumnsPanel.md +44 -0
- package/GitRepos/react-data-grid/docs/markdowns/Header.md +62 -0
- package/GitRepos/react-data-grid/docs/markdowns/HeaderCell.md +40 -0
- package/GitRepos/react-data-grid/docs/markdowns/HeaderRow.md +92 -0
- package/GitRepos/react-data-grid/docs/markdowns/ImageFormatter.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/MenuHeader.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/NumericFilter.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/ReactDataGrid.md +209 -0
- package/GitRepos/react-data-grid/docs/markdowns/Row.md +70 -0
- package/GitRepos/react-data-grid/docs/markdowns/RowActionsCell.md +53 -0
- package/GitRepos/react-data-grid/docs/markdowns/RowDragLayer.md +42 -0
- package/GitRepos/react-data-grid/docs/markdowns/RowGroup.md +57 -0
- package/GitRepos/react-data-grid/docs/markdowns/SimpleCellFormatter.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/SortableHeaderCell.md +27 -0
- package/GitRepos/react-data-grid/docs/markdowns/Toolbar.md +44 -0
- package/GitRepos/react-data-grid/docs/markdowns/Viewport.md +102 -0
- package/GitRepos/react-data-grid/docs/readme.md +38 -0
- package/GitRepos/react-data-grid/docs/utils/generalUtils.js +50 -0
- package/GitRepos/react-data-grid/docs/utils/generateMarkdown.js +74 -0
- package/GitRepos/react-data-grid/index.js +1 -0
- package/GitRepos/react-data-grid/package.json +120 -0
- package/GitRepos/react-data-grid/themes/DragColumn.PNG +0 -0
- package/GitRepos/react-data-grid/themes/daterangepicker-bs3.css +284 -0
- package/GitRepos/react-data-grid/themes/drag_column_full.PNG +0 -0
- package/GitRepos/react-data-grid/themes/react-data-grid.css +961 -0
- package/GitRepos/react-data-grid/themes/react-data-grid.less +629 -0
- package/Kali +0 -0
- package/MobSF/.dockerignore +26 -0
- package/MobSF/.github/CODE_OF_CONDUCT.md +46 -0
- package/MobSF/.github/CONTRIBUTING.md +131 -0
- package/MobSF/.github/FUNDING.yml +3 -0
- package/MobSF/.github/ISSUE_TEMPLATE/bug_report.md +54 -0
- package/MobSF/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- package/MobSF/.github/PULL_REQUEST_TEMPLATE.md +20 -0
- package/MobSF/.github/SECURITY.md +21 -0
- package/MobSF/.github/SUPPORT.md +1 -0
- package/MobSF/.github/workflows/auto-comment.yml +22 -0
- package/MobSF/.github/workflows/docker-build.yml +35 -0
- package/MobSF/.github/workflows/mobsf_test.yml +58 -0
- package/MobSF/.github/workflows/python-publish.yml +28 -0
- package/MobSF/.gitmodules +3 -0
- package/MobSF/.pyup.yml +27 -0
- package/MobSF/.sonarcloud.properties +3 -0
- package/MobSF/Dockerfile +96 -0
- package/MobSF/LICENSE +675 -0
- package/MobSF/LICENSES/AdminLTE_theme.txt +8 -0
- package/MobSF/LICENSES/AntiEmulator.txt +660 -0
- package/MobSF/LICENSES/IP2LOCATION LITE DATA.txt +21 -0
- package/MobSF/LICENSES/Rootcloak.txt +13 -0
- package/MobSF/LICENSES/ac-pm_tools.txt +341 -0
- package/MobSF/LICENSES/androguard.txt +76 -0
- package/MobSF/LICENSES/backsmali.txt +29 -0
- package/MobSF/LICENSES/class-dump-z.txt +13 -0
- package/MobSF/LICENSES/droidmon.txt +624 -0
- package/MobSF/LICENSES/exodus-core.txt +661 -0
- package/MobSF/LICENSES/frida.txt +50 -0
- package/MobSF/LICENSES/ios_binary_analysis_rules.txt +28 -0
- package/MobSF/LICENSES/jadx.txt +202 -0
- package/MobSF/LICENSES/maltrail_blacklist.txt +21 -0
- package/MobSF/MANIFEST.in +12 -0
- package/MobSF/README.md +116 -0
- package/MobSF/docker-compose.yml +39 -0
- package/MobSF/manage.py +18 -0
- package/MobSF/mobsf/DynamicAnalyzer/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/admin.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/models.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tests.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/class_trace.js +126 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/get_loaded_classes.js +15 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/get_methods.js +22 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/search_class_pattern.js +55 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/string_catch.js +10 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/string_compare.js +15 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/api_monitor.js +572 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/debugger_check_bypass.js +8 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/root_bypass.js +260 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/ssl_pinning_bypass.js +255 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/aes_key.js +161 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/bypass_flag_secure.js +17 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/bypass_method.js +8 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/default.js +3 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/file_trace.js +455 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/get_android_id.js +9 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/helper.js +16 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/hook_constructor.js +7 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/hook_java_reflection.js +7 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/inputstream_dump.js +34 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/intent_dumper.js +21 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/jni_hook_by_address.js +28 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/jni_trace.js +42 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/webview_enable_debugging.js +12 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/mobsf_agents/ClipDump.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/Xposed.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/XposedInstaller_3.1.5.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/hooks.json +389 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/AndroidBluePill.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/Droidmon.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/JustTrustMe.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/com.devadvance.rootcloak2_v18_c43b61.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/hooks.json +389 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.proxyon_v1_419b04.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.sslunpinning_v2_37f44f.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/webproxy.py +89 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/analysis.py +285 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/dynamic_analyzer.py +316 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/environment.py +698 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/frida_core.py +168 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/frida_scripts.py +65 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/frida_server_download.py +75 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/operations.py +299 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/report.py +179 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_common.py +212 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_frida.py +339 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_tls.py +109 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_xposed.py +194 -0
- package/MobSF/mobsf/MalwareAnalyzer/__init__.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/admin.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/models.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/tests.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/MalwareDomainCheck.py +226 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/Trackers.py +237 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/VirusTotal.py +140 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/__init__.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/apkid.py +61 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/quark.py +145 -0
- package/MobSF/mobsf/MobSF/__init__.py +0 -0
- package/MobSF/mobsf/MobSF/forms.py +36 -0
- package/MobSF/mobsf/MobSF/init.py +143 -0
- package/MobSF/mobsf/MobSF/models.py +0 -0
- package/MobSF/mobsf/MobSF/settings.py +411 -0
- package/MobSF/mobsf/MobSF/urls.py +145 -0
- package/MobSF/mobsf/MobSF/utils.py +598 -0
- package/MobSF/mobsf/MobSF/views/__init__.py +0 -0
- package/MobSF/mobsf/MobSF/views/api/__init__.py +0 -0
- package/MobSF/mobsf/MobSF/views/api/api_dynamic_analysis.py +278 -0
- package/MobSF/mobsf/MobSF/views/api/api_middleware.py +47 -0
- package/MobSF/mobsf/MobSF/views/api/api_static_analysis.py +186 -0
- package/MobSF/mobsf/MobSF/views/apk_downloader.py +163 -0
- package/MobSF/mobsf/MobSF/views/helpers.py +94 -0
- package/MobSF/mobsf/MobSF/views/home.py +350 -0
- package/MobSF/mobsf/MobSF/views/scanning.py +149 -0
- package/MobSF/mobsf/MobSF/wsgi.py +24 -0
- package/MobSF/mobsf/StaticAnalyzer/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/admin.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/forms.py +92 -0
- package/MobSF/mobsf/StaticAnalyzer/models.py +123 -0
- package/MobSF/mobsf/StaticAnalyzer/tests.py +425 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/apktool_2.5.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/baksmali-2.5.2.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/ios/class-dump +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/ios/class-dump-swift +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/ios/jtool.ELF64 +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/LICENSE +201 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/NOTICE +213 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/README.md +125 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx +185 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx-gui +185 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx-gui.bat +89 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx.bat +89 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/android-29-clst.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/android-29-res.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/antlr-2.7.7.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/antlr-runtime-3.5.2.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/apksig-4.0.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/asm-8.0.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/baksmali-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/checker-qual-2.11.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/commons-lang3-3.11.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/commons-text-1.9.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/dexlib2-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/dx-1.16.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/error_prone_annotations-2.3.4.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/failureaccess-1.0.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/gson-2.8.6.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/guava-29.0-jre.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/image-viewer-1.2.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/j2objc-annotations-1.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-cli-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-core-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-dex-input-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-gui-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-java-convert-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-plugins-api-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-smali-input-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jcommander-1.80.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jfontchooser-1.0.5.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jsr305-3.0.2.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/logback-classic-1.2.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/logback-core-1.2.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/reactive-streams-1.0.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/rsyntaxtextarea-3.1.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/rxjava-2.2.19.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/rxjava2-swing-0.3.7.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/slf4j-api-1.7.30.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/smali-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/stringtemplate-3.2.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/util-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/strings.py +24 -0
- package/MobSF/mobsf/StaticAnalyzer/views/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/android_manifest_desc.py +747 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/binary_analysis.py +255 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/cert_analysis.py +160 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/code_analysis.py +96 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/converter.py +97 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/db_interaction.py +217 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/dvm_permissions.py +278 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/find.py +75 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/generate_downloads.py +53 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/icon_analysis.py +134 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/manifest_analysis.py +908 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/manifest_view.py +64 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/network_security.py +243 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/playstore.py +76 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/rules/android_apis.yaml +425 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/rules/android_niap.yaml +356 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/rules/android_rules.yaml +683 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/source_tree.py +79 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/static_analyzer.py +660 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/strings.py +64 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/view_source.py +78 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/win_fixes.py +53 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/xapk.py +57 -0
- package/MobSF/mobsf/StaticAnalyzer/views/comparer.py +234 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/app_transport_security.py +222 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/appstore.py +54 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/binary_analysis.py +119 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/binary_rule_matcher.py +58 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/classdump.py +112 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/code_analysis.py +103 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/db_interaction.py +177 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/file_analysis.py +85 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/file_recon.py +63 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/icon_analysis.py +73 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/macho_analysis.py +255 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/permission_analysis.py +90 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/plist_analysis.py +150 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/ios_apis.yaml +85 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/ipa_rules.py +226 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/objective_c_rules.yaml +355 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/swift_rules.yaml +461 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/static_analyzer.py +282 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/view_source.py +155 -0
- package/MobSF/mobsf/StaticAnalyzer/views/sast_engine.py +71 -0
- package/MobSF/mobsf/StaticAnalyzer/views/shared_func.py +424 -0
- package/MobSF/mobsf/StaticAnalyzer/views/windows/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/windows/db_interaction.py +130 -0
- package/MobSF/mobsf/StaticAnalyzer/views/windows/windows.py +590 -0
- package/MobSF/mobsf/__init__.py +0 -0
- package/MobSF/mobsf/__main__.py +49 -0
- package/MobSF/mobsf/install/__init__.py +0 -0
- package/MobSF/mobsf/install/windows/__init__.py +0 -0
- package/MobSF/mobsf/install/windows/config.txt +26 -0
- package/MobSF/mobsf/install/windows/readme.md +43 -0
- package/MobSF/mobsf/install/windows/rpc_client.py +191 -0
- package/MobSF/mobsf/install/windows/setup.py +433 -0
- package/MobSF/mobsf/signatures/IP2LOCATION-LITE-DB5.IPV6.BIN +0 -0
- package/MobSF/mobsf/signatures/exodus_trackers +1 -0
- package/MobSF/mobsf/signatures/maltrail-malware-domains.txt +157958 -0
- package/MobSF/mobsf/signatures/malwaredomainlist +2256 -0
- package/MobSF/mobsf/static/adminlte/dashboard/css/adminlte.min.css +12 -0
- package/MobSF/mobsf/static/adminlte/dashboard/css/adminlte.min.css.map +1 -0
- package/MobSF/mobsf/static/adminlte/dashboard/js/adminlte.min.js +7 -0
- package/MobSF/mobsf/static/adminlte/dashboard/js/adminlte.min.js.map +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js +7 -0
- package/MobSF/mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js.map +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/datatables/jquery.dataTables.min.js +166 -0
- package/MobSF/mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.css +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.js +8 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/all.css +4423 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/all.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/brands.css +14 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/brands.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.css +4390 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/regular.css +15 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/regular.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/solid.css +16 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/solid.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.css +371 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.css +2166 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg +3496 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg +803 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg +4667 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/jquery-ui.min.js +13 -0
- package/MobSF/mobsf/static/adminlte/plugins/jquery.min.js +2 -0
- package/MobSF/mobsf/static/adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css +13 -0
- package/MobSF/mobsf/static/adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js +13 -0
- package/MobSF/mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.css +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.js +1 -0
- package/MobSF/mobsf/static/amcharts/animated.js +1 -0
- package/MobSF/mobsf/static/amcharts/core.js +1 -0
- package/MobSF/mobsf/static/amcharts/maps.js +1 -0
- package/MobSF/mobsf/static/amcharts/worldIndiaLow.js +20 -0
- package/MobSF/mobsf/static/codemirror/codemirror.css +350 -0
- package/MobSF/mobsf/static/codemirror/codemirror.js +9803 -0
- package/MobSF/mobsf/static/codemirror/javascript-lint.js +65 -0
- package/MobSF/mobsf/static/codemirror/javascript.js +945 -0
- package/MobSF/mobsf/static/codemirror/jshint.js +29591 -0
- package/MobSF/mobsf/static/codemirror/lint.css +71 -0
- package/MobSF/mobsf/static/codemirror/lint.js +259 -0
- package/MobSF/mobsf/static/enlighterjs/enlighterjs.enlighter.min.css +3 -0
- package/MobSF/mobsf/static/enlighterjs/enlighterjs.min.css +15 -0
- package/MobSF/mobsf/static/enlighterjs/enlighterjs.min.js +3 -0
- package/MobSF/mobsf/static/fonts/Open_Sans/LICENSE.txt +202 -0
- package/MobSF/mobsf/static/fonts/Open_Sans/OpenSans-Regular.ttf +0 -0
- package/MobSF/mobsf/static/fonts/Oswald/OFL.txt +93 -0
- package/MobSF/mobsf/static/fonts/Oswald/Oswald-Regular.ttf +0 -0
- package/MobSF/mobsf/static/img/favicon.ico +0 -0
- package/MobSF/mobsf/static/img/loading.jpg +0 -0
- package/MobSF/mobsf/static/img/mobsf_icon.png +0 -0
- package/MobSF/mobsf/static/img/mobsf_logo.png +0 -0
- package/MobSF/mobsf/static/img/no_icon.png +0 -0
- package/MobSF/mobsf/static/jsTree/custom.css +114 -0
- package/MobSF/mobsf/static/jsTree/jstree.min.js +6 -0
- package/MobSF/mobsf/static/jsTree/themes/default/32px.png +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/40px.png +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/content_background.gif +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/dir.gif +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/file.png +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/style.min.css +1 -0
- package/MobSF/mobsf/static/jsTree/themes/default/throbber.gif +0 -0
- package/MobSF/mobsf/static/landing/css/home.css +310 -0
- package/MobSF/mobsf/static/others/css/devices.min.css +1 -0
- package/MobSF/mobsf/static/others/css/pdf_report.css +123 -0
- package/MobSF/mobsf/static/others/css/spinner.css +168 -0
- package/MobSF/mobsf/static/others/css/terminal.css +79 -0
- package/MobSF/mobsf/static/others/css/xcode.min.css +1 -0
- package/MobSF/mobsf/static/terminal/terminal.css +79 -0
- package/MobSF/mobsf/templates/base/base_layout.html +123 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/dynamic_analyzer.html +1064 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/dynamic_report.html +1017 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/frida_logs.html +48 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/live_api.html +103 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/logcat.html +56 -0
- package/MobSF/mobsf/templates/dynamic_analysis/dynamic_analysis.html +328 -0
- package/MobSF/mobsf/templates/general/about.html +30 -0
- package/MobSF/mobsf/templates/general/apidocs.html +2201 -0
- package/MobSF/mobsf/templates/general/error.html +23 -0
- package/MobSF/mobsf/templates/general/home.html +298 -0
- package/MobSF/mobsf/templates/general/not_found.html +22 -0
- package/MobSF/mobsf/templates/general/recent.html +254 -0
- package/MobSF/mobsf/templates/general/search.html +35 -0
- package/MobSF/mobsf/templates/general/view.html +124 -0
- package/MobSF/mobsf/templates/general/zip.html +31 -0
- package/MobSF/mobsf/templates/pdf/android_report.html +930 -0
- package/MobSF/mobsf/templates/pdf/ios_report.html +760 -0
- package/MobSF/mobsf/templates/pdf/windows_report.html +211 -0
- package/MobSF/mobsf/templates/static_analysis/android_binary_analysis.html +2006 -0
- package/MobSF/mobsf/templates/static_analysis/android_source_analysis.html +1502 -0
- package/MobSF/mobsf/templates/static_analysis/compare.html +917 -0
- package/MobSF/mobsf/templates/static_analysis/ios_binary_analysis.html +1299 -0
- package/MobSF/mobsf/templates/static_analysis/ios_source_analysis.html +1125 -0
- package/MobSF/mobsf/templates/static_analysis/source_tree.html +332 -0
- package/MobSF/mobsf/templates/static_analysis/treeview_file.html +1 -0
- package/MobSF/mobsf/templates/static_analysis/treeview_folder.html +5 -0
- package/MobSF/mobsf/templates/static_analysis/windows_binary_analysis.html +411 -0
- package/MobSF/requirements.txt +30 -0
- package/MobSF/run.bat +19 -0
- package/MobSF/run.sh +48 -0
- package/MobSF/scripts/__init__.py +0 -0
- package/MobSF/scripts/check_install.py +28 -0
- package/MobSF/scripts/clean.bat +31 -0
- package/MobSF/scripts/clean.sh +43 -0
- package/MobSF/scripts/entrypoint.sh +8 -0
- package/MobSF/scripts/install_java_wkhtmltopdf.sh +33 -0
- package/MobSF/scripts/mass_static_analysis.py +95 -0
- package/MobSF/scripts/postgres_support.sh +11 -0
- package/MobSF/scripts/stack/docker-compose.yml +15 -0
- package/MobSF/scripts/update_android_permissions.py +46 -0
- package/MobSF/setup.bat +81 -0
- package/MobSF/setup.py +61 -0
- package/MobSF/setup.sh +76 -0
- package/MobSF/tox.ini +94 -0
- package/Notes/AWS Security.pdf +0 -0
- package/Notes/Android Security.pdf +0 -0
- package/Notes/Web Security.pdf +0 -0
- package/Screenshot 2022-03-10 at 11.57.37 AM.png +0 -0
- package/Security Bug Demo.mov +0 -0
- package/Security Review.mov +0 -0
- package/Templates/CRLF.txt +61 -0
- package/Templates/cors.html +26 -0
- package/Templates/openredirect.txt +860 -0
- package/Templates/secrets.py +102 -0
- package/Templates/vhost.txt +174 -0
- package/Templates/wordlist.txt +6038 -0
- package/Templates/xss.txt +2691 -0
- package/cloneall.sh +26 -0
- package/index.js +46 -0
- package/meesecops/.dockerignore +6 -0
- package/meesecops/Dockerfile +15 -0
- package/meesecops/LICENSE +201 -0
- package/meesecops/README.md +2 -0
- package/meesecops/README_secops.md +206 -0
- package/meesecops/Workflows/1-factor.png +0 -0
- package/meesecops/Workflows/2-factor.png +0 -0
- package/meesecops/__init__.py +0 -0
- package/meesecops/application/__init__.py +23 -0
- package/meesecops/application/jira_functions.py +554 -0
- package/meesecops/application/static/css/close_style.css +151 -0
- package/meesecops/application/static/css/style.css +358 -0
- package/meesecops/application/static/external/1.16.0.popper.min.js +5 -0
- package/meesecops/application/static/external/bootstrap.min.css +5 -0
- package/meesecops/application/static/external/bootstrap.min.js +7 -0
- package/meesecops/application/static/external/css.css +48 -0
- package/meesecops/application/static/external/index.js +607 -0
- package/meesecops/application/static/external/jquery-1.12.4.js +11008 -0
- package/meesecops/application/static/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/meesecops/application/static/fonts/hacked.woff +0 -0
- package/meesecops/application/static/images/ajax-loader.gif +0 -0
- package/meesecops/application/static/images/favicon.png +0 -0
- package/meesecops/application/static/images/glogin.png +0 -0
- package/meesecops/application/static/images/logo3.png +0 -0
- package/meesecops/application/static/images/sort_asc.png +0 -0
- package/meesecops/application/static/images/sort_both.png +0 -0
- package/meesecops/application/static/images/sort_desc.png +0 -0
- package/meesecops/application/static/options.json +62 -0
- package/meesecops/application/static/request_options.json +721 -0
- package/meesecops/application/static/robots.txt +2 -0
- package/meesecops/application/templates/close_tickets.html +261 -0
- package/meesecops/application/templates/footer.html +15 -0
- package/meesecops/application/templates/index.html +337 -0
- package/meesecops/application/templates/login.html +50 -0
- package/meesecops/application/templates/nav.html +63 -0
- package/meesecops/application/templates/new_secreview.html +92 -0
- package/meesecops/application/templates/search_tickets.html +77 -0
- package/meesecops/application/templates/security_updates.html +82 -0
- package/meesecops/application/views.py +536 -0
- package/meesecops/config.py +206 -0
- package/meesecops/logs/README.txt +1 -0
- package/meesecops/logs/access_log +0 -0
- package/meesecops/requirements.txt +32 -0
- package/meesecops/run.py +100 -0
- package/meesecops/screenshot/1.png +0 -0
- package/meesecops/screenshot/2.png +0 -0
- package/meesecops/screenshot/3.png +0 -0
- package/meesecops/screenshot/4-1.png +0 -0
- package/meesecops/screenshot/4.png +0 -0
- package/meesecops/screenshot/5.png +0 -0
- package/meesecops/screenshot/6.png +0 -0
- package/meesecops/screenshot/7.png +0 -0
- package/meesecops/ssl/README.txt +1 -0
- package/package.json +11 -0
- package/prod.pem +27 -0
- package/test1.py +133 -0
@@ -0,0 +1,50 @@
|
|
1
|
+
wxWindows Library Licence, Version 3.1
|
2
|
+
======================================
|
3
|
+
|
4
|
+
Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al
|
5
|
+
|
6
|
+
Everyone is permitted to copy and distribute verbatim copies
|
7
|
+
of this licence document, but changing it is not allowed.
|
8
|
+
|
9
|
+
WXWINDOWS LIBRARY LICENCE
|
10
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
11
|
+
|
12
|
+
This library is free software; you can redistribute it and/or modify it
|
13
|
+
under the terms of the GNU Library General Public Licence as published by
|
14
|
+
the Free Software Foundation; either version 2 of the Licence, or (at your
|
15
|
+
option) any later version.
|
16
|
+
|
17
|
+
This library is distributed in the hope that it will be useful, but WITHOUT
|
18
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
20
|
+
Licence for more details.
|
21
|
+
|
22
|
+
You should have received a copy of the GNU Library General Public Licence
|
23
|
+
along with this software, usually in a file named COPYING.LIB. If not,
|
24
|
+
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
25
|
+
Floor, Boston, MA 02110-1301 USA.
|
26
|
+
|
27
|
+
EXCEPTION NOTICE
|
28
|
+
|
29
|
+
1. As a special exception, the copyright holders of this library give
|
30
|
+
permission for additional uses of the text contained in this release of the
|
31
|
+
library as licenced under the wxWindows Library Licence, applying either
|
32
|
+
version 3.1 of the Licence, or (at your option) any later version of the
|
33
|
+
Licence as published by the copyright holders of version 3.1 of the Licence
|
34
|
+
document.
|
35
|
+
|
36
|
+
2. The exception is that you may use, copy, link, modify and distribute
|
37
|
+
under your own terms, binary object code versions of works based on the
|
38
|
+
Library.
|
39
|
+
|
40
|
+
3. If you copy code from files distributed under the terms of the GNU
|
41
|
+
General Public Licence or the GNU Library General Public Licence into a
|
42
|
+
copy of this library, as this licence permits, the exception does not apply
|
43
|
+
to the code that you add in this way. To avoid misleading anyone as to the
|
44
|
+
status of such modified files, you must delete this exception notice from
|
45
|
+
such code and/or adjust the licensing conditions notice accordingly.
|
46
|
+
|
47
|
+
4. If you write modifications of your own for this library, it is your
|
48
|
+
choice whether to permit this exception to apply to your modifications. If
|
49
|
+
you do not wish that, you must delete the exception notice from such code
|
50
|
+
and/or adjust the licensing conditions notice accordingly.
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#
|
2
|
+
# Redistribution and use in source and binary forms, with or without
|
3
|
+
# modification, are permitted provided that the following conditions are met:
|
4
|
+
#
|
5
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
6
|
+
# list of conditions and the following disclaimer.
|
7
|
+
# * Redistributions in binary form must reproduce the above copyright notice,
|
8
|
+
# this list of conditions and the following disclaimer in the documentation
|
9
|
+
# and/or other materials provided with the distribution.
|
10
|
+
# * Neither the name of the Nth Dimension nor the names of its contributors may
|
11
|
+
# be used to endorse or promote products derived from this software without
|
12
|
+
# specific prior written permission.
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
15
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
16
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
17
|
+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
18
|
+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
19
|
+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
20
|
+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
21
|
+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
22
|
+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
23
|
+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
24
|
+
# POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
#
|
26
|
+
# (c) Tim Brown, 2014
|
27
|
+
# <mailto:timb@nth-dimension.org.uk>
|
28
|
+
# <http://www.nth-dimension.org.uk/> / <http://www.machine.org.uk/>
|
@@ -0,0 +1,202 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
202
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014-2020 Maltrail developers (https://github.com/stamparm/maltrail/)
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
recursive-include mobsf/StaticAnalyzer/tools *
|
3
|
+
recursive-include mobsf/DynamicAnalyzer/tools *
|
4
|
+
recursive-include mobsf/StaticAnalyzer/views/android/rules *
|
5
|
+
recursive-include mobsf/StaticAnalyzer/views/ios/rules *
|
6
|
+
recursive-include mobsf/signatures *
|
7
|
+
recursive-include mobsf/static *
|
8
|
+
recursive-include mobsf/templates *
|
9
|
+
recursive-include mobsf/install *
|
10
|
+
recursive-include LICENSES *
|
11
|
+
include requirements.txt
|
12
|
+
recursive-exclude *.pyc
|
package/MobSF/README.md
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
# Mobile Security Framework (MobSF)
|
2
|
+
Version: v3.4 beta
|
3
|
+

|
4
|
+
|
5
|
+
Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis. MobSF support mobile app binaries (APK, XAPK, IPA & APPX) along with zipped source code and provides REST APIs for seamless integration with your CI/CD or DevSecOps pipeline.The Dynamic Analyzer helps you to perform runtime security assessment and interactive instrumented testing.
|
6
|
+
|
7
|
+
Made with  in India
|
8
|
+
|
9
|
+
[](https://www.python.org/downloads/)
|
10
|
+
[](https://badge.fury.io/py/mobsf)
|
11
|
+
[](https://github.com/MobSF/Mobile-Security-Framework-MobSF/)
|
12
|
+
[](https://www.gnu.org/licenses/gpl-3.0.html)
|
13
|
+
[](https://hub.docker.com/r/opensecurity/mobile-security-framework-mobsf/)
|
14
|
+
|
15
|
+
[](https://github.com/MobSF/Mobile-Security-Framework-MobSF/actions)
|
16
|
+
[](https://pyup.io/repos/github/MobSF/Mobile-Security-Framework-MobSF/)
|
17
|
+
[](https://lgtm.com/projects/g/MobSF/Mobile-Security-Framework-MobSF/context:python)
|
18
|
+
[](https://sonarcloud.io/dashboard?id=MobSF_Mobile-Security-Framework-MobSF)
|
19
|
+

|
20
|
+
|
21
|
+
|
22
|
+
[](http://www.toolswatch.org/2017/02/2016-top-security-tools-as-voted-by-toolswatch-org-readers/)
|
23
|
+
[](http://www.toolswatch.org/2018/01/black-hat-arsenal-top-10-security-tools/)
|
24
|
+
[](https://www.blackhat.com/asia-15/arsenal.html#yso-mobile-security-framework)
|
25
|
+
[](https://www.blackhat.com/asia-18/arsenal.html#mobile-security-framework-mobsf)
|
26
|
+
|
27
|
+
MobSF is also bundled with [Android Tamer](https://androidtamer.com/tamer4-release), [BlackArch](https://blackarch.org/mobile.html) and [Pentoo](https://www.pentoo.ch/).
|
28
|
+
|
29
|
+
## Support MobSF
|
30
|
+
|
31
|
+
[](https://opensecurity.in/donate)
|
32
|
+
|
33
|
+
If you liked MobSF and find it useful, please consider donating.
|
34
|
+
|
35
|
+
*It's easy to build open source, try maintaining a project once. Long live open source!*
|
36
|
+
|
37
|
+
## Documentation
|
38
|
+
[](https://mobsf.github.io/docs)
|
39
|
+
[](https://mobsf.github.io/docs/#/zh-cn/)
|
40
|
+
|
41
|
+
* Try MobSF Static Analyzer Online:
|
42
|
+
[](https://labs.play-with-docker.com/?stack=https://raw.githubusercontent.com/MobSF/Mobile-Security-Framework-MobSF/master/scripts/stack/docker-compose.yml)
|
43
|
+
* MobSF in CI/CD: [mobsfscan](https://github.com/MobSF/mobsfscan)
|
44
|
+
* Conference Presentations: [Slides & Videos](https://mobsf.github.io/Mobile-Security-Framework-MobSF/presentations.html)
|
45
|
+
* MobSF Online Course: [OpSecX MAS](https://opsecx.com/index.php/product/automated-mobile-application-security-assessment-with-mobsf/)
|
46
|
+
* What's New: [See Changelog](https://mobsf.github.io/Mobile-Security-Framework-MobSF/changelog.html)
|
47
|
+
|
48
|
+
## Collaborators
|
49
|
+
|
50
|
+
[Ajin Abraham](https://in.linkedin.com/in/ajinabraham)  | [Magaofei](https://github.com/magaofei)  | [Matan Dobrushin](https://github.com/matandobr)  | [Vincent Nadal](https://github.com/superpoussin22) 
|
51
|
+
|
52
|
+
## e-Learning Courses & Certifications
|
53
|
+
 [Automated Mobile Application Security Assessment with MobSF -MAS](https://opsecx.com/index.php/product/automated-mobile-application-security-assessment-with-mobsf/)
|
54
|
+
|
55
|
+
 [Android Security Tools Expert -ATX](https://opsecx.com/index.php/product/android-security-tools-expert-atx/)
|
56
|
+
|
57
|
+
## MobSF Support
|
58
|
+
|
59
|
+
* **Free Support:** Free limited support, questions, help and discussions, join our Slack channel [](https://mobsf.slack.com/join/shared_invite/enQtNzM2NTAyNzA1MjgxLTdjMzkzNDc3ZjdiMjkwZTZhMmFhNDlkZmMwZDhjNDNmYTAzYWE5NGZlMDIzYzliNTdiMDQ2MTRlYjU1MjkyNGM)
|
60
|
+
* **Enterprise Support:** Priority feature requests, live support & onsite training, see [](https://opensecurity.in/#support)
|
61
|
+
|
62
|
+
|
63
|
+
## Contribution, Feature Requests & Bugs
|
64
|
+
|
65
|
+
* Read [CONTRIBUTING.md](https://github.com/MobSF/Mobile-Security-Framework-MobSF/blob/master/.github/CONTRIBUTING.md) before opening bugs, feature requests and pull request.
|
66
|
+
* For Project updates and announcements, follow [@ajinabraham](https://twitter.com/ajinabraham) or [@OpenSecurity_IN](https://twitter.com/OpenSecurity_IN).
|
67
|
+
* Github Issues are only for tracking bugs and feature requests. Do not post support or help queries there. We have a slack channel for that.
|
68
|
+
|
69
|
+
|
70
|
+
### Static Analysis - Android
|
71
|
+
|
72
|
+

|
73
|
+
|
74
|
+
### Static Analysis - Android Source Tree-view
|
75
|
+
|
76
|
+

|
77
|
+
|
78
|
+
### Static Analysis - iOS
|
79
|
+
|
80
|
+

|
81
|
+
|
82
|
+
### Dynamic Analysis - Android APK
|
83
|
+
|
84
|
+

|
85
|
+
|
86
|
+
### Web API Viewer
|
87
|
+
|
88
|
+

|
89
|
+
|
90
|
+
## Past Collaborators
|
91
|
+
|
92
|
+
* [Dominik Schlecht](https://github.com/sn0b4ll) 
|
93
|
+
|
94
|
+
## Honorable Contributors
|
95
|
+
|
96
|
+
* Amrutha VC - For the new MobSF logo
|
97
|
+
* Dominik Schlecht - For the awesome work on adding Windows Phone App Static Analysis to MobSF
|
98
|
+
* Esteban - Better Android Manifest Analysis and Static Analysis Improvement.
|
99
|
+
* Matan Dobrushin - For adding Android ARM Emulator support to MobSF - Special thanks goes for cuckoo-droid
|
100
|
+
* Shuxin - Android Binary Analysis
|
101
|
+
* Abhinav Saxena - (@xandfury) - For Travis CI and Logging integration
|
102
|
+
*  [Netguru](https://www.netguru.com/) (@karolpiateknet, @mtbrzeski) - For iOS Swift support, Rule contributions and SAST refactoring.
|
103
|
+
* Maxime Fawe - (@Arenash13) - For Matching Strategy implementation of SAST pattern matching algorithms.
|
104
|
+
|
105
|
+
## Shoutouts
|
106
|
+
|
107
|
+
* Abhinav Sejpal (@Abhinav_Sejpal) - For poking me with bugs, feature requests, and UI & UX suggestions
|
108
|
+
* Anant Srivastava (@anantshri) - For Activity Tester Idea
|
109
|
+
* Anto Joseph (@antojoseph) - For the help with SuperSU
|
110
|
+
* Bharadwaj Machiraju (@tunnelshade) - For writing pyWebProxy from scratch
|
111
|
+
* Rahul (@c0dist) - Kali Support
|
112
|
+
* MindMac - For writing Android Blue Pill
|
113
|
+
* Oscar Alfonso Diaz - (@OscarAkaElvis) - For Dockerfile contributions
|
114
|
+
* Thomas Abraham - For JS Hacks on UI
|
115
|
+
* Tim Brown (@timb_machine) - For the iOS Binary Analysis Ruleset
|
116
|
+
* Shanil Prasad (@Rajuraju14) - For improving iOS ATS Analysis
|
@@ -0,0 +1,39 @@
|
|
1
|
+
version: '3.8'
|
2
|
+
services:
|
3
|
+
postgres:
|
4
|
+
image: "postgres:latest"
|
5
|
+
restart: always
|
6
|
+
volumes:
|
7
|
+
- $HOME/MobSF/postgresql_data:/var/lib/postgresql
|
8
|
+
environment:
|
9
|
+
- POSTGRES_USER=postgres
|
10
|
+
- POSTGRES_PASSWORD=password
|
11
|
+
- POSTGRES_DB=mobsf
|
12
|
+
ports:
|
13
|
+
- "5432:5432"
|
14
|
+
networks:
|
15
|
+
- mobsf
|
16
|
+
|
17
|
+
mobsf:
|
18
|
+
environment:
|
19
|
+
- POSTGRES_USER=postgres
|
20
|
+
- POSTGRES_PASSWORD=password
|
21
|
+
- POSTGRES_DB=mobsf
|
22
|
+
- POSTGRES_HOST=postgres
|
23
|
+
build:
|
24
|
+
context: .
|
25
|
+
dockerfile: Dockerfile
|
26
|
+
args:
|
27
|
+
- POSTGRES=True
|
28
|
+
volumes:
|
29
|
+
- $HOME/MobSF/mobsf_data:/root/.MobSF
|
30
|
+
ports:
|
31
|
+
- "8000:8000"
|
32
|
+
networks:
|
33
|
+
- mobsf
|
34
|
+
depends_on:
|
35
|
+
- postgres
|
36
|
+
links:
|
37
|
+
- "postgres"
|
38
|
+
networks:
|
39
|
+
mobsf:
|
package/MobSF/manage.py
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
"""Django Manage."""
|
3
|
+
import warnings
|
4
|
+
import os
|
5
|
+
import sys
|
6
|
+
|
7
|
+
warnings.filterwarnings('ignore', category=UserWarning, module='cffi')
|
8
|
+
|
9
|
+
if __name__ == '__main__':
|
10
|
+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mobsf.MobSF.settings')
|
11
|
+
|
12
|
+
from django.core.management import execute_from_command_line
|
13
|
+
if 'runserver' in sys.argv:
|
14
|
+
print('We do not allow debug server anymore. '
|
15
|
+
'Please follow official docs: '
|
16
|
+
'https://mobsf.github.io/docs/')
|
17
|
+
sys.exit(0)
|
18
|
+
execute_from_command_line(sys.argv)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,126 @@
|
|
1
|
+
// https://github.com/iddoeldor/frida-snippets#trace-class
|
2
|
+
/**
|
3
|
+
*
|
4
|
+
* @param input.
|
5
|
+
* If an object is passed it will print as json
|
6
|
+
* @param kwargs options map {
|
7
|
+
* -l level: string; log/warn/error
|
8
|
+
* -i indent: boolean; print JSON prettify
|
9
|
+
* -c color: @see ColorMap
|
10
|
+
* }
|
11
|
+
var Color = {
|
12
|
+
RESET: "\x1b[39;49;00m", Black: "0;01", Blue: "4;01", Cyan: "6;01", Gray: "7;11", Green: "2;01", Purple: "5;01", Red: "1;01", Yellow: "3;01",
|
13
|
+
Light: {
|
14
|
+
Black: "0;11", Blue: "4;11", Cyan: "6;11", Gray: "7;01", Green: "2;11", Purple: "5;11", Red: "1;11", Yellow: "3;11"
|
15
|
+
}
|
16
|
+
};
|
17
|
+
|
18
|
+
var LOG = function (input, kwargs) {
|
19
|
+
kwargs = kwargs || {};
|
20
|
+
var logLevel = kwargs['l'] || 'log', colorPrefix = '\x1b[3', colorSuffix = 'm';
|
21
|
+
if (typeof input === 'object')
|
22
|
+
input = JSON.stringify(input, null, kwargs['i'] ? 2 : null);
|
23
|
+
if (kwargs['c'])
|
24
|
+
input = colorPrefix + kwargs['c'] + colorSuffix + input + Color.RESET;
|
25
|
+
console[logLevel](input);
|
26
|
+
};
|
27
|
+
|
28
|
+
var printBacktrace = function () {
|
29
|
+
Java.perform(function() {
|
30
|
+
var android_util_Log = Java.use('android.util.Log'), java_lang_Exception = Java.use('java.lang.Exception');
|
31
|
+
// getting stacktrace by throwing an exception
|
32
|
+
LOG(android_util_Log.getStackTraceString(java_lang_Exception.$new()), { c: Color.Gray });
|
33
|
+
});
|
34
|
+
};
|
35
|
+
|
36
|
+
*/
|
37
|
+
|
38
|
+
function traceClass(targetClass) {
|
39
|
+
var hook;
|
40
|
+
try {
|
41
|
+
hook = Java.use(targetClass);
|
42
|
+
send('[AUXILIARY] [Class Trace] Tracing all methods implementations of : '+ targetClass)
|
43
|
+
} catch (e) {
|
44
|
+
send('[AUXILIARY] [Class Trace] Error - ' + e);
|
45
|
+
return;
|
46
|
+
}
|
47
|
+
|
48
|
+
var methods = hook.class.getDeclaredMethods();
|
49
|
+
hook.$dispose();
|
50
|
+
|
51
|
+
var parsedMethods = [];
|
52
|
+
methods.forEach(function (method) {
|
53
|
+
var methodStr = method.toString();
|
54
|
+
var methodReplace = methodStr.replace(targetClass + ".", "TOKEN").match(/\sTOKEN(.*)\(/)[1];
|
55
|
+
parsedMethods.push(methodReplace);
|
56
|
+
});
|
57
|
+
|
58
|
+
uniqBy(parsedMethods, JSON.stringify).forEach(function (targetMethod) {
|
59
|
+
traceMethod(targetClass + '.' + targetMethod);
|
60
|
+
});
|
61
|
+
}
|
62
|
+
|
63
|
+
function traceMethod(targetClassMethod) {
|
64
|
+
var delim = targetClassMethod.lastIndexOf('.');
|
65
|
+
if (delim === -1)
|
66
|
+
return;
|
67
|
+
|
68
|
+
var targetClass = targetClassMethod.slice(0, delim);
|
69
|
+
var targetMethod = targetClassMethod.slice(delim + 1, targetClassMethod.length);
|
70
|
+
|
71
|
+
var hook = Java.use(targetClass);
|
72
|
+
var overloadCount = hook[targetMethod].overloads.length;
|
73
|
+
|
74
|
+
// LOG({ tracing: targetClassMethod, overloaded: overloadCount }, { c: Color.Green });
|
75
|
+
for (var i = 0; i < overloadCount; i++) {
|
76
|
+
hook[targetMethod].overloads[i].implementation = function () {
|
77
|
+
var log = { 'Class Trace': targetClassMethod, args: [] };
|
78
|
+
|
79
|
+
for (var j = 0; j < arguments.length; j++) {
|
80
|
+
var arg = arguments[j];
|
81
|
+
// quick&dirty fix for java.io.StringWriter char[].toString() impl because frida prints [object Object]
|
82
|
+
if (j === 0 && arguments[j]) {
|
83
|
+
if (arguments[j].toString() === '[object Object]') {
|
84
|
+
var s = [];
|
85
|
+
for (var k = 0, l = arguments[j].length; k < l; k++) {
|
86
|
+
s.push(arguments[j][k]);
|
87
|
+
}
|
88
|
+
arg = s.join('');
|
89
|
+
}
|
90
|
+
}
|
91
|
+
log.args.push({ i: j, o: arg, s: arg ? arg.toString(): 'null'});
|
92
|
+
}
|
93
|
+
|
94
|
+
var retval;
|
95
|
+
try {
|
96
|
+
retval = this[targetMethod].apply(this, arguments); // might crash (Frida bug?)
|
97
|
+
log.returns = { val: retval, str: retval ? retval.toString() : null };
|
98
|
+
} catch (e) {
|
99
|
+
send('[AUXILIARY] [Class Trace] Error - ' + e)
|
100
|
+
}
|
101
|
+
//LOG(log, { c: Color.Blue });
|
102
|
+
send(log)
|
103
|
+
return retval;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
// remove duplicates from array
|
109
|
+
function uniqBy(array, key) {
|
110
|
+
var seen = {};
|
111
|
+
return array.filter(function (item) {
|
112
|
+
var k = key(item);
|
113
|
+
return seen.hasOwnProperty(k) ? false : (seen[k] = true);
|
114
|
+
});
|
115
|
+
}
|
116
|
+
|
117
|
+
|
118
|
+
Java.perform(function () { // avoid java.lang.ClassNotFoundException
|
119
|
+
{{CLASSES}}.forEach(traceClass);
|
120
|
+
|
121
|
+
/* Java.use('java.net.Socket').isConnected.overload().implementation = function () {
|
122
|
+
LOG('Socket.isConnected.overload', { c: Color.Light.Cyan });
|
123
|
+
printBacktrace();
|
124
|
+
return true;
|
125
|
+
} */
|
126
|
+
});
|