nat-engine 1__py3-none-any.whl

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 (299) hide show
  1. mannf/__init__.py +33 -0
  2. mannf/__main__.py +10 -0
  3. mannf/_version.py +8 -0
  4. mannf/agents/__init__.py +7 -0
  5. mannf/agents/analyzer_agent.py +9 -0
  6. mannf/agents/base.py +9 -0
  7. mannf/agents/bdi_agent.py +9 -0
  8. mannf/agents/belief_state.py +9 -0
  9. mannf/agents/coordinator_agent.py +9 -0
  10. mannf/agents/executor_agent.py +9 -0
  11. mannf/agents/monitor_agent.py +9 -0
  12. mannf/agents/oracle_agent.py +9 -0
  13. mannf/agents/planner_agent.py +9 -0
  14. mannf/agents/test_agent.py +9 -0
  15. mannf/anomaly/__init__.py +7 -0
  16. mannf/anomaly/enhanced_detector.py +9 -0
  17. mannf/cli.py +9 -0
  18. mannf/core/__init__.py +26 -0
  19. mannf/core/agents/__init__.py +52 -0
  20. mannf/core/agents/accessibility_scanner_agent.py +245 -0
  21. mannf/core/agents/analyzer_agent.py +224 -0
  22. mannf/core/agents/autonomous_loop_agent.py +1086 -0
  23. mannf/core/agents/autonomous_loop_models.py +62 -0
  24. mannf/core/agents/autonomous_run_differ.py +427 -0
  25. mannf/core/agents/base.py +128 -0
  26. mannf/core/agents/bdi_agent.py +330 -0
  27. mannf/core/agents/belief_state.py +202 -0
  28. mannf/core/agents/browser_coordinator_agent.py +224 -0
  29. mannf/core/agents/browser_executor_agent.py +410 -0
  30. mannf/core/agents/coordinator_agent.py +262 -0
  31. mannf/core/agents/executor_agent.py +222 -0
  32. mannf/core/agents/monitor_agent.py +188 -0
  33. mannf/core/agents/oracle_agent.py +150 -0
  34. mannf/core/agents/performance_testing_agent.py +279 -0
  35. mannf/core/agents/planner_agent.py +128 -0
  36. mannf/core/agents/test_agent.py +249 -0
  37. mannf/core/agents/visual_regression_agent.py +311 -0
  38. mannf/core/agents/web_crawler_agent.py +510 -0
  39. mannf/core/agents/worker_pool.py +366 -0
  40. mannf/core/anomaly/__init__.py +14 -0
  41. mannf/core/anomaly/enhanced_detector.py +541 -0
  42. mannf/core/browser/__init__.py +63 -0
  43. mannf/core/browser/accessibility_scanner.py +424 -0
  44. mannf/core/browser/discovery_model.py +178 -0
  45. mannf/core/browser/dom_snapshot.py +349 -0
  46. mannf/core/browser/ingestor_bridge.py +371 -0
  47. mannf/core/browser/performance_metrics.py +217 -0
  48. mannf/core/browser/reflection_analyzer.py +442 -0
  49. mannf/core/browser/scenario_generator.py +1100 -0
  50. mannf/core/browser/security_scenario_generator.py +695 -0
  51. mannf/core/browser/visual_comparer.py +159 -0
  52. mannf/core/diagnostics/__init__.py +28 -0
  53. mannf/core/diagnostics/failure_clusterer.py +211 -0
  54. mannf/core/diagnostics/flake_detector.py +233 -0
  55. mannf/core/diagnostics/root_cause_analyzer.py +273 -0
  56. mannf/core/distributed/__init__.py +16 -0
  57. mannf/core/distributed/endpoint.py +139 -0
  58. mannf/core/distributed/system_under_test.py +207 -0
  59. mannf/core/functional_orchestrator.py +428 -0
  60. mannf/core/messaging/__init__.py +11 -0
  61. mannf/core/messaging/bus.py +113 -0
  62. mannf/core/messaging/messages.py +89 -0
  63. mannf/core/nat_orchestrator.py +342 -0
  64. mannf/core/neural/__init__.py +183 -0
  65. mannf/core/orchestrator.py +272 -0
  66. mannf/core/prioritization/__init__.py +17 -0
  67. mannf/core/prioritization/adaptive_controller.py +509 -0
  68. mannf/core/prioritization/belief_prioritizer.py +231 -0
  69. mannf/core/prioritization/risk_scorer.py +430 -0
  70. mannf/core/reporting/__init__.py +12 -0
  71. mannf/core/reporting/unified_report.py +664 -0
  72. mannf/core/testing/__init__.py +17 -0
  73. mannf/core/testing/adaptive_controller.py +149 -0
  74. mannf/core/testing/models.py +179 -0
  75. mannf/core/validation/__init__.py +10 -0
  76. mannf/core/validation/self_validation_runner.py +180 -0
  77. mannf/dashboard/__init__.py +7 -0
  78. mannf/dashboard/app.py +9 -0
  79. mannf/dashboard/models.py +9 -0
  80. mannf/dashboard/static/index.html +2538 -0
  81. mannf/dashboard/telemetry.py +9 -0
  82. mannf/distributed/__init__.py +7 -0
  83. mannf/distributed/endpoint.py +9 -0
  84. mannf/distributed/system_under_test.py +9 -0
  85. mannf/healing/__init__.py +7 -0
  86. mannf/healing/graphql_schema_diff.py +9 -0
  87. mannf/healing/healer.py +9 -0
  88. mannf/healing/models.py +9 -0
  89. mannf/healing/schema_diff.py +9 -0
  90. mannf/integrations/__init__.py +7 -0
  91. mannf/integrations/auth.py +9 -0
  92. mannf/integrations/graphql_parser.py +9 -0
  93. mannf/integrations/graphql_sut.py +9 -0
  94. mannf/integrations/http_sut.py +9 -0
  95. mannf/integrations/openapi_parser.py +9 -0
  96. mannf/integrations/postman_parser.py +9 -0
  97. mannf/llm/__init__.py +7 -0
  98. mannf/llm/anthropic_provider.py +9 -0
  99. mannf/llm/base.py +9 -0
  100. mannf/llm/config.py +9 -0
  101. mannf/llm/factory.py +9 -0
  102. mannf/llm/openai_provider.py +9 -0
  103. mannf/llm/prompts.py +9 -0
  104. mannf/messaging/__init__.py +7 -0
  105. mannf/messaging/bus.py +9 -0
  106. mannf/messaging/messages.py +9 -0
  107. mannf/nat_orchestrator.py +9 -0
  108. mannf/neural/__init__.py +7 -0
  109. mannf/orchestrator.py +9 -0
  110. mannf/prioritization/__init__.py +7 -0
  111. mannf/prioritization/adaptive_controller.py +9 -0
  112. mannf/prioritization/belief_prioritizer.py +9 -0
  113. mannf/prioritization/risk_scorer.py +9 -0
  114. mannf/product/__init__.py +29 -0
  115. mannf/product/admin/__init__.py +3 -0
  116. mannf/product/admin/routes.py +514 -0
  117. mannf/product/auth/__init__.py +5 -0
  118. mannf/product/auth/saml.py +212 -0
  119. mannf/product/billing/__init__.py +5 -0
  120. mannf/product/billing/audit.py +160 -0
  121. mannf/product/billing/feature_gates.py +180 -0
  122. mannf/product/billing/metering.py +179 -0
  123. mannf/product/billing/notifications.py +181 -0
  124. mannf/product/billing/plans.py +133 -0
  125. mannf/product/billing/rate_limits.py +35 -0
  126. mannf/product/billing/stripe_billing.py +906 -0
  127. mannf/product/billing/tenant_auth.py +233 -0
  128. mannf/product/billing/tenant_manager.py +873 -0
  129. mannf/product/cli.py +3900 -0
  130. mannf/product/cli_admin.py +408 -0
  131. mannf/product/dashboard/__init__.py +61 -0
  132. mannf/product/dashboard/app.py +3567 -0
  133. mannf/product/dashboard/models.py +460 -0
  134. mannf/product/dashboard/static/index.html +6347 -0
  135. mannf/product/dashboard/static/manifest.json +25 -0
  136. mannf/product/dashboard/static/pwa-icon-192.png +0 -0
  137. mannf/product/dashboard/static/pwa-icon-512.png +0 -0
  138. mannf/product/dashboard/static/sw.js +64 -0
  139. mannf/product/dashboard/telemetry.py +547 -0
  140. mannf/product/database.py +145 -0
  141. mannf/product/demo.py +844 -0
  142. mannf/product/doctor.py +509 -0
  143. mannf/product/exporters/__init__.py +65 -0
  144. mannf/product/exporters/azuredevops_exporter.py +257 -0
  145. mannf/product/exporters/base.py +307 -0
  146. mannf/product/exporters/bugzilla_exporter.py +200 -0
  147. mannf/product/exporters/dedup.py +275 -0
  148. mannf/product/exporters/finding_adapter.py +216 -0
  149. mannf/product/exporters/github_exporter.py +197 -0
  150. mannf/product/exporters/gitlab_exporter.py +215 -0
  151. mannf/product/exporters/jira_exporter.py +180 -0
  152. mannf/product/exporters/linear_exporter.py +195 -0
  153. mannf/product/exporters/loader.py +233 -0
  154. mannf/product/exporters/pagerduty_exporter.py +363 -0
  155. mannf/product/exporters/sentry_exporter.py +322 -0
  156. mannf/product/exporters/servicenow_exporter.py +240 -0
  157. mannf/product/exporters/shortcut_exporter.py +231 -0
  158. mannf/product/exporters/webhook_exporter.py +383 -0
  159. mannf/product/formatters/__init__.py +18 -0
  160. mannf/product/formatters/allure_formatter.py +161 -0
  161. mannf/product/formatters/ctrf_formatter.py +149 -0
  162. mannf/product/healing/__init__.py +30 -0
  163. mannf/product/healing/graphql_schema_diff.py +152 -0
  164. mannf/product/healing/healer.py +141 -0
  165. mannf/product/healing/models.py +175 -0
  166. mannf/product/healing/schema_diff.py +251 -0
  167. mannf/product/ingestors/__init__.py +77 -0
  168. mannf/product/ingestors/base.py +256 -0
  169. mannf/product/ingestors/bgstm_ingestor.py +764 -0
  170. mannf/product/ingestors/curl_ingestor.py +1019 -0
  171. mannf/product/ingestors/cypress_ingestor.py +487 -0
  172. mannf/product/ingestors/gherkin_ingestor.py +967 -0
  173. mannf/product/ingestors/graphql_ingestor.py +845 -0
  174. mannf/product/ingestors/grpc_ingestor.py +591 -0
  175. mannf/product/ingestors/har_ingestor.py +976 -0
  176. mannf/product/ingestors/loader.py +284 -0
  177. mannf/product/ingestors/models.py +146 -0
  178. mannf/product/ingestors/openapi_ingestor.py +606 -0
  179. mannf/product/ingestors/playwright_ingestor.py +449 -0
  180. mannf/product/ingestors/postman_ingestor.py +631 -0
  181. mannf/product/ingestors/traffic_ingestor.py +679 -0
  182. mannf/product/ingestors/websocket_ingestor.py +526 -0
  183. mannf/product/integrations/__init__.py +21 -0
  184. mannf/product/integrations/auth.py +190 -0
  185. mannf/product/integrations/graphql_parser.py +436 -0
  186. mannf/product/integrations/graphql_sut.py +247 -0
  187. mannf/product/integrations/grpc_sut.py +469 -0
  188. mannf/product/integrations/http_sut.py +237 -0
  189. mannf/product/integrations/kafka_adapter.py +342 -0
  190. mannf/product/integrations/openapi_parser.py +513 -0
  191. mannf/product/integrations/postman_parser.py +467 -0
  192. mannf/product/integrations/webhook_receiver.py +344 -0
  193. mannf/product/integrations/websocket_sut.py +434 -0
  194. mannf/product/llm/__init__.py +25 -0
  195. mannf/product/llm/anthropic_provider.py +94 -0
  196. mannf/product/llm/base.py +267 -0
  197. mannf/product/llm/config.py +48 -0
  198. mannf/product/llm/factory.py +42 -0
  199. mannf/product/llm/openai_provider.py +93 -0
  200. mannf/product/llm/prompts.py +403 -0
  201. mannf/product/llm/root_cause_service.py +311 -0
  202. mannf/product/llm/test_plan_models.py +78 -0
  203. mannf/product/metrics.py +149 -0
  204. mannf/product/middleware/__init__.py +3 -0
  205. mannf/product/middleware/audit_middleware.py +112 -0
  206. mannf/product/middleware/tenant_isolation.py +114 -0
  207. mannf/product/models.py +347 -0
  208. mannf/product/notifications/__init__.py +24 -0
  209. mannf/product/notifications/dispatcher.py +411 -0
  210. mannf/product/onboarding.py +190 -0
  211. mannf/product/orchestration/__init__.py +39 -0
  212. mannf/product/orchestration/ingest_scan_orchestrator.py +339 -0
  213. mannf/product/orchestration/pipeline.py +401 -0
  214. mannf/product/orchestrator.py +987 -0
  215. mannf/product/orchestrator_models.py +269 -0
  216. mannf/product/regression/__init__.py +36 -0
  217. mannf/product/regression/differ.py +172 -0
  218. mannf/product/regression/masking.py +100 -0
  219. mannf/product/regression/models.py +232 -0
  220. mannf/product/regression/recorder.py +124 -0
  221. mannf/product/regression/replayer.py +168 -0
  222. mannf/product/reports/__init__.py +10 -0
  223. mannf/product/reports/pdf.py +132 -0
  224. mannf/product/scheduling/__init__.py +57 -0
  225. mannf/product/scheduling/cron_utils.py +251 -0
  226. mannf/product/scheduling/engine.py +473 -0
  227. mannf/product/scheduling/models.py +86 -0
  228. mannf/product/scheduling/queue.py +894 -0
  229. mannf/product/scheduling/store.py +235 -0
  230. mannf/product/security/__init__.py +21 -0
  231. mannf/product/security/belief_guided.py +143 -0
  232. mannf/product/security/checks/__init__.py +55 -0
  233. mannf/product/security/checks/base.py +69 -0
  234. mannf/product/security/checks/bfla.py +77 -0
  235. mannf/product/security/checks/bola.py +77 -0
  236. mannf/product/security/checks/bopla.py +80 -0
  237. mannf/product/security/checks/broken_auth.py +86 -0
  238. mannf/product/security/checks/graphql_security.py +299 -0
  239. mannf/product/security/checks/inventory.py +70 -0
  240. mannf/product/security/checks/misconfig.py +158 -0
  241. mannf/product/security/checks/resource_consumption.py +70 -0
  242. mannf/product/security/checks/sensitive_flows.py +80 -0
  243. mannf/product/security/checks/ssrf.py +101 -0
  244. mannf/product/security/checks/unsafe_consumption.py +120 -0
  245. mannf/product/security/models.py +92 -0
  246. mannf/product/security/plugin_loader.py +182 -0
  247. mannf/product/security/reporter.py +92 -0
  248. mannf/product/security/scanner.py +183 -0
  249. mannf/product/server.py +6220 -0
  250. mannf/product/setup_wizard.py +873 -0
  251. mannf/product/status.py +404 -0
  252. mannf/product/storage/__init__.py +10 -0
  253. mannf/product/storage/artifact_store.py +343 -0
  254. mannf/product/telemetry.py +300 -0
  255. mannf/product/uninstall.py +169 -0
  256. mannf/product/upgrade.py +139 -0
  257. mannf/product/weights/__init__.py +13 -0
  258. mannf/product/weights/blob_store.py +299 -0
  259. mannf/product/weights/factory.py +42 -0
  260. mannf/product/weights/registry.py +159 -0
  261. mannf/product/weights/store.py +210 -0
  262. mannf/regression/__init__.py +7 -0
  263. mannf/regression/differ.py +9 -0
  264. mannf/regression/masking.py +9 -0
  265. mannf/regression/models.py +9 -0
  266. mannf/regression/recorder.py +9 -0
  267. mannf/regression/replayer.py +9 -0
  268. mannf/security/__init__.py +7 -0
  269. mannf/security/belief_guided.py +9 -0
  270. mannf/security/checks/__init__.py +7 -0
  271. mannf/security/checks/base.py +9 -0
  272. mannf/security/checks/bfla.py +9 -0
  273. mannf/security/checks/bola.py +9 -0
  274. mannf/security/checks/bopla.py +9 -0
  275. mannf/security/checks/broken_auth.py +9 -0
  276. mannf/security/checks/graphql_security.py +9 -0
  277. mannf/security/checks/inventory.py +9 -0
  278. mannf/security/checks/misconfig.py +9 -0
  279. mannf/security/checks/resource_consumption.py +9 -0
  280. mannf/security/checks/sensitive_flows.py +9 -0
  281. mannf/security/checks/ssrf.py +9 -0
  282. mannf/security/checks/unsafe_consumption.py +9 -0
  283. mannf/security/models.py +9 -0
  284. mannf/security/reporter.py +9 -0
  285. mannf/security/scanner.py +9 -0
  286. mannf/server.py +9 -0
  287. mannf/testing/__init__.py +7 -0
  288. mannf/testing/adaptive_controller.py +9 -0
  289. mannf/testing/models.py +9 -0
  290. mannf/weights/__init__.py +7 -0
  291. mannf/weights/registry.py +9 -0
  292. mannf/weights/store.py +9 -0
  293. nat_engine-1.dist-info/METADATA +555 -0
  294. nat_engine-1.dist-info/RECORD +299 -0
  295. nat_engine-1.dist-info/WHEEL +5 -0
  296. nat_engine-1.dist-info/entry_points.txt +4 -0
  297. nat_engine-1.dist-info/licenses/LICENSE +651 -0
  298. nat_engine-1.dist-info/licenses/NOTICE +178 -0
  299. nat_engine-1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,299 @@
1
+ mannf/__init__.py,sha256=A-S8faKKqazlEzc6EwvX5t4LR9o-2O4D2mbmN4YXCdE,1206
2
+ mannf/__main__.py,sha256=CimvMb2iT_J6LmU_OyroYedkMgHe2SXsn8QCjyyhLCU,295
3
+ mannf/_version.py,sha256=yeprQIy6NUY-G4bhq1EOQ_4JDDU9dZvsGS39F9TxcFo,301
4
+ mannf/cli.py,sha256=YI_46SHD-JKXKdCd55FTa0ZCJygPjZIUq2pFZOqtQrQ,368
5
+ mannf/nat_orchestrator.py,sha256=Z2h9aZQENXOXsLdbmEgeUEjW_uca-I1N7fwaHq0XVmc,388
6
+ mannf/orchestrator.py,sha256=lJQZVaSSFG2PghGi9g50w45racbGX1XkR6VBCAIgUmc,380
7
+ mannf/server.py,sha256=DFZL15A_wjAv8dk0c33jhh3lqcuQzPyDXS_-mIy1xPQ,374
8
+ mannf/agents/__init__.py,sha256=f2MgRsOilbnxgIic5ZvmSNTu27LM-HOqy59W62hE0ig,345
9
+ mannf/agents/analyzer_agent.py,sha256=A9AYZBsYMI8KRv578kB07bEzZLdGl1m4x1Us9jb1KQM,398
10
+ mannf/agents/base.py,sha256=rcicVOPqAmCnFvOvsdVSo5hkpg_7hjt1b5mYP2zCzhA,378
11
+ mannf/agents/bdi_agent.py,sha256=yM3-7RIpEfwqN_BZ-BJI_tzwNnwgN9V8Qbbpioyu2I0,388
12
+ mannf/agents/belief_state.py,sha256=EymBmPZ_bBh8C0zziwK2R4LdtIFnUDyrFBgm5CMbCsU,394
13
+ mannf/agents/coordinator_agent.py,sha256=k7MI0yRNEZ26U7B4yctCh2tddiJeuge0GTM1Zz7ITBY,404
14
+ mannf/agents/executor_agent.py,sha256=12tMWUDWT_0NeUt5r0XjJPMXMw7aoLUirj2chLTJzV0,398
15
+ mannf/agents/monitor_agent.py,sha256=Irbk5TdGcWRMOeJSXjAMk07oCUuj2ExB01_V9UC-Qtw,396
16
+ mannf/agents/oracle_agent.py,sha256=61X32FkE3kyrzJBvyOlWpE8K7Vt19QNV7WbaEo5ppGk,394
17
+ mannf/agents/planner_agent.py,sha256=Q34jXp6qtxchHe0DA4BEDCqIxAgQN-be4b2ePPz2VrU,396
18
+ mannf/agents/test_agent.py,sha256=_Wis8b92vHbC1hh4s5VdXI2J2CF4yB6uvWSiab4xblA,390
19
+ mannf/anomaly/__init__.py,sha256=gfBU4P71GL9q-xYW1yvIo3KzMIrfXAVXlispAOqX8Qo,347
20
+ mannf/anomaly/enhanced_detector.py,sha256=NP0gCHMyarx6Z5St4wx2fqHU3qkGOJqynQKFxecoKJw,406
21
+ mannf/core/__init__.py,sha256=-q4YjxUz5v3kLvyjmrejMeGweKyMjkldk766dh8USUc,828
22
+ mannf/core/functional_orchestrator.py,sha256=4kzZ_2qKYF2f2bRp2yovDL7weZuqM1QACURglO-kdgU,16995
23
+ mannf/core/nat_orchestrator.py,sha256=yO0Zz6tyuCEle1fEQ8tTpSwnm_N0e-wF48drqnBa81A,12993
24
+ mannf/core/orchestrator.py,sha256=le_yejd4KCZRHmERfCVuwpl_t2SBw53mhN0tUgYw76M,9832
25
+ mannf/core/agents/__init__.py,sha256=9czrcOzSAcgqLEfT4fSa9k2MSpPlcwDpznKgEpYwPoA,1970
26
+ mannf/core/agents/accessibility_scanner_agent.py,sha256=VTB8G_oXg8xFp4VRc8BlYqmfrS8r0LBLbllLsrjHzrQ,8774
27
+ mannf/core/agents/analyzer_agent.py,sha256=2BxAOYm-g91PPt8pW7fGO45NV0O3AE8rLo1oO5twA0k,8639
28
+ mannf/core/agents/autonomous_loop_agent.py,sha256=pZBTT9zNJ9QVFItUsQDwKEU5Xd12q8rkWObqyaLyvHA,44061
29
+ mannf/core/agents/autonomous_loop_models.py,sha256=iYeAqbc_QzyhCM9WDCiRxdbQwGlUkBlOtd_ZkKCNvQQ,2291
30
+ mannf/core/agents/autonomous_run_differ.py,sha256=Rz4X5tuqW6JgMZgZNGOIUsXR5jURonsE-VxytkB9D20,15095
31
+ mannf/core/agents/base.py,sha256=wnHDzUtPlsODdq5nvKcWycnwqBziTF2_cmHB6l6X5_8,4562
32
+ mannf/core/agents/bdi_agent.py,sha256=jsmuQg_NBvacudc_gSCRBPQRok1_jyCb5mKgH8UKXHw,13390
33
+ mannf/core/agents/belief_state.py,sha256=au6f8Q1Waek26Jv85lSuTGTWAPjDq3Q97f31CvAH9Hk,7295
34
+ mannf/core/agents/browser_coordinator_agent.py,sha256=3N1SVgyrrTpw6iasG3vzWR59uZL-0DPiGowKvB9vSoY,7447
35
+ mannf/core/agents/browser_executor_agent.py,sha256=hVVN1gHoaXsep18gXYBNvtYPfeQJSONCZ1INBvEKr-s,14970
36
+ mannf/core/agents/coordinator_agent.py,sha256=qLFNg597ycC-jhwCUUytsCTUiM3A35C4IoDDmlR7C00,9991
37
+ mannf/core/agents/executor_agent.py,sha256=gFL8VEttmMIS7R3P8oM5wgBme_xDK8ROaLFE9mHopfg,8183
38
+ mannf/core/agents/monitor_agent.py,sha256=I5UnDisHs0TQf1CPbseXSIa2Fjrw-vmP6vopaZCEqyo,7171
39
+ mannf/core/agents/oracle_agent.py,sha256=XoGOzoj9GLfTe-Tjo7uMjMpU2E7VhdQ01mVLZdl3Jkg,5212
40
+ mannf/core/agents/performance_testing_agent.py,sha256=y2IrLL5X-avAwhejKviIGXYyM2zf2WTYg68EgzWybKg,10200
41
+ mannf/core/agents/planner_agent.py,sha256=eHBq9dXZdIz0ME_QRrDSeH-WwB4ZDeJgj5aBF14O7E8,4738
42
+ mannf/core/agents/test_agent.py,sha256=2FTaeuSdi2dduwHbA4E3WzAuaw_jijbHjsXbjoMi7KU,9671
43
+ mannf/core/agents/visual_regression_agent.py,sha256=K0Q6VMrne71XkCEnXgOBZbAV84en5RxOxm4kWwTymIk,11002
44
+ mannf/core/agents/web_crawler_agent.py,sha256=l9-puBbAUgctNMCnqfS00QnhhPHwdvqw_y3nasxgTRM,18784
45
+ mannf/core/agents/worker_pool.py,sha256=o9Ur6GGmIAS13EXqD2mpCdjRIej_CMzxYkHb3ROGfMs,13112
46
+ mannf/core/anomaly/__init__.py,sha256=sHbEmpHK3_8nuuRv_Nc8Nt8hfvfwcj8MLDfZZdvnSDM,446
47
+ mannf/core/anomaly/enhanced_detector.py,sha256=MzAsacrFtecnqKTIX0JDw75zlf2hc6WPqbb7Zf8EeB0,19316
48
+ mannf/core/browser/__init__.py,sha256=84eENHqRlnv4mjwDandVkY8UYAW-aB2lpdOh5ll_9dw,1941
49
+ mannf/core/browser/accessibility_scanner.py,sha256=qvTOxib_xdosCaTMZ9-acY5dNdTJ6GaQI75UBYUeIts,15375
50
+ mannf/core/browser/discovery_model.py,sha256=Z3ehhcmp5UVXKgmlgvdxLOwUXKgirdQu5_V9xtcpgYU,4593
51
+ mannf/core/browser/dom_snapshot.py,sha256=DEQge71078TFQlw2TIouLn3A5_6E2ihE4DqJK3kELa0,11409
52
+ mannf/core/browser/ingestor_bridge.py,sha256=C9TAIJwACBfe8hW5-uj643hEHlPw_bUQjcfCDNiNzu4,13422
53
+ mannf/core/browser/performance_metrics.py,sha256=48VuwMDbRNDGVUUG-o4X2cfX307_X21xPhxI3tU056I,7348
54
+ mannf/core/browser/reflection_analyzer.py,sha256=qZFsWDybu30zRaK4j39cSovYqxqPWer5cKlM3VN2etk,17054
55
+ mannf/core/browser/scenario_generator.py,sha256=Vitbu_yC68gd8XWIoghsTkg1li9qKHmRrL30KvAqLao,42166
56
+ mannf/core/browser/security_scenario_generator.py,sha256=P5tS1w97knNUzQB_OrdenBMsWyGPSwGaCowxxlDVLQg,27231
57
+ mannf/core/browser/visual_comparer.py,sha256=dwyi1PDjm4mpKfCg7MZ8ZR0qHeJ-saT5h2dC7qZ4j5w,4658
58
+ mannf/core/diagnostics/__init__.py,sha256=7DKW4_G50HKm_UFwHgA1YXJ9BFKr3Fa1QSVgjkLJ8AM,1028
59
+ mannf/core/diagnostics/failure_clusterer.py,sha256=SQpoxxmMmDXsQAsQbETCMR2GJHcMYSJNvYZtYd55i_Q,7498
60
+ mannf/core/diagnostics/flake_detector.py,sha256=Jwhveuvo9ZqEqLet96iUS-n1MniyKt7TBf8rhmPKHdE,8155
61
+ mannf/core/diagnostics/root_cause_analyzer.py,sha256=xkCUdNyy3q5W0bBHjwAsKYU6x2mhfPJB57BiVNhy9-s,9741
62
+ mannf/core/distributed/__init__.py,sha256=5TTDhzoMLPAtmqcJODoxYLhhGIPJY-AEsrDN230i2JY,562
63
+ mannf/core/distributed/endpoint.py,sha256=2oRGO73qgmV4wNVOzarXMVhq_Oyp5YMASexIiWj5xnI,4695
64
+ mannf/core/distributed/system_under_test.py,sha256=dAovJybYYwLIcJo2fvr6KOoc49r7M5JscbevsGETWB8,7343
65
+ mannf/core/messaging/__init__.py,sha256=9CyYK1K2ygJPQuhiYCNovvblYR9QPUP7oDM128tV_JE,453
66
+ mannf/core/messaging/bus.py,sha256=EBYZRTZxOh9A7ltnwz-mznVdGiaWKBs1UMvxrAG7z98,4002
67
+ mannf/core/messaging/messages.py,sha256=CL_d-Fpzv0HaPNak9tTa7EZfwX1_NWqHhfC5-ElUXbU,4544
68
+ mannf/core/neural/__init__.py,sha256=vRT0F2e3YSV-WKa-3j8qqeHEpVMXxwNcbrg1Y8nj_4s,6416
69
+ mannf/core/prioritization/__init__.py,sha256=hu3QpNlSs-Pzn49_qWD0PnTmoWBygWf0tLxcgnTIwco,650
70
+ mannf/core/prioritization/adaptive_controller.py,sha256=eB5VMR__gJFr7c275mlRL6MYR1LLlm5Vzui2tUMsdNw,19323
71
+ mannf/core/prioritization/belief_prioritizer.py,sha256=EtWm-z8v6dBve66jjHi_m4D6NjBN5p-0fWy_K1oMAmk,8484
72
+ mannf/core/prioritization/risk_scorer.py,sha256=OgNiAtSEY-9qoc4TzQVuXLOydDWl1M4Wsh5PLVLg_Yw,16450
73
+ mannf/core/reporting/__init__.py,sha256=yyXplAjGwvaTOYjT_dApVUtQkLUFGW81-VXHpqfMOF8,429
74
+ mannf/core/reporting/unified_report.py,sha256=7xkn-ZscTsciEtHno_VkPTBRnBGiHW-1xc93DAHvcy8,25922
75
+ mannf/core/testing/__init__.py,sha256=s1Wb2j1BsO4oe-AZtVrWIwUSm6o8LYxzAQlGix9T7lI,550
76
+ mannf/core/testing/adaptive_controller.py,sha256=NkCKBJEDysY44u6aTVS0A07XdfXeEStfJgiSQLnLrzM,5008
77
+ mannf/core/testing/models.py,sha256=1mWNPkaqZrFHoGsAM5BDvZrFBSjFZ5gHX5T8jOnT-M8,5584
78
+ mannf/core/validation/__init__.py,sha256=tQrYkme0dyYFOO_6uSl-XerFc4sX5WY2JiPTklsSozU,411
79
+ mannf/core/validation/self_validation_runner.py,sha256=sBcjh6hap8a3UsM2XvKYs6MsQeshZxGJ9WO1lDh1qio,6172
80
+ mannf/dashboard/__init__.py,sha256=3gYJ8_hTPNp6dSiq5yHvD0I1KrZ9brl15U-TGhF8iP4,357
81
+ mannf/dashboard/app.py,sha256=pRzVVt0U5l3Z8Xf0hlbLmT0JyB3eeBsIExlM1UWblIg,388
82
+ mannf/dashboard/models.py,sha256=2_QO8LKL9Fx07-iNFmBC63KBsBkg-mF7bGeUb642QVQ,394
83
+ mannf/dashboard/telemetry.py,sha256=3mCmAGBdn9XBtLPUJ9My5VHTf1aj5L8JIGQ-Zp34FGc,400
84
+ mannf/dashboard/static/index.html,sha256=QwpSrVQbkFYxw2zOrGK2QrNXAOGAEYII6FMtIsItdEI,121429
85
+ mannf/distributed/__init__.py,sha256=j-uhhkvh83TiPbA9Ao-YNdkFRE8eT9f36yz7a_sAaE0,355
86
+ mannf/distributed/endpoint.py,sha256=izIm2w-9ZZKnP6TW-i8mX68kI15qzBnuZrxfY-bHDh4,396
87
+ mannf/distributed/system_under_test.py,sha256=dmnmFW19z5mpFOCrSBe30r2Ya7Gy3HDxSdsMlzIbakQ,414
88
+ mannf/healing/__init__.py,sha256=K-v4dqbwVBC9Jw904cmS3TYYeTXeWa1cgNRvE61iG0g,353
89
+ mannf/healing/graphql_schema_diff.py,sha256=xbBBu1x3th8Ej0ZW10tb3SYJ3WzYQQF0zdEFahQFpGQ,416
90
+ mannf/healing/healer.py,sha256=du-d7Xt1WN44sSYVnz4DLD1Fn-R3c6bg6g5_RE76gUk,390
91
+ mannf/healing/models.py,sha256=5d6wr6JnpE1IzbopqBRQR9Wzh-NDtxaMdZEXHn7YiPw,390
92
+ mannf/healing/schema_diff.py,sha256=iZXxvAShop9BaqkXb9xlFIkcjhAUb_Hnt051OK_O38M,400
93
+ mannf/integrations/__init__.py,sha256=zmDu2sErTYbwAp87WRQ8OKiqOz96Pqgo4qYgOsfUQxI,363
94
+ mannf/integrations/auth.py,sha256=_pqVlHCE9sKSjBP6X62SlT4LwZcr7LAQIlWJIOTW0qI,396
95
+ mannf/integrations/graphql_parser.py,sha256=0tAMxfzDsKonItNO1OKijJVT9j0aVpqYpOtuoPQ8gA0,416
96
+ mannf/integrations/graphql_sut.py,sha256=R9jg2jNqWr4nABnIpTSYRmc6Ev584zqFgpN54XwUBNg,410
97
+ mannf/integrations/http_sut.py,sha256=eNkuWrYPNxu7tqBinGrCDnyfASAVp-SnsybEpOYbJ_4,404
98
+ mannf/integrations/openapi_parser.py,sha256=ms4pVNiH8W01cQ1Cx3HkI7iPXmpBZ28PmfDa5SeIXmU,416
99
+ mannf/integrations/postman_parser.py,sha256=JUnbtIqzPgMQRcw6Y24eKN335UeeuFyeY9MgeW87GqI,416
100
+ mannf/llm/__init__.py,sha256=ojwCKR71FhAn-rcC0ky--jEoiMw0vYnODL4UKbiYKTs,345
101
+ mannf/llm/anthropic_provider.py,sha256=XADaLuxVRJMx7gi1WiAAzPNe5GCn88y0TKAzpf0dC10,406
102
+ mannf/llm/base.py,sha256=3t9oodTGhBnOCltDkrSycOZur3KbkkENYFHhzwMyOns,378
103
+ mannf/llm/config.py,sha256=m4Kp_BO5R3TeJZbp7si2pINo5OaSaZC1WE-Hq-plZyo,382
104
+ mannf/llm/factory.py,sha256=p5sqRo4nGsH0ZWEReQB7dG-_XPcYZl8Z7_fCyzFO1yc,384
105
+ mannf/llm/openai_provider.py,sha256=SLDcV8GmSf-hScMqYdag_1uBHnnkzLaDz9aHtFvTqrU,400
106
+ mannf/llm/prompts.py,sha256=hUL-IAFuhMNtPf99YyqINjWJCcca-mK3eqQwx7N2Jos,384
107
+ mannf/messaging/__init__.py,sha256=3PA-j0SgRLkOYkDAjaMtJdywT_uMuzR9FnP_abBM1ao,351
108
+ mannf/messaging/bus.py,sha256=BnRyMB2C5zZQw8bXcMOu0K04zitsvixMAMCc7jSodIo,382
109
+ mannf/messaging/messages.py,sha256=EWtKWF7qf8tOnXoF6CFWsjLJKRlgAz0v3NJb3bMa1HA,392
110
+ mannf/neural/__init__.py,sha256=5pN1USUKqxa2f1ArtVpjxM4LDfSa0TJKdMJZ8KYw974,345
111
+ mannf/prioritization/__init__.py,sha256=srieu1Ef8sibzW7gMrmBO6RcJ5gUVlNdvUT_IL_2-6k,361
112
+ mannf/prioritization/adaptive_controller.py,sha256=iyeZFJBeZKByn7IdHtucNomNj6MnBDF4pQbdz23HOnM,424
113
+ mannf/prioritization/belief_prioritizer.py,sha256=nxMWx4U4TCiVHQbh8qnTL7bFpsghkQgD4BFK9vMAzko,422
114
+ mannf/prioritization/risk_scorer.py,sha256=xnAx8uiESbPin8_YBWMWzfuyYzQdy4wPWVO965arOGY,408
115
+ mannf/product/__init__.py,sha256=EQwJ0e1r7f5Ej41hKpp-1I5q07iDZ9y12inUq0_eS5I,776
116
+ mannf/product/cli.py,sha256=GzXbTwWN54wRWF8qvBseH0LTi-syBND-XXbuq9nMSO8,144440
117
+ mannf/product/cli_admin.py,sha256=s-FimpWf8lKtHhpg2RjSlTzrM4HTTr1sZl_hXHUnnIM,11780
118
+ mannf/product/database.py,sha256=idkfQDAHsfIkczfT2ewcNJAFyUX9-XzFyNeZLMnJwzQ,4514
119
+ mannf/product/demo.py,sha256=YARzNdi5_28TRgAFC8KHM2yWCGebpFPwK8fFnKYsPAs,32881
120
+ mannf/product/doctor.py,sha256=HyrfOXS5XLqsqTFxci3M74RAnyRuwgaomlGD0rYIS_A,16749
121
+ mannf/product/metrics.py,sha256=Wv_SUgpgPNZGpx13c4z0kHehLzqIctHOe-DksanIY4M,4758
122
+ mannf/product/models.py,sha256=Pn_pzs43J5hP7C3k_try8tibpeuAOs-K502vvV5Ro6E,16060
123
+ mannf/product/onboarding.py,sha256=g20yRg6xKrE4lp9751xxKoqJlEIY70Aq4kBMgWZxEuI,6437
124
+ mannf/product/orchestrator.py,sha256=j8lTfMN_qLvOolXAFegtZBuBOaSyBIeeJpMxw6ARGwI,37237
125
+ mannf/product/orchestrator_models.py,sha256=7DLTWVzv2mJvpIl4ML2eSGrrf8MZwhkp_kQByItAnZA,10565
126
+ mannf/product/server.py,sha256=xno9fs8bIOaYyWO-2D95CTWSQ2Jy_bCPEkmJPZsmWfc,231618
127
+ mannf/product/setup_wizard.py,sha256=Hfz-Kg-_UJ5ISEAwe-uts1wJAE2CRShkbMLaSb8m6Vo,30014
128
+ mannf/product/status.py,sha256=R78rvfyYBB0-zweF3p1DtnO_nL3xBoX5NmS-tIlfrGU,13485
129
+ mannf/product/telemetry.py,sha256=3N-jlshy4nuWoM0SMRcmNKB7kKvinSD4W1NublYFHKk,12120
130
+ mannf/product/uninstall.py,sha256=e6S2npxvOTWdQv-FQveyyeW18-Yddgafoqzj4H75oI8,5727
131
+ mannf/product/upgrade.py,sha256=JMaYsiHFXPvkapo3vixw1DA4ZTEWEK6OpLwNcTKqoKg,4799
132
+ mannf/product/admin/__init__.py,sha256=-ebSN4RH-givKRv6aI_75CCBUjO_SX07CnKMf9Aj4xk,150
133
+ mannf/product/admin/routes.py,sha256=uViCINp368i86u1gg0K53zjejEkalWZjFMUypECr56I,19113
134
+ mannf/product/auth/__init__.py,sha256=mejr7Rj7WcGg0sP8c9BNeIKfqTzmsMAfbZNlV0EhebA,186
135
+ mannf/product/auth/saml.py,sha256=y2dPKpo0Sjq35spK6xLiEzKoyMAq0YNB8Mn-qb_7FWs,7618
136
+ mannf/product/billing/__init__.py,sha256=HC-qLzX59IQRitTWDYrOmVLjGbur8paJVWnIf0qvpJ8,183
137
+ mannf/product/billing/audit.py,sha256=FuO8i9n1hKbwWa8rz2TubD_5GBLCKiwd7-ASlGj4M-c,5216
138
+ mannf/product/billing/feature_gates.py,sha256=Sx5OLa8mHadToLtvyQxOEF-zAfpiXVIflk9UAa7QDUI,6280
139
+ mannf/product/billing/metering.py,sha256=f2EBn9ks7enmNZTU-rcI0BEPOU2q2UNiXJAgmIT9YZM,6374
140
+ mannf/product/billing/notifications.py,sha256=ZR5Vj6ouW9QqyUvcnviBc4finoN90PYHVfDyRjkvJXc,6034
141
+ mannf/product/billing/plans.py,sha256=Jj2C1XdtM5NkPNtLBhwHL5rrRUos6OdgW_2o02A-Y98,5269
142
+ mannf/product/billing/rate_limits.py,sha256=PL_DTb88cxJMtfLnFupEvfTOcCMJNCurhlCSYF1c-LU,1168
143
+ mannf/product/billing/stripe_billing.py,sha256=tHjhJsCE5_hZBLkwjdOFmJzCEyrby-Dl1lqKM3prn5o,32409
144
+ mannf/product/billing/tenant_auth.py,sha256=O-ZQM6pgVUXhPXdsx0flKqHcAi-IGUiTLtog5fy7uL0,8225
145
+ mannf/product/billing/tenant_manager.py,sha256=o7lnESfK_2U3tFo-96THWkd2N5PWx-gTU3CYWLt3mGw,32141
146
+ mannf/product/dashboard/__init__.py,sha256=192jYLI0Nzc6agYVkZVSes-YMh14jQ1jYrrcpvGHm94,1522
147
+ mannf/product/dashboard/app.py,sha256=L29jwvD1taV-_mf50XCbWex7MAoD0cWr71GtQtgcLgY,134986
148
+ mannf/product/dashboard/models.py,sha256=KF-vOaY9Ozw1_X8OQTwWN24qqatM7tjRcAe_RLhMalI,13869
149
+ mannf/product/dashboard/telemetry.py,sha256=3msKJmZgNX9nZIla3n8NyY76yvw-srVvI7zYnGJyMsU,17156
150
+ mannf/product/dashboard/static/index.html,sha256=DyzOU_vCtd5hX-Bb30zh2Bp-oBYCCMsgeS2RcPQxV8k,295548
151
+ mannf/product/dashboard/static/manifest.json,sha256=51MvGlgCgclGIFrObXRxkwHTbWS00ujjds7H3f13HMQ,627
152
+ mannf/product/dashboard/static/pwa-icon-192.png,sha256=2a1wJg5269A-TXyGMBFFU1ps32rhzhePvkzRo4fHnnQ,972
153
+ mannf/product/dashboard/static/pwa-icon-512.png,sha256=lncLPVgaN746haIRSpXuJqRGMT_-syxPh917UKZFAg8,4701
154
+ mannf/product/dashboard/static/sw.js,sha256=FXJHi1fe5YF54mvD69Xw3RSAImx6mPmmlHAXvwWbCcU,1879
155
+ mannf/product/exporters/__init__.py,sha256=YObODSebwE8vqTL5lBoubl1ywJMcytSqwoJyIYfqrqw,2265
156
+ mannf/product/exporters/azuredevops_exporter.py,sha256=GDJ3zmkgkr9OOWTCf1L4_u9ZlNwHmRNbZ73fnV6tGes,9838
157
+ mannf/product/exporters/base.py,sha256=VQaf8ixXORdRkyDlJM1RqlcxWWuu5mKjdmwiWrGO2Rg,9297
158
+ mannf/product/exporters/bugzilla_exporter.py,sha256=bTiqynH6y4YCxD9I45T4N1fWR99EmrRGL3Z3Ni_bDLs,8025
159
+ mannf/product/exporters/dedup.py,sha256=meLXsgFgb5dAL_A1RkbdUUDcYfp-YxxQ2Q7cN74czzI,8767
160
+ mannf/product/exporters/finding_adapter.py,sha256=JwGfaDthBdwcjAMCbCWgfBAHzqAvH2ij1WIhWchoWfA,7823
161
+ mannf/product/exporters/github_exporter.py,sha256=P1z1vtxjAqUm8mABlICod8qHj9wYyR8SIA-kHdk8XEU,8001
162
+ mannf/product/exporters/gitlab_exporter.py,sha256=AdhCrSYq7-i9z5gmKXsNTRSTiw2ryT3ca6L-10E1Ph8,8583
163
+ mannf/product/exporters/jira_exporter.py,sha256=xv4rdwdcsjP9QqGSy8ghOC81BknJEgtuskYBgqj5BCM,6770
164
+ mannf/product/exporters/linear_exporter.py,sha256=eOL3g65xBgN1hsOyeQ02iE5nEwE8etDWrzmWeXdO-wo,6990
165
+ mannf/product/exporters/loader.py,sha256=no48E2g2_x5oeYOjX7hjp7KIutHgYRg1jmzzOL0T8fU,7323
166
+ mannf/product/exporters/pagerduty_exporter.py,sha256=IwxQ_u0pR8FbozwH1ILOS2SKojpGDFczg0DQfyKgr5A,13928
167
+ mannf/product/exporters/sentry_exporter.py,sha256=-bV2TAAVizwYscoAppOsVd767Oq9CsV56LnhwDBBCig,13073
168
+ mannf/product/exporters/servicenow_exporter.py,sha256=nAPCdzfmUGnJiuyIT8snbMVOmLPaBMzNx83jEpmGGH8,9069
169
+ mannf/product/exporters/shortcut_exporter.py,sha256=Jz9lJ4l9TGFlInWAdbQKRMpnLUgjambDYYyJYKWyPwk,8498
170
+ mannf/product/exporters/webhook_exporter.py,sha256=B3DYwb_VzeI5TRQFm_CJhyDKcrXcxD_eDDY3NcB184U,14850
171
+ mannf/product/formatters/__init__.py,sha256=6KuahAgaFgVVmULx-H5b4gW6ZxGWr9R-mqd-VqoGCjw,715
172
+ mannf/product/formatters/allure_formatter.py,sha256=kw2QYm-faMKbBUJHuuG3AM3D4DfWiCiPrUeDw4epUPE,4787
173
+ mannf/product/formatters/ctrf_formatter.py,sha256=OOD7HVyH_lPjstnuNGj006CzMSgONd-NEzGKxF7ezlI,4614
174
+ mannf/product/healing/__init__.py,sha256=Rb7fuQJaipA6sOSXeIiKsWo4qcyYDrO3BDZ2rFIhu0Q,807
175
+ mannf/product/healing/graphql_schema_diff.py,sha256=5dhhRt2SiryOktyOcUangCKuwcZb65KR6o_Ueb5POm4,5862
176
+ mannf/product/healing/healer.py,sha256=1tMdeVSLHdCvsKTmZNxtjFV6No6BiLca6E-3UO8W9xw,5259
177
+ mannf/product/healing/models.py,sha256=6FxGFDeeqCtTNzChqQ6aJf418BJgRQT4VkpcFVw6JkY,6039
178
+ mannf/product/healing/schema_diff.py,sha256=ZA-U954FAICehTmOiXrPnYJeyU-6cSyi1vrO2FN3oho,9832
179
+ mannf/product/ingestors/__init__.py,sha256=6ovG2tkx4htMHkCh61PI2n0q-uHjT43A7SVIYc1DuHM,2477
180
+ mannf/product/ingestors/base.py,sha256=klSgDMir4wWYARZPjcjtTiQk1GRbURzlCFMqk56K95c,7985
181
+ mannf/product/ingestors/bgstm_ingestor.py,sha256=HwncEqFQOY0YWPbrfEOmGbQuaVC3IC8DejmwEHa9jdY,28037
182
+ mannf/product/ingestors/curl_ingestor.py,sha256=HZ_XCNNOERo43721q_dTOz9Ycck_KbgCX1C0DRYBVhY,34282
183
+ mannf/product/ingestors/cypress_ingestor.py,sha256=kiojMMUfd4godC3t_0DZtV4AGWRDWt3WXfdr_29qDGc,17119
184
+ mannf/product/ingestors/gherkin_ingestor.py,sha256=muVyNG7IAl_kqF7g9vw03jLQhA6Nq08ZL8l3rgAPlJE,31551
185
+ mannf/product/ingestors/graphql_ingestor.py,sha256=vwBdM5SOcqYgVnZN05xdoExKwakG9bsy0CILZlHiJsU,29589
186
+ mannf/product/ingestors/grpc_ingestor.py,sha256=MjlPyN8lT6_eWFrErTQ7bzctC4QQ4ZLdJqkXaUpfgJs,20957
187
+ mannf/product/ingestors/har_ingestor.py,sha256=mGu5ks4QlM-dv_HmKUfJTyv_qvgzKQzJbN5IAMQjgL8,35101
188
+ mannf/product/ingestors/loader.py,sha256=EcBCSEtSSrcZtmQoU8ERlVkT5GZihSR28FGZfQeCcpo,9060
189
+ mannf/product/ingestors/models.py,sha256=2ZJoYXe2C7-xlZSIsO-gfWow5CA1hbDHXFMATn2Mvkw,4133
190
+ mannf/product/ingestors/openapi_ingestor.py,sha256=7yGdDVgriDmkNLJC6xaeWA2ZptB2gbQygX4631qxzv0,19607
191
+ mannf/product/ingestors/playwright_ingestor.py,sha256=iqoBwjB07nTp9CRX2V5rJMPEYzcZCOSNGR0FLR_ESpc,15879
192
+ mannf/product/ingestors/postman_ingestor.py,sha256=zLwf5_Idy_e3zo2IZCFOb9wZjOC22ca7xmFMBMMEV9E,20598
193
+ mannf/product/ingestors/traffic_ingestor.py,sha256=-Dd_7lN-_5bwv3RNT2JPGNDkL35vInwPv0-EpuoaqBM,25793
194
+ mannf/product/ingestors/websocket_ingestor.py,sha256=GodQxbfj5m2lcJZVI2qOwYBD8FF-Lejh5ZXsYk2VEl8,19178
195
+ mannf/product/integrations/__init__.py,sha256=VY200INFHLDyw5Xm2sIORX3nOIxhKb-L-4xmI0Bicmc,753
196
+ mannf/product/integrations/auth.py,sha256=9jEyKiuPXKmuCFvei-3S0ri03YJn0xT_M4geKSS5B40,6169
197
+ mannf/product/integrations/graphql_parser.py,sha256=UQa2f51BhgSeiRwOUe7JfFOJeU5eeCSz10R2s_XbIqA,16101
198
+ mannf/product/integrations/graphql_sut.py,sha256=kO6P25r6xtj4GIZR9BeJwq3OT6lwfRyLvCW_-tT9y5w,8575
199
+ mannf/product/integrations/grpc_sut.py,sha256=y9_yzrAclJQTT2xc7Jg74uXHv5T3rayiiEA6r9EQ594,17076
200
+ mannf/product/integrations/http_sut.py,sha256=lkyp5PmDXFIuta51lWjQSsrV_qAKH4PbXNByfE_niKc,8978
201
+ mannf/product/integrations/kafka_adapter.py,sha256=f3CdF7_OjNMPLzj9owq4lv4yyJqaExvS6GJuDbrcfvY,12758
202
+ mannf/product/integrations/openapi_parser.py,sha256=nF209zxN9jPwTuBwwwgyQP5bUuXNlNPtBJJO0Yj8vio,19907
203
+ mannf/product/integrations/postman_parser.py,sha256=lWl3fW-lDes_wT4ErwuUBoSjfr9BUXQnjt-QLOIJ--4,16818
204
+ mannf/product/integrations/webhook_receiver.py,sha256=7YK52-jE-ASZdeeumjKaZ44OgbiDjtuVSh6oMXYI1d0,12166
205
+ mannf/product/integrations/websocket_sut.py,sha256=ovsQPYaQRLt6cpoj-W76y0kfSc-96JwfpBxiGCOBjzI,15805
206
+ mannf/product/llm/__init__.py,sha256=fY2134AfxLeB99lP9SQVM02GhQNcZxcRRTWew--HGfY,880
207
+ mannf/product/llm/anthropic_provider.py,sha256=ikeXSm7slih8ArAzpplw4K7eD0DN-8R30ZDYneB_kTk,3393
208
+ mannf/product/llm/base.py,sha256=KsyfilhbNhntmXP7xHMVWocn1fIvWNoiLAhhWEZ9AO8,9627
209
+ mannf/product/llm/config.py,sha256=cb0YzbDZsP-Q9z2cNOYg7YjFPIVVl6uhcS_TPUj-oIk,1493
210
+ mannf/product/llm/factory.py,sha256=1XlPtNTlaODs-xRyNllcE2w042cvF0OxAARCrMMfkks,1264
211
+ mannf/product/llm/openai_provider.py,sha256=8Rzq7w7gospu8IckS73llOSm77aJyGYBdUDPpjXBT5w,3345
212
+ mannf/product/llm/prompts.py,sha256=_JTQVVn29pBm0tDNiTaDwMatQmPJ65aW4o7u-4dvIzM,17915
213
+ mannf/product/llm/root_cause_service.py,sha256=lsEf79pJ0FX86NcSSMZSreDghcMS-CEd3jUhG06t1Iw,12525
214
+ mannf/product/llm/test_plan_models.py,sha256=VQdrQ_ciK6C3n-eC13m3FnvdoJDO36Pw2qpNy5LdEvI,2924
215
+ mannf/product/middleware/__init__.py,sha256=-ebSN4RH-givKRv6aI_75CCBUjO_SX07CnKMf9Aj4xk,150
216
+ mannf/product/middleware/audit_middleware.py,sha256=mVBN08CM4fDxDUeOAV72KCkOvzLTwZrJB2qb00KtpeU,3643
217
+ mannf/product/middleware/tenant_isolation.py,sha256=oQo5N_WYjy4thfRtJdfOnTZSRpd85W32gRrT-E-zXKk,4024
218
+ mannf/product/notifications/__init__.py,sha256=T85-flKLbuDV6m_N6EkqIW-0qwym-vHxwoY6gxHA-LM,727
219
+ mannf/product/notifications/dispatcher.py,sha256=ZBShULHnMUE7YyQnO5-uoSxim39sueYqKDle0_jPIiI,13706
220
+ mannf/product/orchestration/__init__.py,sha256=glKIFQ9cRadSrNZnW1Lw8yQ_YL7nrrj2adCREEcSIMg,1226
221
+ mannf/product/orchestration/ingest_scan_orchestrator.py,sha256=vseR9V_lbb3gZhDVebMYFomPzpPl_eDR9krQoFOJT0s,12633
222
+ mannf/product/orchestration/pipeline.py,sha256=mScdmJ-F7gtg4rpNoZl_XdyLgYfe1V3KbGI3a-CHi_A,12861
223
+ mannf/product/regression/__init__.py,sha256=YOJTsSBBPwnYco8zziSx5_axg_meOXBKZdgZxuALm1A,1178
224
+ mannf/product/regression/differ.py,sha256=l5oSjaPGrNsDh0ppniU95vFwYbB5coeoRDkPQSgrVek,5624
225
+ mannf/product/regression/masking.py,sha256=4QAzFVUlpKpOFY75p-ZM5Y_Jfz0vDatAVFXDcvFaI5U,2949
226
+ mannf/product/regression/models.py,sha256=H4AYFVNGa2EmVIuKytBZ7jIUpSo-b57YHxWRRwK5Ccg,6982
227
+ mannf/product/regression/recorder.py,sha256=f6ZUqDvDBsCEjFfflU6P0nB3SAe4WN6yMQlNN5ziFoo,4226
228
+ mannf/product/regression/replayer.py,sha256=aCbLkxiFUTbEwaSAoBWr36-HZbSpSHmcuLra6Ckp17Q,6040
229
+ mannf/product/reports/__init__.py,sha256=TkpOT42uclsMGnFlbkrpWN-WjUOLn4GeeV9DRdfgc9Y,373
230
+ mannf/product/reports/pdf.py,sha256=HfM89UYE_Yj_uBmx5QERH-0u0Tah5ZlwE7Jh0aLZhdQ,4892
231
+ mannf/product/scheduling/__init__.py,sha256=_ZHvMcoCXVm3_7D4UxSbD9LLcgfZe-Wd8rOfogrI7Mc,1468
232
+ mannf/product/scheduling/cron_utils.py,sha256=K2joW6pAK2EcIi3mceJ_7t_sYgkpWq8fHzCY0k567r0,8473
233
+ mannf/product/scheduling/engine.py,sha256=1rzl10egHOERFgLRFLH-4FOj-aLUY7tKHEXCmH-VvXE,18858
234
+ mannf/product/scheduling/models.py,sha256=45yMYsV_Sx6pC5sO7HCRXaqaTUsBbf9LGaI7nnP1ZwQ,3491
235
+ mannf/product/scheduling/queue.py,sha256=c_qBhBUVndUePStOEt5A5tH645QaSwkV3odKwcbx6v0,29908
236
+ mannf/product/scheduling/store.py,sha256=uCReNTp83CbXh3GWK7P1-5tc5BYdKANLndW0Xfl-L-Y,8041
237
+ mannf/product/security/__init__.py,sha256=V5l8INKbhKmZDXTv7oi5aQEl3VVSwAAlapaZaElLgG8,719
238
+ mannf/product/security/belief_guided.py,sha256=3SXaxqrCJSHEjy9udQwU2IRPC-tHPLHIlwcqugHOyuY,5672
239
+ mannf/product/security/models.py,sha256=zIwH4yXveM1FySb6_XpexDlQQ5iOKBZvedJUQP3H-Jw,2603
240
+ mannf/product/security/plugin_loader.py,sha256=AF9wty6U7uOwenBIa9c8ETs5g1in3g1ZNzp8xLZ5dl8,6183
241
+ mannf/product/security/reporter.py,sha256=EetnEAzKhsJp_QeUe9Yv0Dm03-BxQ3eoUJSeNB3R_WE,3354
242
+ mannf/product/security/scanner.py,sha256=EPmXD7JGPemvxB_GTrKABlhEVAktgfvDTszFKNfgPqU,6745
243
+ mannf/product/security/checks/__init__.py,sha256=dO1EOQizQY9Nz7tpkN3YuogdwREJO_tV0_LbulWMrgc,1975
244
+ mannf/product/security/checks/base.py,sha256=zIzQDbg0EL08bfSgRpZQ4FKdo4ezeimR7FJJL4XxewM,1871
245
+ mannf/product/security/checks/bfla.py,sha256=XuIM__pP0IkL7dslnszk7fxpjQIEpL_UPT_YaTHuqAg,2548
246
+ mannf/product/security/checks/bola.py,sha256=_JsYNA3ziPyGquLKihtebaCGIYnlwSGX2Dngi7oWb8o,2823
247
+ mannf/product/security/checks/bopla.py,sha256=pGSaAQi1smAdc9XWOSJtpP2lNLqt3G9_NQI7Bqi0TNU,2664
248
+ mannf/product/security/checks/broken_auth.py,sha256=8Opn0GF7ke5odeYWU9W8sn_fUvCuny2AUUhiA-p1Ylc,2891
249
+ mannf/product/security/checks/graphql_security.py,sha256=9S-nxSBMS1IqNWM9bbnW5lfC6HH-BuLt5Cu7BwrNCaU,11298
250
+ mannf/product/security/checks/inventory.py,sha256=iX55LVvg40nehrYj3rPdpykRcP7NXgP5qsVtsvL7cEk,2335
251
+ mannf/product/security/checks/misconfig.py,sha256=2xlGXS8GxO_ir6sjn_nUtJOg2MhqMTtivLG0lqhZb7Q,6401
252
+ mannf/product/security/checks/resource_consumption.py,sha256=ORAdn0UU0FsXtFfwQQwyKu4xZZwA3mDUIWu1adVq_Fk,2419
253
+ mannf/product/security/checks/sensitive_flows.py,sha256=Q7cbNmdv5VQy4xdw7zfj6mQXUPQ5cOdsF0WAsmBLkbY,3054
254
+ mannf/product/security/checks/ssrf.py,sha256=3fxWNa5rKnBnbJs3xXO1qcwEZxPw0Ul6l9fIIJ5W2qA,3855
255
+ mannf/product/security/checks/unsafe_consumption.py,sha256=uSJh-eecZsYmXQocImQ28DASgqpktmpiD9QoHJ8GqB8,4503
256
+ mannf/product/storage/__init__.py,sha256=Tdkjfr3AAlFCfPm_kAwAFdeXebQGeYyHPCo32B6iuz0,350
257
+ mannf/product/storage/artifact_store.py,sha256=VhF7udR2tR80D6vD6R1RMIO5A5bhhnJZ3KiNM3uLd-Y,11554
258
+ mannf/product/weights/__init__.py,sha256=IpgwMzDyXbPlxS-U8KhVkF7kw91NqeY71esr1SAQnHk,586
259
+ mannf/product/weights/blob_store.py,sha256=Lkej0ZGOg8DPGb7GzzVG_nYPTADs87quyWW4ZEVeg14,10949
260
+ mannf/product/weights/factory.py,sha256=TXOVh47-RUJK6Gz7B9l55YGCh87KE_n23fqQO9Ty010,1524
261
+ mannf/product/weights/registry.py,sha256=OtIRx6c7tdWRCQsqcc3rmUma2bpZ7r2z4f0T6f2nLlY,5477
262
+ mannf/product/weights/store.py,sha256=3MekrNRTbuQGPwJJebsu_82OgW8zr_GQnN1eCE3MQck,7054
263
+ mannf/regression/__init__.py,sha256=Tc_YB9AP7SVhx-gLyzUxbXiMRlPj8Jhco2hSrLnxLxs,359
264
+ mannf/regression/differ.py,sha256=rBMTJM_UjoDEY48J7g1W--O7ezFNFb-H8nEwz_isPLo,396
265
+ mannf/regression/masking.py,sha256=Bq2htArWXUy0d-RSdw_L_BNBMXqLVhCApH9GfaE5MYs,398
266
+ mannf/regression/models.py,sha256=F4v1NUFbMRWlZ92DBrvv1mocZzLrSfH6KEqW33zbQ5U,396
267
+ mannf/regression/recorder.py,sha256=vbNNRqw9l5YapvP8Hv2jcQrBomwaMDG3Li093ZgVijc,400
268
+ mannf/regression/replayer.py,sha256=-jGtFir260WRBUA64Vh1PfrY08OKdKpXkfwbaicnclk,400
269
+ mannf/security/__init__.py,sha256=MvYYhKqH3qEpp6tVwzuZ2e03Nt3mdwST44ne7sO8bcU,355
270
+ mannf/security/belief_guided.py,sha256=Xy_k5-hsY_tkG3LsZ937K_qZODQ1NJCi1RJrSuAHQpg,406
271
+ mannf/security/models.py,sha256=HU1SuXmky8LNUqNnxm3vYf8d9O5rwoLE1pDOeo_MqIc,392
272
+ mannf/security/reporter.py,sha256=5Jw0NZE7yWpbe2Q0SL7h7p4s5gUAyxRWFag8bx-ojmE,396
273
+ mannf/security/scanner.py,sha256=rW-vFWhKlsNDs6q0OENYLqHAWBU46SgDZJQ0dcosYXg,394
274
+ mannf/security/checks/__init__.py,sha256=uioAZMY9fiiQJJG3d3koRluYrPXCxjPjN30xfCbFy9s,369
275
+ mannf/security/checks/base.py,sha256=MYHC3S39cB5P7isircLzXXvdG8GKv8jSj-2GSrKWG6o,402
276
+ mannf/security/checks/bfla.py,sha256=Lwg3StbPAtNATKw3hEGKsyN3zYf8_2z0_8mkflsOJKY,402
277
+ mannf/security/checks/bola.py,sha256=hZ1QbdaxPP5W7it46Jww3AnmMHRrYuK321VwBVKthWg,402
278
+ mannf/security/checks/bopla.py,sha256=aaQcAdpnkap3laVUYuoYFiUTnAgpvajrKIqrIXHwZSk,404
279
+ mannf/security/checks/broken_auth.py,sha256=V75WeS7TO9EF_tiHTt7ItgaLlZDCVtaZCM90wiXmpQ8,416
280
+ mannf/security/checks/graphql_security.py,sha256=RcnNuadXlkfSgojz5Nvhxacn2AH-kP5r1OmSfAh1hD4,426
281
+ mannf/security/checks/inventory.py,sha256=eJmCk7YuKZZ56m0bT7deq3zJjxijyEGCneb6RJ8lzzw,412
282
+ mannf/security/checks/misconfig.py,sha256=YqRhwWeUbUwS6KpCrHkZtmQk1RXTxct_S30PzvOjEHg,412
283
+ mannf/security/checks/resource_consumption.py,sha256=e_WxtSWYQUqjSybyl9hcaK_rAeoDkzZB8C6F-Tnw64M,434
284
+ mannf/security/checks/sensitive_flows.py,sha256=soAuULRAu9eRkWaOVP40Pi4gsGyr8LAiBsrIwtY5DGc,424
285
+ mannf/security/checks/ssrf.py,sha256=NQ0qP5xQVlkfQGMa76_HxK0DdF9sFY9mtsWhLUFGaXY,402
286
+ mannf/security/checks/unsafe_consumption.py,sha256=wWIhG8eujc63e27T5vYh-V4nBrAydeDn00lxcTfsGUA,430
287
+ mannf/testing/__init__.py,sha256=5deol7Y7d_9Fy-NJ-XrTWylETPJnQ1X07R5FZBa3rns,347
288
+ mannf/testing/adaptive_controller.py,sha256=qxEt2GlEkXuG1LFCTUC6y1uL0CjQ7gejCtX4d2OYWSE,410
289
+ mannf/testing/models.py,sha256=2xdPtF8tsWCYk0wtqZvjZI_CZFpgwQT7s-YErS9xLGI,384
290
+ mannf/weights/__init__.py,sha256=8GKhc9scXYFMmtkjY2nWppVKVwaESI2jP4aSd3jmbxU,353
291
+ mannf/weights/registry.py,sha256=1JYXqwT_kHOtmqjHLxn5R1SqbD-w9Id_OA99vWsO1-0,394
292
+ mannf/weights/store.py,sha256=O7PsvcX0FNUC3j-tzfScM3b8VmxdBBGveliHBD8XGDc,388
293
+ nat_engine-1.dist-info/licenses/LICENSE,sha256=XaWDJFxWe-CTdm-KQIGLSVfv8uZHU77Ozqm8Am8HPqY,33711
294
+ nat_engine-1.dist-info/licenses/NOTICE,sha256=G9qCF--EQ3k21IgqjHvAnWJEdr8OERnwnvbJ7R_HRPk,9299
295
+ nat_engine-1.dist-info/METADATA,sha256=_tfEUDPNY0WUCoWViUrPtxvxSB0rIl_vqvORqMryh7g,24846
296
+ nat_engine-1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
297
+ nat_engine-1.dist-info/entry_points.txt,sha256=mplzqul_7ld9oEhLOJ7Zvm2H4rA_IcOEXypf89pRERU,133
298
+ nat_engine-1.dist-info/top_level.txt,sha256=Wp-Mb7F_n-aMR2p4R8jzh12ExZJkD76B8EaVosY7qFQ,6
299
+ nat_engine-1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ nat = mannf.product.cli:main
3
+ nat-admin = mannf.product.cli_admin:main
4
+ nat-server = mannf.product.server:run_server