checkmate5 4.0.67__tar.gz
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.
- checkmate5-4.0.67/CHANGELOG.txt +0 -0
- checkmate5-4.0.67/LICENSE.txt +4095 -0
- checkmate5-4.0.67/MANIFEST.in +1 -0
- checkmate5-4.0.67/PKG-INFO +14 -0
- checkmate5-4.0.67/README.txt +16 -0
- checkmate5-4.0.67/checkmate/__init__.py +21 -0
- checkmate5-4.0.67/checkmate/__main__.py +25 -0
- checkmate5-4.0.67/checkmate/contrib/__init__.py +21 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/analyzer.py +99 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/issues_data.py +6 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/cve/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/analyzer.py +64 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/issues_data.py +8 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/__init__.py +6 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/analyze.py +364 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/base.py +16 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/diff.py +199 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/init.py +59 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/update_stats.py +41 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/hooks/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/hooks/project.py +19 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/lib/__init__.py +1 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/lib/repository.py +557 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/lib/repository_pygit2.py +531 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/models.py +178 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/git/setup.py +27 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/golang/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/analyzer.py +94 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/issues_data.py +1246 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/analyzer.py +115 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/issues_data.py +636 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/setup.py +14 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/analyzer.py +92 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/issues_data.py +1917 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/java/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/analyzer.py +96 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/issues_data.py +5 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/javascript/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/analyzer.py +95 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/issues_data.py +6 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/perl/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/analyzer.py +70 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/issues_data.py +8 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/python/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/analyzer.py +74 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/issues_data.py +426 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/setup.py +13 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/ruby/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/analyzer.py +96 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/issues_data.py +518 -0
- checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/setup.py +13 -0
- checkmate5-4.0.67/checkmate/helpers/__init__.py +0 -0
- checkmate5-4.0.67/checkmate/helpers/facts.py +26 -0
- checkmate5-4.0.67/checkmate/helpers/hashing.py +68 -0
- checkmate5-4.0.67/checkmate/helpers/issue.py +101 -0
- checkmate5-4.0.67/checkmate/helpers/settings.py +14 -0
- checkmate5-4.0.67/checkmate/lib/__init__.py +1 -0
- checkmate5-4.0.67/checkmate/lib/analysis/__init__.py +3 -0
- checkmate5-4.0.67/checkmate/lib/analysis/base.py +103 -0
- checkmate5-4.0.67/checkmate/lib/code/__init__.py +3 -0
- checkmate5-4.0.67/checkmate/lib/code/environment.py +809 -0
- checkmate5-4.0.67/checkmate/lib/models.py +515 -0
- checkmate5-4.0.67/checkmate/lib/stats/__init__.py +1 -0
- checkmate5-4.0.67/checkmate/lib/stats/helpers.py +19 -0
- checkmate5-4.0.67/checkmate/lib/stats/mapreduce.py +29 -0
- checkmate5-4.0.67/checkmate/management/__init__.py +1 -0
- checkmate5-4.0.67/checkmate/management/commands/__init__.py +18 -0
- checkmate5-4.0.67/checkmate/management/commands/alembic.py +32 -0
- checkmate5-4.0.67/checkmate/management/commands/analyze.py +42 -0
- checkmate5-4.0.67/checkmate/management/commands/analyzers.py +1 -0
- checkmate5-4.0.67/checkmate/management/commands/base.py +66 -0
- checkmate5-4.0.67/checkmate/management/commands/compare.py +0 -0
- checkmate5-4.0.67/checkmate/management/commands/export.py +0 -0
- checkmate5-4.0.67/checkmate/management/commands/info.py +0 -0
- checkmate5-4.0.67/checkmate/management/commands/init.py +103 -0
- checkmate5-4.0.67/checkmate/management/commands/issues.py +478 -0
- checkmate5-4.0.67/checkmate/management/commands/props/__init__.py +1 -0
- checkmate5-4.0.67/checkmate/management/commands/props/delete.py +29 -0
- checkmate5-4.0.67/checkmate/management/commands/props/get.py +30 -0
- checkmate5-4.0.67/checkmate/management/commands/props/set.py +29 -0
- checkmate5-4.0.67/checkmate/management/commands/reset.py +53 -0
- checkmate5-4.0.67/checkmate/management/commands/shell.py +19 -0
- checkmate5-4.0.67/checkmate/management/commands/snapshots.py +22 -0
- checkmate5-4.0.67/checkmate/management/commands/stats.py +21 -0
- checkmate5-4.0.67/checkmate/management/commands/summary.py +19 -0
- checkmate5-4.0.67/checkmate/management/commands/sync.py +63 -0
- checkmate5-4.0.67/checkmate/management/commands/trend.py +1 -0
- checkmate5-4.0.67/checkmate/management/commands/watch.py +27 -0
- checkmate5-4.0.67/checkmate/management/decorators.py +1 -0
- checkmate5-4.0.67/checkmate/management/helpers.py +140 -0
- checkmate5-4.0.67/checkmate/scripts/__init__.py +18 -0
- checkmate5-4.0.67/checkmate/scripts/manage.py +121 -0
- checkmate5-4.0.67/checkmate/settings/__init__.py +2 -0
- checkmate5-4.0.67/checkmate/settings/base.py +127 -0
- checkmate5-4.0.67/checkmate/settings/defaults.py +133 -0
- checkmate5-4.0.67/checkmate5.egg-info/PKG-INFO +14 -0
- checkmate5-4.0.67/checkmate5.egg-info/SOURCES.txt +122 -0
- checkmate5-4.0.67/checkmate5.egg-info/dependency_links.txt +1 -0
- checkmate5-4.0.67/checkmate5.egg-info/entry_points.txt +2 -0
- checkmate5-4.0.67/checkmate5.egg-info/requires.txt +3 -0
- checkmate5-4.0.67/checkmate5.egg-info/top_level.txt +1 -0
- checkmate5-4.0.67/pyproject.toml +29 -0
- checkmate5-4.0.67/setup.cfg +4 -0
- checkmate5-4.0.67/setup.py +58 -0
|
File without changes
|