pyneat-cli 3.0.2__tar.gz → 3.0.4__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 (267) hide show
  1. {pyneat_cli-3.0.2/pyneat_cli.egg-info → pyneat_cli-3.0.4}/PKG-INFO +42 -40
  2. pyneat_cli-3.0.4/pyneat-rs/Cargo.lock +4123 -0
  3. pyneat_cli-3.0.4/pyneat-rs/Cargo.toml +74 -0
  4. pyneat_cli-3.0.4/pyneat-rs/IMPROVEMENTS.md +207 -0
  5. pyneat_cli-3.0.4/pyneat-rs/README.md +383 -0
  6. pyneat_cli-3.0.4/pyneat-rs/benches/rule_benchmark.rs +121 -0
  7. pyneat_cli-3.0.4/pyneat-rs/benches/scanner_benchmark.rs +201 -0
  8. pyneat_cli-3.0.4/pyneat-rs/benches/test_utils.rs +28 -0
  9. pyneat_cli-3.0.4/pyneat-rs/benchmark_results.json +26 -0
  10. pyneat_cli-3.0.4/pyneat-rs/build.rs +27 -0
  11. pyneat_cli-3.0.4/pyneat-rs/src/ai_security/mod.rs +137 -0
  12. pyneat_cli-3.0.4/pyneat-rs/src/ai_security/rules.rs +951 -0
  13. pyneat_cli-3.0.4/pyneat-rs/src/fixer/apply_fix.rs +341 -0
  14. pyneat_cli-3.0.4/pyneat-rs/src/fixer/diff.rs +162 -0
  15. pyneat_cli-3.0.4/pyneat-rs/src/fixer/mod.rs +22 -0
  16. pyneat_cli-3.0.4/pyneat-rs/src/integrations/github.rs +370 -0
  17. pyneat_cli-3.0.4/pyneat-rs/src/integrations/gitlab.rs +398 -0
  18. pyneat_cli-3.0.4/pyneat-rs/src/integrations/mod.rs +22 -0
  19. pyneat_cli-3.0.4/pyneat-rs/src/integrations/sonarqube.rs +343 -0
  20. pyneat_cli-3.0.4/pyneat-rs/src/lib.rs +176 -0
  21. pyneat_cli-3.0.4/pyneat-rs/src/lib_tests.rs +107 -0
  22. pyneat_cli-3.0.4/pyneat-rs/src/lsp/mod.rs +448 -0
  23. pyneat_cli-3.0.4/pyneat-rs/src/main.rs +1071 -0
  24. pyneat_cli-3.0.4/pyneat-rs/src/rules/ast_rules.rs +544 -0
  25. pyneat_cli-3.0.4/pyneat-rs/src/rules/base.rs +152 -0
  26. pyneat_cli-3.0.4/pyneat-rs/src/rules/extended_security.rs +1589 -0
  27. pyneat_cli-3.0.4/pyneat-rs/src/rules/mod.rs +58 -0
  28. pyneat_cli-3.0.4/pyneat-rs/src/rules/php_rules/mod.rs +19 -0
  29. pyneat_cli-3.0.4/pyneat-rs/src/rules/php_rules/php.rs +669 -0
  30. pyneat_cli-3.0.4/pyneat-rs/src/rules/quality.rs +482 -0
  31. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec024.rs +59 -0
  32. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec025.rs +59 -0
  33. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec026.rs +60 -0
  34. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec042.rs +60 -0
  35. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec043.rs +58 -0
  36. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec044.rs +59 -0
  37. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec060.rs +63 -0
  38. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec061.rs +66 -0
  39. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec062.rs +63 -0
  40. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec063.rs +79 -0
  41. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec064.rs +64 -0
  42. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec065.rs +63 -0
  43. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec066.rs +68 -0
  44. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec067.rs +76 -0
  45. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec068.rs +65 -0
  46. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec069.rs +73 -0
  47. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec070.rs +76 -0
  48. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec071.rs +64 -0
  49. pyneat_cli-3.0.4/pyneat-rs/src/rules/sec072.rs +67 -0
  50. pyneat_cli-3.0.4/pyneat-rs/src/rules/security.rs +2477 -0
  51. pyneat_cli-3.0.4/pyneat-rs/src/sarif/mod.rs +607 -0
  52. pyneat_cli-3.0.4/pyneat-rs/src/sarif/writer.rs +231 -0
  53. pyneat_cli-3.0.4/pyneat-rs/src/scanner/base.rs +219 -0
  54. pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/mod.rs +52 -0
  55. pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/parser.rs +217 -0
  56. pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/quality_rules.rs +472 -0
  57. pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/rules.rs +1372 -0
  58. pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/mod.rs +66 -0
  59. pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/parser.rs +240 -0
  60. pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/rules/mod.rs +20 -0
  61. pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/rules/rules.rs +708 -0
  62. pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/mod.rs +54 -0
  63. pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/parser.rs +323 -0
  64. pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/quality_rules.rs +493 -0
  65. pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/rules.rs +165 -0
  66. pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/security_rules.rs +2041 -0
  67. pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/mod.rs +115 -0
  68. pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/parser.rs +336 -0
  69. pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/quality_rules.rs +565 -0
  70. pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/rules.rs +2401 -0
  71. pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/security_rules.rs +1691 -0
  72. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ln_ast.rs +228 -0
  73. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ln_ast_converter.rs +641 -0
  74. pyneat_cli-3.0.4/pyneat-rs/src/scanner/mod.rs +41 -0
  75. pyneat_cli-3.0.4/pyneat-rs/src/scanner/multilang.rs +775 -0
  76. pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/mod.rs +54 -0
  77. pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/parser.rs +178 -0
  78. pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/quality_rules.rs +471 -0
  79. pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/rules.rs +130 -0
  80. pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/security_rules.rs +1246 -0
  81. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/mod.rs +54 -0
  82. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/parser.rs +189 -0
  83. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/quality_rules.rs +420 -0
  84. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/rules.rs +358 -0
  85. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/security_rules/mod.rs +20 -0
  86. pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/security_rules/security_rules.rs +765 -0
  87. pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/mod.rs +71 -0
  88. pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/parser.rs +276 -0
  89. pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/quality_rules.rs +702 -0
  90. pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/rules.rs +290 -0
  91. pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/security_rules.rs +917 -0
  92. pyneat_cli-3.0.4/pyneat-rs/src/scanner/tree_sitter.rs +154 -0
  93. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.clean.js +22 -0
  94. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.cs +49 -0
  95. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.go +25 -0
  96. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.java +47 -0
  97. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.js +22 -0
  98. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.php +24 -0
  99. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.rb +47 -0
  100. pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.rs +28 -0
  101. pyneat_cli-3.0.4/pyneat-rs/test-samples/simple.go +11 -0
  102. pyneat_cli-3.0.4/pyneat-rs/test-samples/vuln.go +37 -0
  103. pyneat_cli-3.0.4/pyneat-rs/tests/test_multilang.rs +190 -0
  104. pyneat_cli-3.0.4/pyneat-rs/tests/test_rules.rs +115 -0
  105. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyproject.toml +7 -14
  106. pyneat_cli-3.0.2/MANIFEST.in +0 -6
  107. pyneat_cli-3.0.2/PKG-INFO +0 -605
  108. pyneat_cli-3.0.2/pyneat/__init__.py +0 -371
  109. pyneat_cli-3.0.2/pyneat/__main__.py +0 -24
  110. pyneat_cli-3.0.2/pyneat/benchmark.py +0 -542
  111. pyneat_cli-3.0.2/pyneat/cli.py +0 -1800
  112. pyneat_cli-3.0.2/pyneat/config.py +0 -453
  113. pyneat_cli-3.0.2/pyneat/config_loader.py +0 -294
  114. pyneat_cli-3.0.2/pyneat/core/__init__.py +0 -81
  115. pyneat_cli-3.0.2/pyneat/core/atomic.py +0 -215
  116. pyneat_cli-3.0.2/pyneat/core/engine.py +0 -652
  117. pyneat_cli-3.0.2/pyneat/core/manifest.py +0 -1205
  118. pyneat_cli-3.0.2/pyneat/core/marker_cleanup.py +0 -152
  119. pyneat_cli-3.0.2/pyneat/core/scope_guard.py +0 -152
  120. pyneat_cli-3.0.2/pyneat/core/semantic_guard.py +0 -248
  121. pyneat_cli-3.0.2/pyneat/core/type_shield.py +0 -226
  122. pyneat_cli-3.0.2/pyneat/core/types.py +0 -759
  123. pyneat_cli-3.0.2/pyneat/plugins/__init__.py +0 -55
  124. pyneat_cli-3.0.2/pyneat/plugins/base.py +0 -313
  125. pyneat_cli-3.0.2/pyneat/plugins/builtin/__init__.py +0 -109
  126. pyneat_cli-3.0.2/pyneat/pre_commit.py +0 -120
  127. pyneat_cli-3.0.2/pyneat/rules/__init__.py +0 -76
  128. pyneat_cli-3.0.2/pyneat/rules/ai_bugs.py +0 -715
  129. pyneat_cli-3.0.2/pyneat/rules/base.py +0 -92
  130. pyneat_cli-3.0.2/pyneat/rules/comments.py +0 -179
  131. pyneat_cli-3.0.2/pyneat/rules/conservative.py +0 -36
  132. pyneat_cli-3.0.2/pyneat/rules/csharp/__init__.py +0 -28
  133. pyneat_cli-3.0.2/pyneat/rules/csharp/security.py +0 -426
  134. pyneat_cli-3.0.2/pyneat/rules/dataclass.py +0 -313
  135. pyneat_cli-3.0.2/pyneat/rules/deadcode.py +0 -517
  136. pyneat_cli-3.0.2/pyneat/rules/debug.py +0 -392
  137. pyneat_cli-3.0.2/pyneat/rules/destructive.py +0 -43
  138. pyneat_cli-3.0.2/pyneat/rules/duplication.py +0 -131
  139. pyneat_cli-3.0.2/pyneat/rules/fstring.py +0 -261
  140. pyneat_cli-3.0.2/pyneat/rules/go/__init__.py +0 -32
  141. pyneat_cli-3.0.2/pyneat/rules/go/security.py +0 -483
  142. pyneat_cli-3.0.2/pyneat/rules/go/unchecked_error.py +0 -81
  143. pyneat_cli-3.0.2/pyneat/rules/imports.py +0 -184
  144. pyneat_cli-3.0.2/pyneat/rules/init_protection.py +0 -218
  145. pyneat_cli-3.0.2/pyneat/rules/is_not_none.py +0 -129
  146. pyneat_cli-3.0.2/pyneat/rules/isolated.py +0 -164
  147. pyneat_cli-3.0.2/pyneat/rules/java/__init__.py +0 -28
  148. pyneat_cli-3.0.2/pyneat/rules/java/security.py +0 -482
  149. pyneat_cli-3.0.2/pyneat/rules/javascript/__init__.py +0 -34
  150. pyneat_cli-3.0.2/pyneat/rules/javascript/security.py +0 -669
  151. pyneat_cli-3.0.2/pyneat/rules/javascript/strict_equality.py +0 -71
  152. pyneat_cli-3.0.2/pyneat/rules/javascript/var_to_const.py +0 -66
  153. pyneat_cli-3.0.2/pyneat/rules/magic_numbers.py +0 -149
  154. pyneat_cli-3.0.2/pyneat/rules/match_case.py +0 -376
  155. pyneat_cli-3.0.2/pyneat/rules/multilang/__init__.py +0 -58
  156. pyneat_cli-3.0.2/pyneat/rules/multilang/base.py +0 -253
  157. pyneat_cli-3.0.2/pyneat/rules/multilang/debug_statements.py +0 -194
  158. pyneat_cli-3.0.2/pyneat/rules/multilang/deep_nesting.py +0 -80
  159. pyneat_cli-3.0.2/pyneat/rules/multilang/empty_catch.py +0 -90
  160. pyneat_cli-3.0.2/pyneat/rules/multilang/redundant_comments.py +0 -158
  161. pyneat_cli-3.0.2/pyneat/rules/multilang/remove_todos.py +0 -73
  162. pyneat_cli-3.0.2/pyneat/rules/multilang/unused_function.py +0 -151
  163. pyneat_cli-3.0.2/pyneat/rules/multilang/unused_import.py +0 -253
  164. pyneat_cli-3.0.2/pyneat/rules/naming.py +0 -332
  165. pyneat_cli-3.0.2/pyneat/rules/performance.py +0 -354
  166. pyneat_cli-3.0.2/pyneat/rules/php/__init__.py +0 -28
  167. pyneat_cli-3.0.2/pyneat/rules/php/security.py +0 -437
  168. pyneat_cli-3.0.2/pyneat/rules/quality.py +0 -124
  169. pyneat_cli-3.0.2/pyneat/rules/range_len_pattern.py +0 -215
  170. pyneat_cli-3.0.2/pyneat/rules/redundant.py +0 -190
  171. pyneat_cli-3.0.2/pyneat/rules/refactoring.py +0 -258
  172. pyneat_cli-3.0.2/pyneat/rules/registry.py +0 -250
  173. pyneat_cli-3.0.2/pyneat/rules/ruby/__init__.py +0 -28
  174. pyneat_cli-3.0.2/pyneat/rules/ruby/security.py +0 -401
  175. pyneat_cli-3.0.2/pyneat/rules/rust/__init__.py +0 -28
  176. pyneat_cli-3.0.2/pyneat/rules/rust/security.py +0 -410
  177. pyneat_cli-3.0.2/pyneat/rules/safe.py +0 -37
  178. pyneat_cli-3.0.2/pyneat/rules/secret_classifier.py +0 -252
  179. pyneat_cli-3.0.2/pyneat/rules/security.py +0 -1212
  180. pyneat_cli-3.0.2/pyneat/rules/security_pack/__init__.py +0 -77
  181. pyneat_cli-3.0.2/pyneat/rules/security_pack/critical.py +0 -59
  182. pyneat_cli-3.0.2/pyneat/rules/security_pack/high.py +0 -39
  183. pyneat_cli-3.0.2/pyneat/rules/security_pack/info.py +0 -39
  184. pyneat_cli-3.0.2/pyneat/rules/security_pack/low.py +0 -39
  185. pyneat_cli-3.0.2/pyneat/rules/security_pack/medium.py +0 -44
  186. pyneat_cli-3.0.2/pyneat/rules/security_registry.py +0 -1991
  187. pyneat_cli-3.0.2/pyneat/rules/taint_analysis.py +0 -306
  188. pyneat_cli-3.0.2/pyneat/rules/typing.py +0 -287
  189. pyneat_cli-3.0.2/pyneat/rules/universal/__init__.py +0 -69
  190. pyneat_cli-3.0.2/pyneat/rules/universal/arrow_antipattern.py +0 -62
  191. pyneat_cli-3.0.2/pyneat/rules/universal/base.py +0 -123
  192. pyneat_cli-3.0.2/pyneat/rules/universal/debug_artifacts.py +0 -136
  193. pyneat_cli-3.0.2/pyneat/rules/universal/empty_catch.py +0 -59
  194. pyneat_cli-3.0.2/pyneat/rules/universal/hardcoded_secrets.py +0 -81
  195. pyneat_cli-3.0.2/pyneat/rules/universal/todos.py +0 -52
  196. pyneat_cli-3.0.2/pyneat/rules/unused.py +0 -332
  197. pyneat_cli-3.0.2/pyneat/scanner/rust_scanner.py +0 -329
  198. pyneat_cli-3.0.2/pyneat/tools/__init__.py +0 -20
  199. pyneat_cli-3.0.2/pyneat/tools/github_fuzz/__init__.py +0 -322
  200. pyneat_cli-3.0.2/pyneat/tools/github_fuzz/__main__.py +0 -720
  201. pyneat_cli-3.0.2/pyneat/tools/github_fuzz/debug_logger.py +0 -471
  202. pyneat_cli-3.0.2/pyneat/tools/github_fuzz/fuzz_runner.py +0 -628
  203. pyneat_cli-3.0.2/pyneat/tools/github_fuzz/github_client.py +0 -413
  204. pyneat_cli-3.0.2/pyneat/tools/osv_client.py +0 -269
  205. pyneat_cli-3.0.2/pyneat/tools/sbom_generator.py +0 -291
  206. pyneat_cli-3.0.2/pyneat/tools/security/advisory_db.py +0 -741
  207. pyneat_cli-3.0.2/pyneat/tools/security/dependency_scanner.py +0 -393
  208. pyneat_cli-3.0.2/pyneat/tools/vulnerability_scanner.py +0 -422
  209. pyneat_cli-3.0.2/pyneat/utils/naming.py +0 -68
  210. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/hardcoded_secrets.py +0 -96
  211. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/performance.py +0 -354
  212. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/redundant_comments.py +0 -158
  213. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/__init__.py +0 -77
  214. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/critical.py +0 -59
  215. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/high.py +0 -39
  216. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/info.py +0 -39
  217. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/low.py +0 -39
  218. pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/medium.py +0 -44
  219. pyneat_cli-3.0.2/pyneat_cli.egg-info/SOURCES.txt +0 -162
  220. pyneat_cli-3.0.2/pyneat_cli.egg-info/dependency_links.txt +0 -1
  221. pyneat_cli-3.0.2/pyneat_cli.egg-info/entry_points.txt +0 -2
  222. pyneat_cli-3.0.2/pyneat_cli.egg-info/requires.txt +0 -12
  223. pyneat_cli-3.0.2/pyneat_cli.egg-info/top_level.txt +0 -5
  224. pyneat_cli-3.0.2/setup.cfg +0 -4
  225. pyneat_cli-3.0.2/setup.py +0 -3
  226. pyneat_cli-3.0.2/tests/test_agent_marker/test_marker_data.py +0 -653
  227. pyneat_cli-3.0.2/tests/test_engine.py +0 -393
  228. pyneat_cli-3.0.2/tests/test_fuzz.py +0 -181
  229. pyneat_cli-3.0.2/tests/test_fuzz_github.py +0 -309
  230. pyneat_cli-3.0.2/tests/test_integration.py +0 -259
  231. pyneat_cli-3.0.2/tests/test_layers.py +0 -410
  232. pyneat_cli-3.0.2/tests/test_manifest_export/test_manifest_export.py +0 -589
  233. pyneat_cli-3.0.2/tests/test_marker_cleanup/test_marker_cleanup.py +0 -115
  234. pyneat_cli-3.0.2/tests/test_multilang/test_fixtures.py +0 -362
  235. pyneat_cli-3.0.2/tests/test_rules/test_ai_bugs_extended.py +0 -270
  236. pyneat_cli-3.0.2/tests/test_rules/test_dataclass_and_matchcase.py +0 -192
  237. pyneat_cli-3.0.2/tests/test_rules/test_deadcode.py +0 -85
  238. pyneat_cli-3.0.2/tests/test_rules/test_debug.py +0 -84
  239. pyneat_cli-3.0.2/tests/test_rules/test_fstring.py +0 -59
  240. pyneat_cli-3.0.2/tests/test_rules/test_is_not_none.py +0 -70
  241. pyneat_cli-3.0.2/tests/test_rules/test_naming.py +0 -93
  242. pyneat_cli-3.0.2/tests/test_rules/test_performance_and_quality.py +0 -357
  243. pyneat_cli-3.0.2/tests/test_rules/test_range_len.py +0 -61
  244. pyneat_cli-3.0.2/tests/test_rules/test_refactoring.py +0 -74
  245. pyneat_cli-3.0.2/tests/test_rust_scanner.py +0 -160
  246. pyneat_cli-3.0.2/tests/test_security/__init__.py +0 -1
  247. pyneat_cli-3.0.2/tests/test_security/test_command_injection.py +0 -166
  248. pyneat_cli-3.0.2/tests/test_security/test_hardcoded_secrets.py +0 -86
  249. pyneat_cli-3.0.2/tests/test_security/test_php_all.py +0 -269
  250. pyneat_cli-3.0.2/tests/test_security/test_php_eval.py +0 -70
  251. pyneat_cli-3.0.2/tests/test_security/test_php_sql_injection.py +0 -66
  252. pyneat_cli-3.0.2/tests/test_security/test_php_xss.py +0 -58
  253. pyneat_cli-3.0.2/tests/test_security/test_pickle_rce.py +0 -47
  254. pyneat_cli-3.0.2/tests/test_security/test_sql_injection.py +0 -174
  255. pyneat_cli-3.0.2/tests/test_security/test_weak_crypto.py +0 -91
  256. pyneat_cli-3.0.2/tests/test_security/test_yaml_unsafe.py +0 -61
  257. pyneat_cli-3.0.2/tests/test_semantic_integrity.py +0 -712
  258. pyneat_cli-3.0.2/tests/test_smoke.py +0 -45
  259. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/LICENSE +0 -0
  260. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/README.md +0 -0
  261. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/bench_python.py +0 -0
  262. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/benchmark.py +0 -0
  263. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/compare_with_competitors.py +0 -0
  264. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/test_code.py +0 -0
  265. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/test_rust.py +0 -0
  266. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/test_scanner.py +0 -0
  267. {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat_rs/__init__.pyi +0 -0
@@ -1,43 +1,44 @@
1
- Metadata-Version: 2.4
2
- Name: pyneat-cli
3
- Version: 3.0.2
4
- Summary: AI-Generated Code Scanner detects bugs, security vulnerabilities, and quality issues that AI coding assistants introduce
5
- Author-email: Khanh Nam <khanhnam.copywriting@gmail.com>
6
- License-Expression: AGPL-3.0-or-later
7
- Project-URL: Homepage, https://github.com/pyneat/pyneat
8
- Project-URL: Documentation, https://github.com/pyneat/pyneat#readme
9
- Project-URL: Repository, https://github.com/pyneat/pyneat
10
- Project-URL: Changelog, https://github.com/pyneat/pyneat/blob/main/CHANGELOG.md
11
- Project-URL: Issues, https://github.com/pyneat/pyneat/issues
12
- Keywords: ai,code-cleaner,python,linter,formatter,security,dead-code,refactoring,ast,auto-fix
13
- Classifier: Development Status :: 4 - Beta
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Natural Language :: Chinese (Simplified)
16
- Classifier: Natural Language :: English
17
- Classifier: Operating System :: OS Independent
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.10
20
- Classifier: Programming Language :: Python :: 3.11
21
- Classifier: Programming Language :: Python :: 3.12
22
- Classifier: Programming Language :: Python :: 3.13
23
- Classifier: Programming Language :: Python :: 3.14
24
- Classifier: Programming Language :: Rust
25
- Classifier: Topic :: Software Development :: Code Generators
26
- Classifier: Topic :: Software Development :: Quality Assurance
27
- Requires-Python: >=3.10
28
- Description-Content-Type: text/markdown
29
- License-File: LICENSE
30
- Requires-Dist: click>=8.0.0
31
- Requires-Dist: libcst>=0.4.0
32
- Provides-Extra: dev
33
- Requires-Dist: pytest>=7.0.0; extra == "dev"
34
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
35
- Provides-Extra: pre-commit
36
- Requires-Dist: pre-commit>=3.0.0; extra == "pre-commit"
37
- Provides-Extra: rust
38
- Requires-Dist: maturin<2.0,>=1.5; extra == "rust"
39
- Dynamic: license-file
40
-
1
+ Metadata-Version: 2.4
2
+ Name: pyneat-cli
3
+ Version: 3.0.4
4
+ Classifier: Development Status :: 4 - Beta
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
7
+ Classifier: Natural Language :: Chinese (Simplified)
8
+ Classifier: Natural Language :: English
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Programming Language :: Python :: 3.14
16
+ Classifier: Programming Language :: Rust
17
+ Classifier: Topic :: Software Development :: Code Generators
18
+ Classifier: Topic :: Software Development :: Quality Assurance
19
+ Requires-Dist: click>=8.0.0
20
+ Requires-Dist: libcst>=0.4.0
21
+ Requires-Dist: requests>=2.31.0
22
+ Requires-Dist: pytest>=7.0.0 ; extra == 'dev'
23
+ Requires-Dist: pytest-asyncio>=0.21.0 ; extra == 'dev'
24
+ Requires-Dist: pre-commit>=3.0.0 ; extra == 'pre-commit'
25
+ Requires-Dist: maturin>=1.5,<2.0 ; extra == 'rust'
26
+ Provides-Extra: dev
27
+ Provides-Extra: pre-commit
28
+ Provides-Extra: rust
29
+ License-File: LICENSE
30
+ Summary: AI-Generated Code Scanner — detects bugs, security vulnerabilities, and quality issues that AI coding assistants introduce
31
+ Keywords: ai,code-cleaner,python,linter,formatter,security,dead-code,refactoring,ast,auto-fix
32
+ Author-email: Khanh Nam <khanhnam.copywriting@gmail.com>
33
+ License: GNU AGPL-3.0-or-later
34
+ Requires-Python: >=3.10
35
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
36
+ Project-URL: Changelog, https://github.com/pyneat/pyneat/blob/main/CHANGELOG.md
37
+ Project-URL: Documentation, https://github.com/pyneat/pyneat#readme
38
+ Project-URL: Homepage, https://github.com/pyneat/pyneat
39
+ Project-URL: Issues, https://github.com/pyneat/pyneat/issues
40
+ Project-URL: Repository, https://github.com/pyneat/pyneat
41
+
41
42
  # PyNeat: AI-Generated Code Cleaner
42
43
 
43
44
  **PyNeat 3.0.0** is a code scanning and cleanup tool built specifically for AI-generated code. Unlike generic linters, PyNeat targets the patterns that AI coding assistants systematically produce — phantom packages, hallucinated parameters, resource leaks, OWASP vulnerabilities, AI-specific security risks — and cleans them up automatically. Supports 9 languages.
@@ -603,3 +604,4 @@ AGPLv3 with Commercial Exception: Commercial use of this software
603
604
  (e.g., bundling in paid products, SaaS services) is permitted,
604
605
  provided that you comply with the open source obligations under AGPLv3 §11.
605
606
  Contact the author for alternative licensing arrangements.
607
+