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.
Files changed (124) hide show
  1. checkmate5-4.0.67/CHANGELOG.txt +0 -0
  2. checkmate5-4.0.67/LICENSE.txt +4095 -0
  3. checkmate5-4.0.67/MANIFEST.in +1 -0
  4. checkmate5-4.0.67/PKG-INFO +14 -0
  5. checkmate5-4.0.67/README.txt +16 -0
  6. checkmate5-4.0.67/checkmate/__init__.py +21 -0
  7. checkmate5-4.0.67/checkmate/__main__.py +25 -0
  8. checkmate5-4.0.67/checkmate/contrib/__init__.py +21 -0
  9. checkmate5-4.0.67/checkmate/contrib/plugins/__init__.py +0 -0
  10. checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/__init__.py +0 -0
  11. checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/analyzer.py +99 -0
  12. checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/issues_data.py +6 -0
  13. checkmate5-4.0.67/checkmate/contrib/plugins/all/gptanalyzer/setup.py +13 -0
  14. checkmate5-4.0.67/checkmate/contrib/plugins/cve/__init__.py +0 -0
  15. checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/__init__.py +0 -0
  16. checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/analyzer.py +64 -0
  17. checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/issues_data.py +8 -0
  18. checkmate5-4.0.67/checkmate/contrib/plugins/cve/text4shell/setup.py +13 -0
  19. checkmate5-4.0.67/checkmate/contrib/plugins/git/__init__.py +0 -0
  20. checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/__init__.py +6 -0
  21. checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/analyze.py +364 -0
  22. checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/base.py +16 -0
  23. checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/diff.py +199 -0
  24. checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/init.py +59 -0
  25. checkmate5-4.0.67/checkmate/contrib/plugins/git/commands/update_stats.py +41 -0
  26. checkmate5-4.0.67/checkmate/contrib/plugins/git/hooks/__init__.py +0 -0
  27. checkmate5-4.0.67/checkmate/contrib/plugins/git/hooks/project.py +19 -0
  28. checkmate5-4.0.67/checkmate/contrib/plugins/git/lib/__init__.py +1 -0
  29. checkmate5-4.0.67/checkmate/contrib/plugins/git/lib/repository.py +557 -0
  30. checkmate5-4.0.67/checkmate/contrib/plugins/git/lib/repository_pygit2.py +531 -0
  31. checkmate5-4.0.67/checkmate/contrib/plugins/git/models.py +178 -0
  32. checkmate5-4.0.67/checkmate/contrib/plugins/git/setup.py +27 -0
  33. checkmate5-4.0.67/checkmate/contrib/plugins/golang/__init__.py +0 -0
  34. checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/__init__.py +0 -0
  35. checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/analyzer.py +94 -0
  36. checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/issues_data.py +1246 -0
  37. checkmate5-4.0.67/checkmate/contrib/plugins/golang/gostaticcheck/setup.py +13 -0
  38. checkmate5-4.0.67/checkmate/contrib/plugins/iac/__init__.py +0 -0
  39. checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/__init__.py +0 -0
  40. checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/analyzer.py +115 -0
  41. checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/issues_data.py +636 -0
  42. checkmate5-4.0.67/checkmate/contrib/plugins/iac/kubescape/setup.py +14 -0
  43. checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/__init__.py +0 -0
  44. checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/analyzer.py +92 -0
  45. checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/issues_data.py +1917 -0
  46. checkmate5-4.0.67/checkmate/contrib/plugins/iac/tfsec/setup.py +13 -0
  47. checkmate5-4.0.67/checkmate/contrib/plugins/java/__init__.py +0 -0
  48. checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/__init__.py +0 -0
  49. checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/analyzer.py +96 -0
  50. checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/issues_data.py +5 -0
  51. checkmate5-4.0.67/checkmate/contrib/plugins/java/semgrepjava/setup.py +13 -0
  52. checkmate5-4.0.67/checkmate/contrib/plugins/javascript/__init__.py +0 -0
  53. checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/__init__.py +0 -0
  54. checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/analyzer.py +95 -0
  55. checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/issues_data.py +6 -0
  56. checkmate5-4.0.67/checkmate/contrib/plugins/javascript/semgrepeslint/setup.py +13 -0
  57. checkmate5-4.0.67/checkmate/contrib/plugins/perl/__init__.py +0 -0
  58. checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/__init__.py +0 -0
  59. checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/analyzer.py +70 -0
  60. checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/issues_data.py +8 -0
  61. checkmate5-4.0.67/checkmate/contrib/plugins/perl/graudit/setup.py +13 -0
  62. checkmate5-4.0.67/checkmate/contrib/plugins/python/__init__.py +0 -0
  63. checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/__init__.py +0 -0
  64. checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/analyzer.py +74 -0
  65. checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/issues_data.py +426 -0
  66. checkmate5-4.0.67/checkmate/contrib/plugins/python/bandit/setup.py +13 -0
  67. checkmate5-4.0.67/checkmate/contrib/plugins/ruby/__init__.py +0 -0
  68. checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/__init__.py +0 -0
  69. checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/analyzer.py +96 -0
  70. checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/issues_data.py +518 -0
  71. checkmate5-4.0.67/checkmate/contrib/plugins/ruby/brakeman/setup.py +13 -0
  72. checkmate5-4.0.67/checkmate/helpers/__init__.py +0 -0
  73. checkmate5-4.0.67/checkmate/helpers/facts.py +26 -0
  74. checkmate5-4.0.67/checkmate/helpers/hashing.py +68 -0
  75. checkmate5-4.0.67/checkmate/helpers/issue.py +101 -0
  76. checkmate5-4.0.67/checkmate/helpers/settings.py +14 -0
  77. checkmate5-4.0.67/checkmate/lib/__init__.py +1 -0
  78. checkmate5-4.0.67/checkmate/lib/analysis/__init__.py +3 -0
  79. checkmate5-4.0.67/checkmate/lib/analysis/base.py +103 -0
  80. checkmate5-4.0.67/checkmate/lib/code/__init__.py +3 -0
  81. checkmate5-4.0.67/checkmate/lib/code/environment.py +809 -0
  82. checkmate5-4.0.67/checkmate/lib/models.py +515 -0
  83. checkmate5-4.0.67/checkmate/lib/stats/__init__.py +1 -0
  84. checkmate5-4.0.67/checkmate/lib/stats/helpers.py +19 -0
  85. checkmate5-4.0.67/checkmate/lib/stats/mapreduce.py +29 -0
  86. checkmate5-4.0.67/checkmate/management/__init__.py +1 -0
  87. checkmate5-4.0.67/checkmate/management/commands/__init__.py +18 -0
  88. checkmate5-4.0.67/checkmate/management/commands/alembic.py +32 -0
  89. checkmate5-4.0.67/checkmate/management/commands/analyze.py +42 -0
  90. checkmate5-4.0.67/checkmate/management/commands/analyzers.py +1 -0
  91. checkmate5-4.0.67/checkmate/management/commands/base.py +66 -0
  92. checkmate5-4.0.67/checkmate/management/commands/compare.py +0 -0
  93. checkmate5-4.0.67/checkmate/management/commands/export.py +0 -0
  94. checkmate5-4.0.67/checkmate/management/commands/info.py +0 -0
  95. checkmate5-4.0.67/checkmate/management/commands/init.py +103 -0
  96. checkmate5-4.0.67/checkmate/management/commands/issues.py +478 -0
  97. checkmate5-4.0.67/checkmate/management/commands/props/__init__.py +1 -0
  98. checkmate5-4.0.67/checkmate/management/commands/props/delete.py +29 -0
  99. checkmate5-4.0.67/checkmate/management/commands/props/get.py +30 -0
  100. checkmate5-4.0.67/checkmate/management/commands/props/set.py +29 -0
  101. checkmate5-4.0.67/checkmate/management/commands/reset.py +53 -0
  102. checkmate5-4.0.67/checkmate/management/commands/shell.py +19 -0
  103. checkmate5-4.0.67/checkmate/management/commands/snapshots.py +22 -0
  104. checkmate5-4.0.67/checkmate/management/commands/stats.py +21 -0
  105. checkmate5-4.0.67/checkmate/management/commands/summary.py +19 -0
  106. checkmate5-4.0.67/checkmate/management/commands/sync.py +63 -0
  107. checkmate5-4.0.67/checkmate/management/commands/trend.py +1 -0
  108. checkmate5-4.0.67/checkmate/management/commands/watch.py +27 -0
  109. checkmate5-4.0.67/checkmate/management/decorators.py +1 -0
  110. checkmate5-4.0.67/checkmate/management/helpers.py +140 -0
  111. checkmate5-4.0.67/checkmate/scripts/__init__.py +18 -0
  112. checkmate5-4.0.67/checkmate/scripts/manage.py +121 -0
  113. checkmate5-4.0.67/checkmate/settings/__init__.py +2 -0
  114. checkmate5-4.0.67/checkmate/settings/base.py +127 -0
  115. checkmate5-4.0.67/checkmate/settings/defaults.py +133 -0
  116. checkmate5-4.0.67/checkmate5.egg-info/PKG-INFO +14 -0
  117. checkmate5-4.0.67/checkmate5.egg-info/SOURCES.txt +122 -0
  118. checkmate5-4.0.67/checkmate5.egg-info/dependency_links.txt +1 -0
  119. checkmate5-4.0.67/checkmate5.egg-info/entry_points.txt +2 -0
  120. checkmate5-4.0.67/checkmate5.egg-info/requires.txt +3 -0
  121. checkmate5-4.0.67/checkmate5.egg-info/top_level.txt +1 -0
  122. checkmate5-4.0.67/pyproject.toml +29 -0
  123. checkmate5-4.0.67/setup.cfg +4 -0
  124. checkmate5-4.0.67/setup.py +58 -0
File without changes