wpsecscan 2.7.2__tar.gz → 2.7.3__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 (548) hide show
  1. {wpsecscan-2.7.2/wpsecscan.egg-info → wpsecscan-2.7.3}/PKG-INFO +1224 -1224
  2. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/README.md +500 -500
  3. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/pyproject.toml +118 -118
  4. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/setup.cfg +4 -4
  5. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_54.py +334 -334
  6. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_55.py +423 -423
  7. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_56_activity.py +244 -244
  8. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_57.py +216 -216
  9. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_58.py +227 -227
  10. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_59.py +422 -422
  11. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_60.py +228 -228
  12. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_61.py +262 -262
  13. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_62.py +223 -223
  14. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_64.py +379 -379
  15. wpsecscan-2.7.3/tests/test_v273_critical_regressions.py +199 -0
  16. wpsecscan-2.7.3/tests/test_v273_wave2_regressions.py +296 -0
  17. wpsecscan-2.7.3/tests/test_v273_wave3_companion.py +79 -0
  18. wpsecscan-2.7.3/tests/test_v273_wave5_audit_log_wired.py +102 -0
  19. wpsecscan-2.7.3/wpsecscan/__init__.py +1 -0
  20. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ai_assist.py +37 -13
  21. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ai_safety.py +47 -0
  22. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ai_triage.py +63 -5
  23. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/attack_checkpoint.py +149 -149
  24. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/attack_scripts.py +118 -118
  25. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auth/audit_log.py +44 -0
  26. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/burp_import.py +76 -76
  27. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/__init__.py +721 -721
  28. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/dns_templates.py +196 -196
  29. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/forced_browse.py +121 -121
  30. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/headless_templates.py +161 -161
  31. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/host_recon.py +106 -106
  32. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/mobile_app_endpoints.py +41 -41
  33. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/openapi_scanner.py +138 -138
  34. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_archive_fuzz.py +77 -77
  35. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_hash_fingerprint.py +132 -132
  36. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/premium_license_leak.py +95 -95
  37. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/spider_crawl.py +50 -50
  38. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/timthumb.py +111 -111
  39. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/users_deep.py +154 -154
  40. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/websocket_fuzz.py +127 -127
  41. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/xmlrpc_method_brute.py +126 -126
  42. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/yaml_templates.py +71 -71
  43. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/yaml_workflows.py +53 -53
  44. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/creds_vault.py +23 -3
  45. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/check_tags.json +299 -299
  46. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/common_paths.txt +201 -201
  47. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/compliance_map.json +1266 -1266
  48. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/plugin_file_hashes.json +31 -31
  49. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/gui.py +3739 -3676
  50. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/gui_payloads.py +466 -466
  51. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/history.py +52 -7
  52. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/http.py +343 -343
  53. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/interactsh.py +128 -118
  54. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/js_plugin.py +101 -101
  55. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/marketplace.py +107 -107
  56. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/marketplace_v27.py +40 -1
  57. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/mobile_app_discovery.py +60 -60
  58. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/observability.py +14 -2
  59. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/share_link.py +15 -7
  60. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/spider.py +127 -127
  61. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/template_engine.py +257 -257
  62. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/template_signature.py +108 -108
  63. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/trust_v27.py +7 -2
  64. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/turbo_engine.py +232 -232
  65. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ua_rotation.py +57 -57
  66. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/workflow.py +113 -113
  67. {wpsecscan-2.7.2 → wpsecscan-2.7.3/wpsecscan.egg-info}/PKG-INFO +1224 -1224
  68. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan.egg-info/SOURCES.txt +4 -3
  69. wpsecscan-2.7.2/tests/test_edu_v27.py +0 -157
  70. wpsecscan-2.7.2/tests/test_perf_v27.py +0 -195
  71. wpsecscan-2.7.2/tests/test_trust_v27.py +0 -146
  72. wpsecscan-2.7.2/wpsecscan/__init__.py +0 -1
  73. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/LICENSE +0 -0
  74. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/NOTICE +0 -0
  75. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_audit_fixes.py +0 -0
  76. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_audit_round_r.py +0 -0
  77. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_board_one_pager.py +0 -0
  78. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_burp_zap_import.py +0 -0
  79. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_cache.py +0 -0
  80. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_checks.py +0 -0
  81. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_confidence_eta_tags.py +0 -0
  82. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_creds_vault_cli.py +0 -0
  83. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_default_creds.py +0 -0
  84. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_diff_agency.py +0 -0
  85. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_gh_check_run.py +0 -0
  86. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_global_sigs_regression.py +0 -0
  87. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_integrations_graphql_escape.py +0 -0
  88. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_login_throttle.py +0 -0
  89. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_login_throttle_deep.py +0 -0
  90. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_marketplace_install_url_guard.py +0 -0
  91. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_mobile_api_traversal.py +0 -0
  92. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_new_check_inventory.py +0 -0
  93. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_new_checks.py +0 -0
  94. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_new_checks_aggressive.py +0 -0
  95. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_new_checks_quality.py +0 -0
  96. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_notify.py +0 -0
  97. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_password_audit.py +0 -0
  98. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_payloads.py +0 -0
  99. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_phase5.py +0 -0
  100. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_playbook.py +0 -0
  101. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_prove.py +0 -0
  102. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_reference_diff.py +0 -0
  103. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_reference_diff_traversal.py +0 -0
  104. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_risk_score.py +0 -0
  105. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_63.py +0 -0
  106. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_65.py +0 -0
  107. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_round_q.py +0 -0
  108. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_scan_zip.py +0 -0
  109. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_scheduler.py +0 -0
  110. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_scheduler_cron_dow.py +0 -0
  111. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_siem.py +0 -0
  112. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_sla.py +0 -0
  113. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_slack_app.py +0 -0
  114. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_ssh_audit.py +0 -0
  115. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_user_template.py +0 -0
  116. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_v272_audit_log_constant_time.py +0 -0
  117. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_v272_marketplace_sigstore_identity.py +0 -0
  118. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_v272_wave2_regressions.py +0 -0
  119. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_v272_wave3_regressions.py +0 -0
  120. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/tests/test_v272_wave4_regressions.py +0 -0
  121. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/__main__.py +0 -0
  122. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/_util.py +0 -0
  123. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/activity.py +0 -0
  124. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ai_fp_predictor.py +0 -0
  125. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ai_triage_ui.py +0 -0
  126. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/analytics.py +0 -0
  127. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/api_server.py +0 -0
  128. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auth/__init__.py +0 -0
  129. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auth/approval_workflow.py +0 -0
  130. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auth/rbac.py +0 -0
  131. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auth/sso_oidc.py +0 -0
  132. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auth/sso_saml.py +0 -0
  133. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auto_pr.py +0 -0
  134. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/auto_update.py +0 -0
  135. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/baseline.py +0 -0
  136. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/branding.py +0 -0
  137. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/bug_report.py +0 -0
  138. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/cache.py +0 -0
  139. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/check_health.py +0 -0
  140. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/_template.py +0 -0
  141. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/a11y_deep.py +0 -0
  142. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/a11y_lite.py +0 -0
  143. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/a11y_wcag_aaa.py +0 -0
  144. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/abuseipdb_lookup.py +0 -0
  145. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/admin_ajax_brute_surface.py +0 -0
  146. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/admin_invite_link_scan.py +0 -0
  147. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ai_agent_webhook_leak.py +0 -0
  148. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ai_chatbot_endpoint_leak.py +0 -0
  149. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ai_plugin_prompt_storage.py +0 -0
  150. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ai_prompt_injection_passive.py +0 -0
  151. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ajax_surface.py +0 -0
  152. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/algolia_elastic_frontend_keys.py +0 -0
  153. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/amp_transitional_redirect.py +0 -0
  154. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/app_passwords.py +0 -0
  155. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/app_passwords_stale_audit.py +0 -0
  156. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/auth_modernisation.py +0 -0
  157. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/authenticated.py +0 -0
  158. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/backup_exposure.py +0 -0
  159. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/backup_file_fuzz.py +0 -0
  160. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/block_bindings_exposure.py +0 -0
  161. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/block_style_variations_url.py +0 -0
  162. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/brand_monitor.py +0 -0
  163. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/bucket_shadow_takeover.py +0 -0
  164. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cache_headers.py +0 -0
  165. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cache_poisoning.py +0 -0
  166. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cache_poisoning_v2.py +0 -0
  167. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cdn_edge_audit.py +0 -0
  168. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cloud_metadata_ssrf.py +0 -0
  169. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cloudflare_origin_leak.py +0 -0
  170. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/companion_advanced.py +0 -0
  171. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/companion_v13.py +0 -0
  172. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/companion_v14.py +0 -0
  173. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/compliance_frameworks.py +0 -0
  174. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/composer_lock_audit.py +0 -0
  175. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/composer_npm_typosquat.py +0 -0
  176. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cookie_consent.py +0 -0
  177. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cookie_consent_desync.py +0 -0
  178. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cookies.py +0 -0
  179. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/core_checksums.py +0 -0
  180. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/core_cves.py +0 -0
  181. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/core_tampering.py +0 -0
  182. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/core_version.py +0 -0
  183. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cors.py +0 -0
  184. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/crlf_location_injection.py +0 -0
  185. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/crypto_agility.py +0 -0
  186. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/crypto_payment_callback_audit.py +0 -0
  187. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/cryptominer_js_injection.py +0 -0
  188. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/csp.py +0 -0
  189. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/csp_report_endpoint.py +0 -0
  190. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/csrf_entropy.py +0 -0
  191. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/csrf_nonce.py +0 -0
  192. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/csv_export_csp.py +0 -0
  193. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ct_log_recent_certs.py +0 -0
  194. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ct_log_shadow_cert.py +0 -0
  195. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/db_admin_login_probe.py +0 -0
  196. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/db_trigger_audit.py +0 -0
  197. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/debug_leaks.py +0 -0
  198. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/debug_log_pii_sniff.py +0 -0
  199. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/default_creds.py +0 -0
  200. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/dev_params.py +0 -0
  201. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/directory_listing.py +0 -0
  202. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/dns_deep.py +0 -0
  203. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/dns_rebinding.py +0 -0
  204. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/dns_security.py +0 -0
  205. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/dom_xss_headless.py +0 -0
  206. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/email_obfuscation_audit.py +0 -0
  207. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/email_security_deep.py +0 -0
  208. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/env_file_enum.py +0 -0
  209. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/error_pages.py +0 -0
  210. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/exposed_files.py +0 -0
  211. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/favicon_fingerprint.py +0 -0
  212. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/file_upload.py +0 -0
  213. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/font_library_api_ssrf.py +0 -0
  214. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/form_builder_upload_bypass.py +0 -0
  215. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/gdpr_dsr.py +0 -0
  216. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/gdpr_dsr_endpoint_enum.py +0 -0
  217. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/git_dir_deep_scan.py +0 -0
  218. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/github_actions_workflow_leak.py +0 -0
  219. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/github_leak_search.py +0 -0
  220. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/graphql_dos.py +0 -0
  221. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/graphql_field_authz_deep.py +0 -0
  222. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/gtm_inventory.py +0 -0
  223. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/gutenberg_blocks.py +0 -0
  224. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/header_smuggling_case.py +0 -0
  225. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/headless_vercel_netlify_detect.py +0 -0
  226. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/headless_wp_audit.py +0 -0
  227. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/heartbeat_abuse.py +0 -0
  228. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/heartbeat_frontend.py +0 -0
  229. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/helm_compose_leak.py +0 -0
  230. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/hibp.py +0 -0
  231. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/honeypot_admin.py +0 -0
  232. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/host_header_validation.py +0 -0
  233. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/host_platform_detect.py +0 -0
  234. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/hosting_platform_audit.py +0 -0
  235. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/hostname_collision.py +0 -0
  236. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/hpp.py +0 -0
  237. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/hsts_preload_eligibility.py +0 -0
  238. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/hsts_preload_mismatch.py +0 -0
  239. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/html_api_csp_nonce.py +0 -0
  240. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/http2_settings.py +0 -0
  241. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/http2_smuggling.py +0 -0
  242. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/http3_fingerprint.py +0 -0
  243. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/http_methods.py +0 -0
  244. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/interactivity_api_state_leak.py +0 -0
  245. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/js_framework_deep.py +0 -0
  246. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/js_libraries.py +0 -0
  247. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/js_supply_chain.py +0 -0
  248. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/jwt_audit.py +0 -0
  249. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/jwt_auth_plugin_audit.py +0 -0
  250. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/lead_gen_list_id_enum.py +0 -0
  251. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/login.py +0 -0
  252. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/login_redirect_http_hop.py +0 -0
  253. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/login_throttle.py +0 -0
  254. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/login_throttle_deep.py +0 -0
  255. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/login_timing.py +0 -0
  256. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/magecart_skimmer_patterns.py +0 -0
  257. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/mcp_endpoint_exposure.py +0 -0
  258. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/mfa_priv_account_audit.py +0 -0
  259. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/misc_injection_audit.py +0 -0
  260. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/mixed_content.py +0 -0
  261. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/multisite.py +0 -0
  262. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/multisite_sso_key_reuse.py +0 -0
  263. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/nft_mint_pubapi.py +0 -0
  264. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/nonce_freshness.py +0 -0
  265. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/nosql_injection.py +0 -0
  266. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/oauth_oidc.py +0 -0
  267. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/oauth_redirect.py +0 -0
  268. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/oauth_redirect_misconfig.py +0 -0
  269. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/object_cache_dropin.py +0 -0
  270. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/open_redirect.py +0 -0
  271. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/open_registration.py +0 -0
  272. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/origin_ip_discovery.py +0 -0
  273. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/osint_enrich.py +0 -0
  274. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/package_lock_audit.py +0 -0
  275. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/page_builder_cve.py +0 -0
  276. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/path_bypass.py +0 -0
  277. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/path_traversal.py +0 -0
  278. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/payment_commerce_deep.py +0 -0
  279. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/payment_gateway_test_keys.py +0 -0
  280. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/perf_budget.py +0 -0
  281. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/perf_of_target.py +0 -0
  282. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/permissions_policy.py +0 -0
  283. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/php_eol.py +0 -0
  284. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/phpinfo_dangerous_directives.py +0 -0
  285. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_cemetery.py +0 -0
  286. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_cves.py +0 -0
  287. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_install_rest_race.py +0 -0
  288. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_route_fuzz.py +0 -0
  289. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_specific_audit.py +0 -0
  290. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugin_typosquat_detection.py +0 -0
  291. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/plugins.py +0 -0
  292. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/postmeta_stored_xss_scan.py +0 -0
  293. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/privacy_inventory.py +0 -0
  294. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/prototype_pollution.py +0 -0
  295. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/pwa_service_worker_cache.py +0 -0
  296. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/race_condition.py +0 -0
  297. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/redirect_chain.py +0 -0
  298. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/referenced_buckets.py +0 -0
  299. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_api.py +0 -0
  300. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_app_passwords_enum.py +0 -0
  301. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_fields_dos.py +0 -0
  302. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_link_header.py +0 -0
  303. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_namespace_leak.py +0 -0
  304. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_permission_audit.py +0 -0
  305. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rest_schema_field_leak.py +0 -0
  306. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/robots_sitemap.py +0 -0
  307. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/rum_beacons.py +0 -0
  308. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/s3_bucket_discovery.py +0 -0
  309. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/saml_xsw.py +0 -0
  310. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/search_highlight_xss.py +0 -0
  311. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/secret_leak.py +0 -0
  312. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/security_txt.py +0 -0
  313. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/sendmail_injection.py +0 -0
  314. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/server_stack_reveal.py +0 -0
  315. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/server_timing.py +0 -0
  316. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/service_exposure.py +0 -0
  317. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/service_worker_scope_hijack.py +0 -0
  318. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/session_fixation.py +0 -0
  319. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/sitemap_cve_probe.py +0 -0
  320. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/smuggling_probe.py +0 -0
  321. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/solidity_abi_leak.py +0 -0
  322. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/source_maps.py +0 -0
  323. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/speculation_rules_audit.py +0 -0
  324. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/sqli.py +0 -0
  325. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/sri_audit.py +0 -0
  326. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/sri_pwa_misc.py +0 -0
  327. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ssrf.py +0 -0
  328. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/ssti.py +0 -0
  329. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/stripe_webhook_audit.py +0 -0
  330. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/subdomains.py +0 -0
  331. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/tailwind_css_comment_leak.py +0 -0
  332. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/theme_cves.py +0 -0
  333. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/theme_json_font_ssrf.py +0 -0
  334. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/themes.py +0 -0
  335. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/tls_deep.py +0 -0
  336. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/tls_headers.py +0 -0
  337. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/tls_modern.py +0 -0
  338. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/tls_reneg_dos.py +0 -0
  339. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/translation_plugin_key_leak.py +0 -0
  340. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/trellis_yaml_audit.py +0 -0
  341. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/turnstile_sitekey_reuse.py +0 -0
  342. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/upload_bypass_deep.py +0 -0
  343. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/upload_path_predictable.py +0 -0
  344. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/uploads_year_listing.py +0 -0
  345. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/users.py +0 -0
  346. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/users_me_capability_leak.py +0 -0
  347. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/vendor_backdoor_patterns.py +0 -0
  348. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/vercel_preview_url_leak.py +0 -0
  349. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/waf.py +0 -0
  350. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/waf_brand_deep.py +0 -0
  351. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/waf_bypass_probe.py +0 -0
  352. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/waf_lockout_guard.py +0 -0
  353. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/waf_ruleset.py +0 -0
  354. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wallet_seed_phrase_leak.py +0 -0
  355. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wc_api_key_escalation.py +0 -0
  356. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/web3_wallet_connector_audit.py +0 -0
  357. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/webdav.py +0 -0
  358. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/webhook_signing_secrets.py +0 -0
  359. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/webhook_url_fingerprint.py +0 -0
  360. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/webhooks.py +0 -0
  361. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/websocket_audit.py +0 -0
  362. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/well_known.py +0 -0
  363. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/woo_blocks_checkout_drift.py +0 -0
  364. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/woo_subscriptions_renewal_race.py +0 -0
  365. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/woocommerce_audit.py +0 -0
  366. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/woocommerce_deep.py +0 -0
  367. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/woocommerce_order_idor.py +0 -0
  368. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/woocommerce_storefront.py +0 -0
  369. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_builder_audit.py +0 -0
  370. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_cli_http_exposure.py +0 -0
  371. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_cli_inject.py +0 -0
  372. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_commerce_alt_audit.py +0 -0
  373. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_cron_cpu.py +0 -0
  374. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_cron_disabled.py +0 -0
  375. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_cron_dos.py +0 -0
  376. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_debug_display_via_rest.py +0 -0
  377. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_engine_misconfig.py +0 -0
  378. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_fork_detection.py +0 -0
  379. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_form_audit.py +0 -0
  380. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_mail_smtp_site_health_leak.py +0 -0
  381. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_membership_lms_audit.py +0 -0
  382. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_multisite_deep.py +0 -0
  383. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_playground_sqlite.py +0 -0
  384. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_plugin_ecosystem_audit.py +0 -0
  385. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_query_sqli.py +0 -0
  386. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_rest_methods.py +0 -0
  387. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wp_salts_age.py +0 -0
  388. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wpconfig_hardening_audit.py +0 -0
  389. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wpcron_suspicious_jobs.py +0 -0
  390. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/wpgraphql.py +0 -0
  391. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/xmlrpc_amplification.py +0 -0
  392. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/xmlrpc_deep.py +0 -0
  393. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/xss_dom_sinks.py +0 -0
  394. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/xss_reflected.py +0 -0
  395. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/xxe_upload.py +0 -0
  396. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/checks/yarn_pnpm_lock_audit.py +0 -0
  397. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/cli_extras.py +0 -0
  398. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/completion.py +0 -0
  399. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/confidence.py +0 -0
  400. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/config.py +0 -0
  401. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/console_live.py +0 -0
  402. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/continuous_monitor.py +0 -0
  403. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/crash_submit.py +0 -0
  404. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/daemon/__init__.py +0 -0
  405. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/daemon/_legacy.py +0 -0
  406. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/daemon/webhook_v2.py +0 -0
  407. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/compliance_extra.json +0 -0
  408. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/compliance_v2.json +0 -0
  409. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/dashboard.html.j2 +0 -0
  410. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/datadog-dashboard.json +0 -0
  411. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/exploit_playbook.json +0 -0
  412. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/exploit_signatures.json +0 -0
  413. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/known_paths.txt +0 -0
  414. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/marketplace.json +0 -0
  415. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/newrelic-dashboard.json +0 -0
  416. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/openapi-scan-report.json +0 -0
  417. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/payloads.json +0 -0
  418. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/plugin_cves.json +0 -0
  419. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/quick_fixes.json +0 -0
  420. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/references.json +0 -0
  421. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/remediation_videos.json +0 -0
  422. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/report.html.j2 +0 -0
  423. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/report.schema.json +0 -0
  424. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/data/security_tutorial.json +0 -0
  425. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/db.py +0 -0
  426. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/demo.py +0 -0
  427. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/diff.py +0 -0
  428. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/edu_v27.py +0 -0
  429. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/education.py +0 -0
  430. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/enterprise/__init__.py +0 -0
  431. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/enterprise/billing_stub.py +0 -0
  432. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/enterprise/multi_tenant.py +0 -0
  433. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/enterprise/quota.py +0 -0
  434. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/eta.py +0 -0
  435. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/fun/__init__.py +0 -0
  436. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/fun/bingo_card.py +0 -0
  437. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/gh_check_run.py +0 -0
  438. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/gui_v27_extras.py +0 -0
  439. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/gui_windows.py +0 -0
  440. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/har_replay.py +0 -0
  441. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/hardware_keys.py +0 -0
  442. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/heatmap.py +0 -0
  443. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/i18n.py +0 -0
  444. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/importers/__init__.py +0 -0
  445. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/importers/burp_zap.py +0 -0
  446. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/incremental/__init__.py +0 -0
  447. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/incremental/_legacy.py +0 -0
  448. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/incremental/diff_scan.py +0 -0
  449. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/incremental/smart_skip.py +0 -0
  450. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/__init__.py +0 -0
  451. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/cisa_kev.py +0 -0
  452. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/epss.py +0 -0
  453. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/github_issues.py +0 -0
  454. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/osint.py +0 -0
  455. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/sucuri_sitecheck.py +0 -0
  456. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/threat_intel.py +0 -0
  457. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/ticketing.py +0 -0
  458. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/tor_proxy.py +0 -0
  459. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/virustotal.py +0 -0
  460. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations/webhooks_chat.py +0 -0
  461. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/integrations_v27.py +0 -0
  462. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/issue_push.py +0 -0
  463. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/kev.py +0 -0
  464. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/licensing.py +0 -0
  465. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/log.py +0 -0
  466. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/mobile_api.py +0 -0
  467. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/mobile_v27.py +0 -0
  468. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/models.py +0 -0
  469. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/monitors.py +0 -0
  470. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/notify.py +0 -0
  471. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/password_audit.py +0 -0
  472. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/payloads.py +0 -0
  473. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/perf/__init__.py +0 -0
  474. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/perf/_legacy.py +0 -0
  475. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/perf/connection_pool.py +0 -0
  476. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/perf/parallel_sites.py +0 -0
  477. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/perf_v27.py +0 -0
  478. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/playbook.py +0 -0
  479. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/policy.py +0 -0
  480. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/pr_inspector.py +0 -0
  481. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/prove.py +0 -0
  482. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/py.typed +0 -0
  483. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/recommend.py +0 -0
  484. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reference_diff.py +0 -0
  485. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/region_egress.py +0 -0
  486. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/remediation_videos.py +0 -0
  487. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/report_query.py +0 -0
  488. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/__init__.py +0 -0
  489. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/attestation.py +0 -0
  490. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/auditor_pdf.py +0 -0
  491. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/badge_svg.py +0 -0
  492. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/board_one_pager.py +0 -0
  493. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/bounty_format.py +0 -0
  494. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/burp_export.py +0 -0
  495. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/comparison_two_sites.py +0 -0
  496. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/compliance_attestation.py +0 -0
  497. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/console.py +0 -0
  498. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/csv_out.py +0 -0
  499. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/d3fend_mapping.py +0 -0
  500. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/dashboard.py +0 -0
  501. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/diff_agency.py +0 -0
  502. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/diff_viewer.py +0 -0
  503. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/docx_report.py +0 -0
  504. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/eli5_toggle.py +0 -0
  505. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/exec_pdf.py +0 -0
  506. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/executive_pack.py +0 -0
  507. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/executive_tldr.py +0 -0
  508. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/finding_heatmap.py +0 -0
  509. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/gdpr_dsr_report.py +0 -0
  510. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/html.py +0 -0
  511. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/issue_export.py +0 -0
  512. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/json_out.py +0 -0
  513. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/live_sync.py +0 -0
  514. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/markdown.py +0 -0
  515. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/org_dashboard.py +0 -0
  516. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/pdf_custom_branding.py +0 -0
  517. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/public_page.py +0 -0
  518. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/risk_forecast.py +0 -0
  519. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/sarif.py +0 -0
  520. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/snapshot_compare.py +0 -0
  521. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/translated_summary.py +0 -0
  522. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/trend_over_time.py +0 -0
  523. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/user_template.py +0 -0
  524. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/vex_export.py +0 -0
  525. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/xlsx_out.py +0 -0
  526. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/reporters/xlsx_pivot.py +0 -0
  527. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/risk.py +0 -0
  528. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/risk_weights.py +0 -0
  529. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/sbom.py +0 -0
  530. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/scan_zip.py +0 -0
  531. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/scanner.py +0 -0
  532. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/scheduler.py +0 -0
  533. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/siem.py +0 -0
  534. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/sites.py +0 -0
  535. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/sla.py +0 -0
  536. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/slack_app.py +0 -0
  537. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ssh_audit.py +0 -0
  538. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/tags.py +0 -0
  539. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/threat_intel_v2.py +0 -0
  540. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/tray.py +0 -0
  541. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/ux_extras.py +0 -0
  542. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/waf_rules.py +0 -0
  543. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/watchers.py +0 -0
  544. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan/workflow_cmds.py +0 -0
  545. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan.egg-info/dependency_links.txt +0 -0
  546. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan.egg-info/entry_points.txt +0 -0
  547. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan.egg-info/requires.txt +0 -0
  548. {wpsecscan-2.7.2 → wpsecscan-2.7.3}/wpsecscan.egg-info/top_level.txt +0 -0
@@ -1,1224 +1,1224 @@
1
- Metadata-Version: 2.4
2
- Name: wpsecscan
3
- Version: 2.7.2
4
- Summary: Defensive WordPress security scanner. 200+ checks, 8-source nightly CVE aggregator, AI-assisted remediation (BYO key), 15 compliance frameworks (OWASP/PCI/NIST/ISO/HIPAA/SOC2/HITRUST/CMMC), Sigstore-signed releases with SLSA L3 provenance, 10 threat-intel feeds (KEV/EPSS/Exploit-DB/ATT&CK/STIX/MISP/OTX/GreyNoise), continuous monitors, consent-gated exploit verification, multi-tenant RBAC/SSO/audit-log enterprise mode, 12 report formats. Authorized testing only.
5
- Author-email: Bryan <bryaninbangkok@gmail.com>
6
- License: GNU AFFERO GENERAL PUBLIC LICENSE
7
- Version 3, 19 November 2007
8
-
9
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
10
- Everyone is permitted to copy and distribute verbatim copies
11
- of this license document, but changing it is not allowed.
12
-
13
- Preamble
14
-
15
- The GNU Affero General Public License is a free, copyleft license for
16
- software and other kinds of works, specifically designed to ensure
17
- cooperation with the community in the case of network server software.
18
-
19
- The licenses for most software and other practical works are designed
20
- to take away your freedom to share and change the works. By contrast,
21
- our General Public Licenses are intended to guarantee your freedom to
22
- share and change all versions of a program--to make sure it remains free
23
- software for all its users.
24
-
25
- When we speak of free software, we are referring to freedom, not
26
- price. Our General Public Licenses are designed to make sure that you
27
- have the freedom to distribute copies of free software (and charge for
28
- them if you wish), that you receive source code or can get it if you
29
- want it, that you can change the software or use pieces of it in new
30
- free programs, and that you know you can do these things.
31
-
32
- Developers that use our General Public Licenses protect your rights
33
- with two steps: (1) assert copyright on the software, and (2) offer
34
- you this License which gives you legal permission to copy, distribute
35
- and/or modify the software.
36
-
37
- A secondary benefit of defending all users' freedom is that
38
- improvements made in alternate versions of the program, if they
39
- receive widespread use, become available for other developers to
40
- incorporate. Many developers of free software are heartened and
41
- encouraged by the resulting cooperation. However, in the case of
42
- software used on network servers, this result may fail to come about.
43
- The GNU General Public License permits making a modified version and
44
- letting the public access it on a server without ever releasing its
45
- source code to the public.
46
-
47
- The GNU Affero General Public License is designed specifically to
48
- ensure that, in such cases, the modified source code becomes available
49
- to the community. It requires the operator of a network server to
50
- provide the source code of the modified version running there to the
51
- users of that server. Therefore, public use of a modified version, on
52
- a publicly accessible server, gives the public access to the source
53
- code of the modified version.
54
-
55
- An older license, called the Affero General Public License and
56
- published by Affero, was designed to accomplish similar goals. This is
57
- a different license, not a version of the Affero GPL, but Affero has
58
- released a new version of the Affero GPL which permits relicensing under
59
- this license.
60
-
61
- The precise terms and conditions for copying, distribution and
62
- modification follow.
63
-
64
- TERMS AND CONDITIONS
65
-
66
- 0. Definitions.
67
-
68
- "This License" refers to version 3 of the GNU Affero General Public License.
69
-
70
- "Copyright" also means copyright-like laws that apply to other kinds of
71
- works, such as semiconductor masks.
72
-
73
- "The Program" refers to any copyrightable work licensed under this
74
- License. Each licensee is addressed as "you". "Licensees" and
75
- "recipients" may be individuals or organizations.
76
-
77
- To "modify" a work means to copy from or adapt all or part of the work
78
- in a fashion requiring copyright permission, other than the making of an
79
- exact copy. The resulting work is called a "modified version" of the
80
- earlier work or a work "based on" the earlier work.
81
-
82
- A "covered work" means either the unmodified Program or a work based
83
- on the Program.
84
-
85
- To "propagate" a work means to do anything with it that, without
86
- permission, would make you directly or secondarily liable for
87
- infringement under applicable copyright law, except executing it on a
88
- computer or modifying a private copy. Propagation includes copying,
89
- distribution (with or without modification), making available to the
90
- public, and in some countries other activities as well.
91
-
92
- To "convey" a work means any kind of propagation that enables other
93
- parties to make or receive copies. Mere interaction with a user through
94
- a computer network, with no transfer of a copy, is not conveying.
95
-
96
- An interactive user interface displays "Appropriate Legal Notices"
97
- to the extent that it includes a convenient and prominently visible
98
- feature that (1) displays an appropriate copyright notice, and (2)
99
- tells the user that there is no warranty for the work (except to the
100
- extent that warranties are provided), that licensees may convey the
101
- work under this License, and how to view a copy of this License. If
102
- the interface presents a list of user commands or options, such as a
103
- menu, a prominent item in the list meets this criterion.
104
-
105
- 1. Source Code.
106
-
107
- The "source code" for a work means the preferred form of the work
108
- for making modifications to it. "Object code" means any non-source
109
- form of a work.
110
-
111
- A "Standard Interface" means an interface that either is an official
112
- standard defined by a recognized standards body, or, in the case of
113
- interfaces specified for a particular programming language, one that
114
- is widely used among developers working in that language.
115
-
116
- The "System Libraries" of an executable work include anything, other
117
- than the work as a whole, that (a) is included in the normal form of
118
- packaging a Major Component, but which is not part of that Major
119
- Component, and (b) serves only to enable use of the work with that
120
- Major Component, or to implement a Standard Interface for which an
121
- implementation is available to the public in source code form. A
122
- "Major Component", in this context, means a major essential component
123
- (kernel, window system, and so on) of the specific operating system
124
- (if any) on which the executable work runs, or a compiler used to
125
- produce the work, or an object code interpreter used to run it.
126
-
127
- The "Corresponding Source" for a work in object code form means all
128
- the source code needed to generate, install, and (for an executable
129
- work) run the object code and to modify the work, including scripts to
130
- control those activities. However, it does not include the work's
131
- System Libraries, or general-purpose tools or generally available free
132
- programs which are used unmodified in performing those activities but
133
- which are not part of the work. For example, Corresponding Source
134
- includes interface definition files associated with source files for
135
- the work, and the source code for shared libraries and dynamically
136
- linked subprograms that the work is specifically designed to require,
137
- such as by intimate data communication or control flow between those
138
- subprograms and other parts of the work.
139
-
140
- The Corresponding Source need not include anything that users
141
- can regenerate automatically from other parts of the Corresponding
142
- Source.
143
-
144
- The Corresponding Source for a work in source code form is that
145
- same work.
146
-
147
- 2. Basic Permissions.
148
-
149
- All rights granted under this License are granted for the term of
150
- copyright on the Program, and are irrevocable provided the stated
151
- conditions are met. This License explicitly affirms your unlimited
152
- permission to run the unmodified Program. The output from running a
153
- covered work is covered by this License only if the output, given its
154
- content, constitutes a covered work. This License acknowledges your
155
- rights of fair use or other equivalent, as provided by copyright law.
156
-
157
- You may make, run and propagate covered works that you do not
158
- convey, without conditions so long as your license otherwise remains
159
- in force. You may convey covered works to others for the sole purpose
160
- of having them make modifications exclusively for you, or provide you
161
- with facilities for running those works, provided that you comply with
162
- the terms of this License in conveying all material for which you do
163
- not control copyright. Those thus making or running the covered works
164
- for you must do so exclusively on your behalf, under your direction
165
- and control, on terms that prohibit them from making any copies of
166
- your copyrighted material outside their relationship with you.
167
-
168
- Conveying under any other circumstances is permitted solely under
169
- the conditions stated below. Sublicensing is not allowed; section 10
170
- makes it unnecessary.
171
-
172
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
173
-
174
- No covered work shall be deemed part of an effective technological
175
- measure under any applicable law fulfilling obligations under article
176
- 11 of the WIPO copyright treaty adopted on 20 December 1996, or
177
- similar laws prohibiting or restricting circumvention of such
178
- measures.
179
-
180
- When you convey a covered work, you waive any legal power to forbid
181
- circumvention of technological measures to the extent such circumvention
182
- is effected by exercising rights under this License with respect to
183
- the covered work, and you disclaim any intention to limit operation or
184
- modification of the work as a means of enforcing, against the work's
185
- users, your or third parties' legal rights to forbid circumvention of
186
- technological measures.
187
-
188
- 4. Conveying Verbatim Copies.
189
-
190
- You may convey verbatim copies of the Program's source code as you
191
- receive it, in any medium, provided that you conspicuously and
192
- appropriately publish on each copy an appropriate copyright notice;
193
- keep intact all notices stating that this License and any
194
- non-permissive terms added in accord with section 7 apply to the code;
195
- keep intact all notices of the absence of any warranty; and give all
196
- recipients a copy of this License along with the Program.
197
-
198
- You may charge any price or no price for each copy that you convey,
199
- and you may offer support or warranty protection for a fee.
200
-
201
- 5. Conveying Modified Source Versions.
202
-
203
- You may convey a work based on the Program, or the modifications to
204
- produce it from the Program, in the form of source code under the
205
- terms of section 4, provided that you also meet all of these conditions:
206
-
207
- a) The work must carry prominent notices stating that you modified
208
- it, and giving a relevant date.
209
-
210
- b) The work must carry prominent notices stating that it is
211
- released under this License and any conditions added under section
212
- 7. This requirement modifies the requirement in section 4 to
213
- "keep intact all notices".
214
-
215
- c) You must license the entire work, as a whole, under this
216
- License to anyone who comes into possession of a copy. This
217
- License will therefore apply, along with any applicable section 7
218
- additional terms, to the whole of the work, and all its parts,
219
- regardless of how they are packaged. This License gives no
220
- permission to license the work in any other way, but it does not
221
- invalidate such permission if you have separately received it.
222
-
223
- d) If the work has interactive user interfaces, each must display
224
- Appropriate Legal Notices; however, if the Program has interactive
225
- interfaces that do not display Appropriate Legal Notices, your
226
- work need not make them do so.
227
-
228
- A compilation of a covered work with other separate and independent
229
- works, which are not by their nature extensions of the covered work,
230
- and which are not combined with it such as to form a larger program,
231
- in or on a volume of a storage or distribution medium, is called an
232
- "aggregate" if the compilation and its resulting copyright are not
233
- used to limit the access or legal rights of the compilation's users
234
- beyond what the individual works permit. Inclusion of a covered work
235
- in an aggregate does not cause this License to apply to the other
236
- parts of the aggregate.
237
-
238
- 6. Conveying Non-Source Forms.
239
-
240
- You may convey a covered work in object code form under the terms
241
- of sections 4 and 5, provided that you also convey the
242
- machine-readable Corresponding Source under the terms of this License,
243
- in one of these ways:
244
-
245
- a) Convey the object code in, or embodied in, a physical product
246
- (including a physical distribution medium), accompanied by the
247
- Corresponding Source fixed on a durable physical medium
248
- customarily used for software interchange.
249
-
250
- b) Convey the object code in, or embodied in, a physical product
251
- (including a physical distribution medium), accompanied by a
252
- written offer, valid for at least three years and valid for as
253
- long as you offer spare parts or customer support for that product
254
- model, to give anyone who possesses the object code either (1) a
255
- copy of the Corresponding Source for all the software in the
256
- product that is covered by this License, on a durable physical
257
- medium customarily used for software interchange, for a price no
258
- more than your reasonable cost of physically performing this
259
- conveying of source, or (2) access to copy the
260
- Corresponding Source from a network server at no charge.
261
-
262
- c) Convey individual copies of the object code with a copy of the
263
- written offer to provide the Corresponding Source. This
264
- alternative is allowed only occasionally and noncommercially, and
265
- only if you received the object code with such an offer, in accord
266
- with subsection 6b.
267
-
268
- d) Convey the object code by offering access from a designated
269
- place (gratis or for a charge), and offer equivalent access to the
270
- Corresponding Source in the same way through the same place at no
271
- further charge. You need not require recipients to copy the
272
- Corresponding Source along with the object code. If the place to
273
- copy the object code is a network server, the Corresponding Source
274
- may be on a different server (operated by you or a third party)
275
- that supports equivalent copying facilities, provided you maintain
276
- clear directions next to the object code saying where to find the
277
- Corresponding Source. Regardless of what server hosts the
278
- Corresponding Source, you remain obligated to ensure that it is
279
- available for as long as needed to satisfy these requirements.
280
-
281
- e) Convey the object code using peer-to-peer transmission, provided
282
- you inform other peers where the object code and Corresponding
283
- Source of the work are being offered to the general public at no
284
- charge under subsection 6d.
285
-
286
- A separable portion of the object code, whose source code is excluded
287
- from the Corresponding Source as a System Library, need not be
288
- included in conveying the object code work.
289
-
290
- A "User Product" is either (1) a "consumer product", which means any
291
- tangible personal property which is normally used for personal, family,
292
- or household purposes, or (2) anything designed or sold for incorporation
293
- into a dwelling. In determining whether a product is a consumer product,
294
- doubtful cases shall be resolved in favor of coverage. For a particular
295
- product received by a particular user, "normally used" refers to a
296
- typical or common use of that class of product, regardless of the status
297
- of the particular user or of the way in which the particular user
298
- actually uses, or expects or is expected to use, the product. A product
299
- is a consumer product regardless of whether the product has substantial
300
- commercial, industrial or non-consumer uses, unless such uses represent
301
- the only significant mode of use of the product.
302
-
303
- "Installation Information" for a User Product means any methods,
304
- procedures, authorization keys, or other information required to install
305
- and execute modified versions of a covered work in that User Product from
306
- a modified version of its Corresponding Source. The information must
307
- suffice to ensure that the continued functioning of the modified object
308
- code is in no case prevented or interfered with solely because
309
- modification has been made.
310
-
311
- If you convey an object code work under this section in, or with, or
312
- specifically for use in, a User Product, and the conveying occurs as
313
- part of a transaction in which the right of possession and use of the
314
- User Product is transferred to the recipient in perpetuity or for a
315
- fixed term (regardless of how the transaction is characterized), the
316
- Corresponding Source conveyed under this section must be accompanied
317
- by the Installation Information. But this requirement does not apply
318
- if neither you nor any third party retains the ability to install
319
- modified object code on the User Product (for example, the work has
320
- been installed in ROM).
321
-
322
- The requirement to provide Installation Information does not include a
323
- requirement to continue to provide support service, warranty, or updates
324
- for a work that has been modified or installed by the recipient, or for
325
- the User Product in which it has been modified or installed. Access to a
326
- network may be denied when the modification itself materially and
327
- adversely affects the operation of the network or violates the rules and
328
- protocols for communication across the network.
329
-
330
- Corresponding Source conveyed, and Installation Information provided,
331
- in accord with this section must be in a format that is publicly
332
- documented (and with an implementation available to the public in
333
- source code form), and must require no special password or key for
334
- unpacking, reading or copying.
335
-
336
- 7. Additional Terms.
337
-
338
- "Additional permissions" are terms that supplement the terms of this
339
- License by making exceptions from one or more of its conditions.
340
- Additional permissions that are applicable to the entire Program shall
341
- be treated as though they were included in this License, to the extent
342
- that they are valid under applicable law. If additional permissions
343
- apply only to part of the Program, that part may be used separately
344
- under those permissions, but the entire Program remains governed by
345
- this License without regard to the additional permissions.
346
-
347
- When you convey a copy of a covered work, you may at your option
348
- remove any additional permissions from that copy, or from any part of
349
- it. (Additional permissions may be written to require their own
350
- removal in certain cases when you modify the work.) You may place
351
- additional permissions on material, added by you to a covered work,
352
- for which you have or can give appropriate copyright permission.
353
-
354
- Notwithstanding any other provision of this License, for material you
355
- add to a covered work, you may (if authorized by the copyright holders of
356
- that material) supplement the terms of this License with terms:
357
-
358
- a) Disclaiming warranty or limiting liability differently from the
359
- terms of sections 15 and 16 of this License; or
360
-
361
- b) Requiring preservation of specified reasonable legal notices or
362
- author attributions in that material or in the Appropriate Legal
363
- Notices displayed by works containing it; or
364
-
365
- c) Prohibiting misrepresentation of the origin of that material, or
366
- requiring that modified versions of such material be marked in
367
- reasonable ways as different from the original version; or
368
-
369
- d) Limiting the use for publicity purposes of names of licensors or
370
- authors of the material; or
371
-
372
- e) Declining to grant rights under trademark law for use of some
373
- trade names, trademarks, or service marks; or
374
-
375
- f) Requiring indemnification of licensors and authors of that
376
- material by anyone who conveys the material (or modified versions of
377
- it) with contractual assumptions of liability to the recipient, for
378
- any liability that these contractual assumptions directly impose on
379
- those licensors and authors.
380
-
381
- All other non-permissive additional terms are considered "further
382
- restrictions" within the meaning of section 10. If the Program as you
383
- received it, or any part of it, contains a notice stating that it is
384
- governed by this License along with a term that is a further
385
- restriction, you may remove that term. If a license document contains
386
- a further restriction but permits relicensing or conveying under this
387
- License, you may add to a covered work material governed by the terms
388
- of that license document, provided that the further restriction does
389
- not survive such relicensing or conveying.
390
-
391
- If you add terms to a covered work in accord with this section, you
392
- must place, in the relevant source files, a statement of the
393
- additional terms that apply to those files, or a notice indicating
394
- where to find the applicable terms.
395
-
396
- Additional terms, permissive or non-permissive, may be stated in the
397
- form of a separately written license, or stated as exceptions;
398
- the above requirements apply either way.
399
-
400
- 8. Termination.
401
-
402
- You may not propagate or modify a covered work except as expressly
403
- provided under this License. Any attempt otherwise to propagate or
404
- modify it is void, and will automatically terminate your rights under
405
- this License (including any patent licenses granted under the third
406
- paragraph of section 11).
407
-
408
- However, if you cease all violation of this License, then your
409
- license from a particular copyright holder is reinstated (a)
410
- provisionally, unless and until the copyright holder explicitly and
411
- finally terminates your license, and (b) permanently, if the copyright
412
- holder fails to notify you of the violation by some reasonable means
413
- prior to 60 days after the cessation.
414
-
415
- Moreover, your license from a particular copyright holder is
416
- reinstated permanently if the copyright holder notifies you of the
417
- violation by some reasonable means, this is the first time you have
418
- received notice of violation of this License (for any work) from that
419
- copyright holder, and you cure the violation prior to 30 days after
420
- your receipt of the notice.
421
-
422
- Termination of your rights under this section does not terminate the
423
- licenses of parties who have received copies or rights from you under
424
- this License. If your rights have been terminated and not permanently
425
- reinstated, you do not qualify to receive new licenses for the same
426
- material under section 10.
427
-
428
- 9. Acceptance Not Required for Having Copies.
429
-
430
- You are not required to accept this License in order to receive or
431
- run a copy of the Program. Ancillary propagation of a covered work
432
- occurring solely as a consequence of using peer-to-peer transmission
433
- to receive a copy likewise does not require acceptance. However,
434
- nothing other than this License grants you permission to propagate or
435
- modify any covered work. These actions infringe copyright if you do
436
- not accept this License. Therefore, by modifying or propagating a
437
- covered work, you indicate your acceptance of this License to do so.
438
-
439
- 10. Automatic Licensing of Downstream Recipients.
440
-
441
- Each time you convey a covered work, the recipient automatically
442
- receives a license from the original licensors, to run, modify and
443
- propagate that work, subject to this License. You are not responsible
444
- for enforcing compliance by third parties with this License.
445
-
446
- An "entity transaction" is a transaction transferring control of an
447
- organization, or substantially all assets of one, or subdividing an
448
- organization, or merging organizations. If propagation of a covered
449
- work results from an entity transaction, each party to that
450
- transaction who receives a copy of the work also receives whatever
451
- licenses to the work the party's predecessor in interest had or could
452
- give under the previous paragraph, plus a right to possession of the
453
- Corresponding Source of the work from the predecessor in interest, if
454
- the predecessor has it or can get it with reasonable efforts.
455
-
456
- You may not impose any further restrictions on the exercise of the
457
- rights granted or affirmed under this License. For example, you may
458
- not impose a license fee, royalty, or other charge for exercise of
459
- rights granted under this License, and you may not initiate litigation
460
- (including a cross-claim or counterclaim in a lawsuit) alleging that
461
- any patent claim is infringed by making, using, selling, offering for
462
- sale, or importing the Program or any portion of it.
463
-
464
- 11. Patents.
465
-
466
- A "contributor" is a copyright holder who authorizes use under this
467
- License of the Program or a work on which the Program is based. The
468
- work thus licensed is called the contributor's "contributor version".
469
-
470
- A contributor's "essential patent claims" are all patent claims
471
- owned or controlled by the contributor, whether already acquired or
472
- hereafter acquired, that would be infringed by some manner, permitted
473
- by this License, of making, using, or selling its contributor version,
474
- but do not include claims that would be infringed only as a
475
- consequence of further modification of the contributor version. For
476
- purposes of this definition, "control" includes the right to grant
477
- patent sublicenses in a manner consistent with the requirements of
478
- this License.
479
-
480
- Each contributor grants you a non-exclusive, worldwide, royalty-free
481
- patent license under the contributor's essential patent claims, to
482
- make, use, sell, offer for sale, import and otherwise run, modify and
483
- propagate the contents of its contributor version.
484
-
485
- In the following three paragraphs, a "patent license" is any express
486
- agreement or commitment, however denominated, not to enforce a patent
487
- (such as an express permission to practice a patent or covenant not to
488
- sue for patent infringement). To "grant" such a patent license to a
489
- party means to make such an agreement or commitment not to enforce a
490
- patent against the party.
491
-
492
- If you convey a covered work, knowingly relying on a patent license,
493
- and the Corresponding Source of the work is not available for anyone
494
- to copy, free of charge and under the terms of this License, through a
495
- publicly available network server or other readily accessible means,
496
- then you must either (1) cause the Corresponding Source to be so
497
- available, or (2) arrange to deprive yourself of the benefit of the
498
- patent license for this particular work, or (3) arrange, in a manner
499
- consistent with the requirements of this License, to extend the patent
500
- license to downstream recipients. "Knowingly relying" means you have
501
- actual knowledge that, but for the patent license, your conveying the
502
- covered work in a country, or your recipient's use of the covered work
503
- in a country, would infringe one or more identifiable patents in that
504
- country that you have reason to believe are valid.
505
-
506
- If, pursuant to or in connection with a single transaction or
507
- arrangement, you convey, or propagate by procuring conveyance of, a
508
- covered work, and grant a patent license to some of the parties
509
- receiving the covered work authorizing them to use, propagate, modify
510
- or convey a specific copy of the covered work, then the patent license
511
- you grant is automatically extended to all recipients of the covered
512
- work and works based on it.
513
-
514
- A patent license is "discriminatory" if it does not include within
515
- the scope of its coverage, prohibits the exercise of, or is
516
- conditioned on the non-exercise of one or more of the rights that are
517
- specifically granted under this License. You may not convey a covered
518
- work if you are a party to an arrangement with a third party that is
519
- in the business of distributing software, under which you make payment
520
- to the third party based on the extent of your activity of conveying
521
- the work, and under which the third party grants, to any of the
522
- parties who would receive the covered work from you, a discriminatory
523
- patent license (a) in connection with copies of the covered work
524
- conveyed by you (or copies made from those copies), or (b) primarily
525
- for and in connection with specific products or compilations that
526
- contain the covered work, unless you entered into that arrangement,
527
- or that patent license was granted, prior to 28 March 2007.
528
-
529
- Nothing in this License shall be construed as excluding or limiting
530
- any implied license or other defenses to infringement that may
531
- otherwise be available to you under applicable patent law.
532
-
533
- 12. No Surrender of Others' Freedom.
534
-
535
- If conditions are imposed on you (whether by court order, agreement or
536
- otherwise) that contradict the conditions of this License, they do not
537
- excuse you from the conditions of this License. If you cannot convey a
538
- covered work so as to satisfy simultaneously your obligations under this
539
- License and any other pertinent obligations, then as a consequence you may
540
- not convey it at all. For example, if you agree to terms that obligate you
541
- to collect a royalty for further conveying from those to whom you convey
542
- the Program, the only way you could satisfy both those terms and this
543
- License would be to refrain entirely from conveying the Program.
544
-
545
- 13. Remote Network Interaction; Use with the GNU General Public License.
546
-
547
- Notwithstanding any other provision of this License, if you modify the
548
- Program, your modified version must prominently offer all users
549
- interacting with it remotely through a computer network (if your version
550
- supports such interaction) an opportunity to receive the Corresponding
551
- Source of your version by providing access to the Corresponding Source
552
- from a network server at no charge, through some standard or customary
553
- means of facilitating copying of software. This Corresponding Source
554
- shall include the Corresponding Source for any work covered by version 3
555
- of the GNU General Public License that is incorporated pursuant to the
556
- following paragraph.
557
-
558
- Notwithstanding any other provision of this License, you have
559
- permission to link or combine any covered work with a work licensed
560
- under version 3 of the GNU General Public License into a single
561
- combined work, and to convey the resulting work. The terms of this
562
- License will continue to apply to the part which is the covered work,
563
- but the work with which it is combined will remain governed by version
564
- 3 of the GNU General Public License.
565
-
566
- 14. Revised Versions of this License.
567
-
568
- The Free Software Foundation may publish revised and/or new versions of
569
- the GNU Affero General Public License from time to time. Such new versions
570
- will be similar in spirit to the present version, but may differ in detail to
571
- address new problems or concerns.
572
-
573
- Each version is given a distinguishing version number. If the
574
- Program specifies that a certain numbered version of the GNU Affero General
575
- Public License "or any later version" applies to it, you have the
576
- option of following the terms and conditions either of that numbered
577
- version or of any later version published by the Free Software
578
- Foundation. If the Program does not specify a version number of the
579
- GNU Affero General Public License, you may choose any version ever published
580
- by the Free Software Foundation.
581
-
582
- If the Program specifies that a proxy can decide which future
583
- versions of the GNU Affero General Public License can be used, that proxy's
584
- public statement of acceptance of a version permanently authorizes you
585
- to choose that version for the Program.
586
-
587
- Later license versions may give you additional or different
588
- permissions. However, no additional obligations are imposed on any
589
- author or copyright holder as a result of your choosing to follow a
590
- later version.
591
-
592
- 15. Disclaimer of Warranty.
593
-
594
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
595
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
596
- HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
597
- OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
598
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
599
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
600
- IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
601
- ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
602
-
603
- 16. Limitation of Liability.
604
-
605
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
606
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
607
- THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
608
- GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
609
- USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
610
- DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
611
- PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
612
- EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
613
- SUCH DAMAGES.
614
-
615
- 17. Interpretation of Sections 15 and 16.
616
-
617
- If the disclaimer of warranty and limitation of liability provided
618
- above cannot be given local legal effect according to their terms,
619
- reviewing courts shall apply local law that most closely approximates
620
- an absolute waiver of all civil liability in connection with the
621
- Program, unless a warranty or assumption of liability accompanies a
622
- copy of the Program in return for a fee.
623
-
624
- END OF TERMS AND CONDITIONS
625
-
626
- How to Apply These Terms to Your New Programs
627
-
628
- If you develop a new program, and you want it to be of the greatest
629
- possible use to the public, the best way to achieve this is to make it
630
- free software which everyone can redistribute and change under these terms.
631
-
632
- To do so, attach the following notices to the program. It is safest
633
- to attach them to the start of each source file to most effectively
634
- state the exclusion of warranty; and each file should have at least
635
- the "copyright" line and a pointer to where the full notice is found.
636
-
637
- <one line to give the program's name and a brief idea of what it does.>
638
- Copyright (C) <year> <name of author>
639
-
640
- This program is free software: you can redistribute it and/or modify
641
- it under the terms of the GNU Affero General Public License as published by
642
- the Free Software Foundation, either version 3 of the License, or
643
- (at your option) any later version.
644
-
645
- This program is distributed in the hope that it will be useful,
646
- but WITHOUT ANY WARRANTY; without even the implied warranty of
647
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
648
- GNU Affero General Public License for more details.
649
-
650
- You should have received a copy of the GNU Affero General Public License
651
- along with this program. If not, see <https://www.gnu.org/licenses/>.
652
-
653
- Also add information on how to contact you by electronic and paper mail.
654
-
655
- If your software can interact with users remotely through a computer
656
- network, you should also make sure that it provides a way for users to
657
- get its source. For example, if your program is a web application, its
658
- interface could display a "Source" link that leads users to an archive
659
- of the code. There are many ways you could offer source, and different
660
- solutions will be better for different programs; see section 13 for the
661
- specific requirements.
662
-
663
- You should also get your employer (if you work as a programmer) or school,
664
- if any, to sign a "copyright disclaimer" for the program, if necessary.
665
- For more information on this, and how to apply and follow the GNU AGPL, see
666
- <https://www.gnu.org/licenses/>.
667
-
668
- Project-URL: Homepage, https://github.com/bryanflowers/wpsecscan
669
- Project-URL: Repository, https://github.com/bryanflowers/wpsecscan
670
- Project-URL: Documentation, https://github.com/bryanflowers/wpsecscan#readme
671
- Project-URL: Issues, https://github.com/bryanflowers/wpsecscan/issues
672
- Project-URL: Changelog, https://github.com/bryanflowers/wpsecscan/blob/main/CHANGELOG.md
673
- Project-URL: Security, https://github.com/bryanflowers/wpsecscan/blob/main/SECURITY.md
674
- Keywords: wordpress,security,scanner,pentest,defensive,vulnerability,cve,wpscan
675
- Classifier: Development Status :: 5 - Production/Stable
676
- Classifier: Environment :: Console
677
- Classifier: Environment :: Win32 (MS Windows)
678
- Classifier: Intended Audience :: System Administrators
679
- Classifier: Intended Audience :: Information Technology
680
- Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
681
- Classifier: Operating System :: OS Independent
682
- Classifier: Programming Language :: Python :: 3
683
- Classifier: Programming Language :: Python :: 3.10
684
- Classifier: Programming Language :: Python :: 3.11
685
- Classifier: Programming Language :: Python :: 3.12
686
- Classifier: Topic :: Security
687
- Classifier: Topic :: Internet :: WWW/HTTP
688
- Requires-Python: >=3.10
689
- Description-Content-Type: text/markdown
690
- License-File: LICENSE
691
- License-File: NOTICE
692
- Requires-Dist: httpx[http2]<0.29,>=0.27
693
- Requires-Dist: jinja2<4,>=3.1
694
- Requires-Dist: rich<14,>=13.7
695
- Requires-Dist: openpyxl<4,>=3.1
696
- Requires-Dist: keyring<26,>=24
697
- Provides-Extra: pdf
698
- Requires-Dist: reportlab<5,>=4.0; extra == "pdf"
699
- Provides-Extra: browser
700
- Requires-Dist: playwright<2,>=1.40; extra == "browser"
701
- Provides-Extra: yaml
702
- Requires-Dist: pyyaml<7,>=6.0; extra == "yaml"
703
- Provides-Extra: ops
704
- Requires-Dist: redis<7,>=5.0; extra == "ops"
705
- Requires-Dist: bcrypt<5,>=4.0; extra == "ops"
706
- Provides-Extra: ui
707
- Requires-Dist: Pillow<12,>=10; extra == "ui"
708
- Requires-Dist: pystray<0.20,>=0.19; extra == "ui"
709
- Provides-Extra: security
710
- Requires-Dist: defusedxml<0.8,>=0.7; extra == "security"
711
- Provides-Extra: all
712
- Requires-Dist: reportlab<5,>=4.0; extra == "all"
713
- Requires-Dist: playwright<2,>=1.40; extra == "all"
714
- Requires-Dist: pyyaml<7,>=6.0; extra == "all"
715
- Requires-Dist: redis<7,>=5.0; extra == "all"
716
- Requires-Dist: bcrypt<5,>=4.0; extra == "all"
717
- Requires-Dist: Pillow<12,>=10; extra == "all"
718
- Requires-Dist: pystray<0.20,>=0.19; extra == "all"
719
- Requires-Dist: keyring<26,>=24; extra == "all"
720
- Requires-Dist: defusedxml<0.8,>=0.7; extra == "all"
721
- Provides-Extra: test
722
- Requires-Dist: pytest>=7.4; extra == "test"
723
- Dynamic: license-file
724
-
725
- # WPSecScan
726
-
727
- [![tests](https://github.com/bryanflowers/wpsecscan/actions/workflows/tests.yml/badge.svg)](https://github.com/bryanflowers/wpsecscan/actions/workflows/tests.yml)
728
- [![CVE feed](https://github.com/bryanflowers/wpsecscan/actions/workflows/cve-feed.yml/badge.svg)](https://github.com/bryanflowers/wpsecscan/actions/workflows/cve-feed.yml)
729
- [![license](https://img.shields.io/github/license/bryanflowers/wpsecscan)](LICENSE)
730
- [![release](https://img.shields.io/github/v/release/bryanflowers/wpsecscan)](https://github.com/bryanflowers/wpsecscan/releases/latest)
731
- [![downloads](https://img.shields.io/github/downloads/bryanflowers/wpsecscan/total)](https://github.com/bryanflowers/wpsecscan/releases)
732
- [![python](https://img.shields.io/badge/python-3.10%2B-blue)](https://www.python.org/)
733
- [![checks](https://img.shields.io/badge/checks-270-brightgreen)](FEATURES.md)
734
- [![CVE sources](https://img.shields.io/badge/CVE%20sources-8-blue)](docs/data-sources.md)
735
- [![tests passing](https://img.shields.io/badge/tests-780%20passing-brightgreen)](tests/)
736
- [![PyPI](https://img.shields.io/pypi/v/wpsecscan)](https://pypi.org/project/wpsecscan/)
737
- [![SLSA Level 3](https://img.shields.io/badge/SLSA-Level%203-success)](docs/verify-release.md)
738
- [![Sigstore signed](https://img.shields.io/badge/Sigstore-signed-blueviolet)](docs/verify-release.md)
739
- [![threat-intel](https://img.shields.io/badge/threat--intel-10%20providers-orange)](FEATURES.md)
740
-
741
- > **⚠ AUTHORIZED USE ONLY**
742
- >
743
- > WPSecScan is a defensive security tool. Use it **only** on sites you own
744
- > or sites whose owner has given you **written permission** to test.
745
- > Unauthorised scanning is illegal in most jurisdictions (e.g. the US
746
- > Computer Fraud and Abuse Act, the UK Computer Misuse Act 1990, the EU
747
- > Network and Information Security Directive). The maintainers accept no
748
- > liability for misuse. By using this software you confirm you have the
749
- > required authorisation for every target you scan.
750
-
751
- **The most thoroughly-sourced WordPress vulnerability scanner — open source, AGPLv3, runs locally.**
752
-
753
- 226 checks across 18 categories. **8-source nightly CVE aggregator**
754
- (NVD + GHSA + Mitre + OSV + Wordfence + WPVulnerability + CIRCL +
755
- Patchstack). **SLSA L3 + Sigstore-signed releases**. **10-provider
756
- threat-intel federation** (CISA KEV, EPSS, Exploit-DB, Metasploit,
757
- ATT&CK Navigator, STIX, MISP, OpenCTI, OTX, GreyNoise). **Continuous
758
- monitoring** (CT/DNS/WHOIS/RBL/honeypot/auto-rollback). **Active
759
- exploit verification** with strict consent gating. **Enterprise
760
- mode**: OIDC + SAML + RBAC + audit-log + approval workflow +
761
- multi-tenant + quotas. **Distribution**: Docker, K8s, Homebrew, Snap,
762
- Flatpak, winget, AUR, Chocolatey.
763
-
764
- Original headline:
765
- gives you a fresher and more complete vulnerability database than
766
- any single paid or free service. Runs entirely on your machine — no
767
- telemetry, no per-site licensing, no data leaves your box.
768
-
769
- Ships as two standalone Windows binaries — no Python required on the machine you run them on.
770
-
771
- - **`wpsecscan.exe`** — command-line scanner. Output: console + HTML + JSON + CSV + SARIF + Markdown + Excel (XLSX) + executive PDF + Burp scope XML + CycloneDX SBOM + shields.io status badge SVG.
772
- - **`wpsecscan-gui.exe`** — full GUI with live progress tree, finding details, risk score,
773
- scan profiles, multi-target queue, scheduled scans, webhook alerts, exploit playbooks, and more.
774
- - **`wpsecscan-companion.zip`** — WordPress plugin that exposes a read-only, token-gated
775
- REST endpoint so the scanner gets authoritative diagnostics in one round-trip (3× more
776
- accurate plugin/theme detection vs HTTP-probe guessing).
777
-
778
- ### Why people are switching to WPSecScan
779
-
780
- - **8-source CVE aggregator** runs nightly on our infrastructure — pulls
781
- Wordfence + NVD + GitHub Security Advisories + Mitre CVE List + OSV.dev +
782
- WPVulnerability.com + CIRCL + Patchstack and merges them into one feed.
783
- Users get a strictly fresher + more complete DB than Wordfence/Patchstack
784
- alone. **6 of 8 sources are fully free, no key required.**
785
- - **Daily DB refresh + per-CVE webhook alerts** — `wpsecscan schedule
786
- install` registers a daily 02:00 CVE-refresh + weekly 03:00 site scan
787
- on Windows Task Scheduler / macOS launchd / Linux systemd.
788
- `wpsecscan db subscribe https://hooks.slack.com/...` fires the moment a
789
- new CVE drops for a plugin you have installed.
790
- - **15 compliance frameworks mapped** per check: OWASP Top 10 + MITRE
791
- ATT&CK + CWE + D3FEND + PCI-DSS 4.0 + NIST 800-53 + ISO 27001 + HIPAA +
792
- FERPA + SOC 2 + FedRAMP + GDPR + HITRUST CSF v11.4 + CMMC 2.0 +
793
- NIST CSF 2.0 + CIS Critical Controls v8 + ISO 27001:2022 Annex A.
794
- - **11 report formats**: HTML, JSON, CSV, SARIF 2.1.0, Markdown, Excel
795
- (XLSX with per-OWASP-category sheets), executive PDF, CycloneDX SBOM,
796
- Burp Suite scope XML, attestation PDF, shields.io status-badge SVG.
797
- - **10 third-party integrations** including Burp Suite project XML,
798
- OWASP ZAP findings import, Nuclei template auto-pull, JIRA / Linear /
799
- GitHub Issues bulk-create, Wordfence Cloud sync, Sucuri SiteCheck,
800
- Patchstack + WPScan write-back, WP Engine / Kinsta / WP.com host APIs.
801
- - **AI-assisted remediation** with PII masking + prompt-injection guard +
802
- per-backend cost tracking. Bring your own OpenAI / Anthropic / Ollama /
803
- llama.cpp key. **`WPSECSCAN_NO_AI=1` to hard-disable.**
804
- - **Privacy-first**: no telemetry, runs locally, supports SOCKS5/HTTP
805
- proxies (Tor friendly), `WPSECSCAN_NO_NETWORK=1` for air-gapped mode.
806
-
807
- ---
808
-
809
- ## Quick install
810
-
811
- ### Option A — `pip install wpsecscan` (any platform)
812
-
813
- The simplest path on Linux, macOS, or Windows-with-Python:
814
-
815
- ```bash
816
- pip install wpsecscan
817
- wpsecscan --version
818
- wpsecscan https://example.com --json-only
819
- ```
820
-
821
- PyPI: <https://pypi.org/project/wpsecscan/>
822
-
823
- For the optional GUI minimize-to-tray feature, install with the
824
- `[ui]` extra (pulls in Pillow + pystray):
825
-
826
- ```bash
827
- pip install "wpsecscan[ui]"
828
- ```
829
-
830
- Other optional extras: `[pdf]` (reportlab for true PDF exec reports),
831
- `[browser]` (playwright for headless DOM-XSS), `[yaml]` (pyyaml for
832
- daemon config), `[ops]` (redis + bcrypt for enterprise mode), or
833
- `[all]` to install everything.
834
-
835
- ### Option B — pre-built Windows binaries
836
-
837
- 1. Open `dist\` in this folder.
838
- 2. Copy `wpsecscan.exe` and `wpsecscan-gui.exe` somewhere on your PATH
839
- (e.g. `C:\Tools\` or `C:\Users\<you>\bin\`).
840
- 3. Done. No Python, no installer, no admin rights needed.
841
-
842
- The first time you run them, Windows SmartScreen may warn that the publisher is unknown
843
- (the binaries aren't code-signed). Click **More info → Run anyway**.
844
-
845
- ### Option C — build from source
846
-
847
- Requires Python 3.10+ and PyInstaller. Open PowerShell in the project root:
848
-
849
- ```powershell
850
- .\build.ps1
851
- ```
852
-
853
- This creates a virtualenv in `.venv\`, installs dependencies from `requirements.txt`,
854
- and runs PyInstaller. Output:
855
-
856
- ```
857
- dist\wpsecscan.exe # CLI (~17 MB)
858
- dist\wpsecscan-gui.exe # GUI (~17 MB)
859
- ```
860
-
861
- Both are single-file executables — copy them anywhere and they run on their own.
862
-
863
- ### Option D — run from source directly (development)
864
-
865
- ```powershell
866
- python -m venv .venv
867
- .\.venv\Scripts\Activate.ps1
868
- pip install .
869
- python run.py https://example.com # CLI
870
- python run_gui.py # GUI
871
- pytest # 780 tests
872
- ```
873
-
874
- ---
875
-
876
- ## First scan
877
-
878
- ### GUI
879
-
880
- 1. Double-click `wpsecscan-gui.exe`.
881
- 2. Paste a URL into the URL field (e.g. `https://your-wp-site.com`).
882
- 3. Click **Scan**. Watch the live tree on the left and click any finding to read
883
- evidence, remediation, and the *Exploit Playbook* (concrete sqlmap/Metasploit/curl/nuclei commands).
884
- 4. When the scan finishes, the **Risk Score** badge at the top shows `0-100` color-coded
885
- (green/yellow/orange/red). HTML and JSON reports are saved to your user folder.
886
-
887
- ### CLI
888
-
889
- ```powershell
890
- # Simple scan, HTML + JSON saved to current directory
891
- wpsecscan.exe https://your-wp-site.com
892
-
893
- # Custom output folder
894
- wpsecscan.exe https://your-wp-site.com --out C:\scans\
895
-
896
- # JSON only, no HTML
897
- wpsecscan.exe https://your-wp-site.com --json-only --out C:\scans\
898
-
899
- # Multiple targets from a file
900
- wpsecscan.exe --file my-sites.txt --concurrency 5 --out C:\scans\
901
-
902
- # Aggressive mode (active payload checks — SQLi, XSS, SSRF, etc.)
903
- wpsecscan.exe https://your-wp-site.com --aggressive
904
-
905
- # Authenticated scan
906
- wpsecscan.exe https://your-wp-site.com --auth-user admin --auth-pass <pwd>
907
-
908
- # Use a saved WPScan API token for richer plugin CVE lookups
909
- wpsecscan.exe https://your-wp-site.com --wpscan-token <KEY>
910
- ```
911
-
912
- **Exit codes**: `0` = clean / info only · `1` = medium findings · `2` = critical or high findings · `130` = Ctrl+C.
913
-
914
- ---
915
-
916
- ## What it checks (226 checks)
917
-
918
- Passive checks always run; aggressive checks need `--aggressive`.
919
-
920
- - **Recon**: WP core version · plugin enum (slug + version) · theme enum · user enum (`?author=`, REST `wp/v2/users`)
921
- - **Surface**: 40+ exposed-path probes (`.env`, `wp-config.php.bak`, `.git/config`, debug.log, backup-plugin dumps, phpinfo, adminer, …) · WebDAV / OPTIONS enum · beta/test/debug query-parameter discovery
922
- - **Auth surface**: `wp-login.php` + XML-RPC method enum + `system.multicall` amplifier check + rate-limit probe · OAuth2/OIDC discovery audit · SAML / XSW endpoint discovery · JWT audit (`alg=none` + weak HS256 brute-force)
923
- - **Transport**: TLS version, cert expiry, HSTS, CSP, X-Frame-Options, Referrer-Policy, Permissions-Policy, cookie flags
924
- - **APIs**: REST namespace map, REST OPTIONS write-method enum, WPGraphQL introspection, CORS misconfig (full preflight matrix incl. `null` origin reflection)
925
- - **Defensive posture**: WAF / CDN detection · WAF rule-set identification (CRS / AWS / Cloudflare Managed / Wordfence Premium) · DNS SPF / DMARC / DKIM · security.txt · AbuseIPDB reputation (opt-in)
926
- - **Supply-chain**: external JS hosts + SRI hash check · source-map exposure · JS library version audit · S3 bucket discovery + public-ACL probe · GitHub leaked-token search (opt-in, scans your domain against AKIA/sk_live_/ghp_/etc.)
927
- - **Subdomain attack surface**: certificate-transparency discovery · dangling-CDN takeover candidates · **cookie-tossing chain** detection (apex-cookie + takeover-able subdomain)
928
- - **Server fingerprint**: Server-Timing, X-Request-ID, X-Debug-Token leaks
929
- - **CVE matching**: 7000+ Wordfence CVEs + 307 high-confidence exploit signatures + 224 modern payloads · CISA KEV catalog enrichment · EPSS percentile scoring · VirusTotal URL/IP enrichment (opt-in)
930
- - **Aggressive** (`--aggressive`): SQLi (error-based + time-blind escalator) · reflected XSS · SSRF · path traversal · open redirect · file upload · default credentials (max 10) · SSTI (7 template engines) · NoSQL operator injection · path-normalisation bypass (`..%2f`, `..;/`, …) · race-condition probe (parallel POSTs) · active HTTP smuggling (CL.TE / TE.CL) · headless DOM-XSS (Playwright, optional)
931
- - **Deep** (`--deep-throttle`): 10-500 wrong-password attempts at 5-60s pacing to map your login throttle threshold (synthetic non-existent user, fixed wrong password — never brute-force)
932
- - **Authenticated** (`--auth-user`/`--auth-pass`): logs in, audits user roles, plugins, Site Health, options
933
-
934
- ### Round-54 additions (Nov 2026 — A1-G4 catalogue)
935
-
936
- WPSecScan grew from 80 → 94 checks plus a wide non-check toolkit:
937
-
938
- | Area | New |
939
- |------|-----|
940
- | **Active probes** | `ssti`, `nosql_injection`, `path_bypass`, `race_condition`, `dom_xss_headless` (Playwright optional) |
941
- | **Passive / intel checks** | `webdav`, `dev_params`, `abuseipdb_lookup` (`--abuseipdb-token`), `waf_ruleset`, `oauth_oidc`, `saml_xsw`, `s3_bucket_discovery`, `github_leak_search` (`--github-search-token`), `jwt_audit` |
942
- | **Modified checks** | `subdomains` (B7 cookie-tossing chain), `cors` (B8 preflight matrix incl. `Origin: null`), `sqli` (A3 time-blind escalator), `smuggling_probe` (A6 active CL.TE/TE.CL) |
943
- | **Threat-intel integrations** | CISA KEV, EPSS, VirusTotal, Sucuri SiteCheck, NVD/Wordfence CVE explainer |
944
- | **Per-check tags** | new `cwe` (e.g. `CWE-79`) + `d3fend` (e.g. `D3-IVA`) fields in `data/check_tags.json` |
945
- | **Reporters** | one-page executive PDF (`--exec-pdf`, uses reportlab or HTML fallback) · two-report drag-and-drop HTML diff viewer · Burp Suite scope XML (`--burp-export`) · severity × OWASP-category SVG heatmap embedded in HTML report |
946
- | **CLI flags** | `--fail-on`, `--diff-against`, `--shell`, `--replay-har`, `--daemon`, `--abuseipdb-token`, `--vt-token`, `--github-search-token`, `--burp-export`, `--exec-pdf` |
947
- | **GUI windows** | step-by-step exploit-playbook walker (right-click any finding) · drill historical findings by OWASP/ATT&CK/CWE/D3FEND tag · multi-URL risk-score trend overlay · drop-in marketplace browser · 5-step first-run tutorial |
948
- | **Collab** | assign-owner + comment threads per finding (right-click) |
949
- | **Infra / docs** | `.github/workflows/wpsecscan.yml` (nightly + PR scans) · GitLab CI / Jenkins / Azure DevOps templates in `ci/` · `Dockerfile` + `docker-compose.yml` · `SDK.md` · `DISTRIBUTED-SCAN.md` · audit-log JSONL of every scan invocation · custom signature / payload drop-in (`~/.wpsecscan/{signatures,payloads}/`) · i18n stub (en + es) |
950
-
951
- ---
952
-
953
- ## Output formats
954
-
955
- Every scan produces:
956
-
957
- | Flag | File | Use case |
958
- |---------------------|--------------------------|-----------------------------------------|
959
- | (default) | `<host>-<ts>.html` | Open in a browser. Has copy-to-clipboard buttons for every command, color-coded exploit playbooks, and a "🖨 Print / Save as PDF" button in the top-right corner. |
960
- | (default) | `<host>-<ts>.json` | Includes per-finding `confidence` (low/medium/high) and per-check `tags` (OWASP Top 10 + MITRE ATT&CK). For downstream tooling. |
961
- | `--csv` | `<host>-<ts>.csv` | Spreadsheet import. Cells are escaped against Excel formula-injection. |
962
- | `--sarif` | `<host>-<ts>.sarif` | GitHub Code Scanning, Azure DevOps, anything that ingests SARIF 2.1.0. |
963
- | `--json-only` | suppresses HTML | CI / scripted use. |
964
- | `--md` | `<host>-<ts>.md` | Markdown report for Confluence / GitHub / Slack threads. |
965
- | `--xlsx` | `<host>-<ts>.xlsx` | Excel workbook with per-OWASP-category sheets. |
966
- | `--har FILE.har` | `FILE.har` | HAR 1.2 recording of every HTTP request (Cookie/Authorization redacted). Replay with `--replay-har`. |
967
- | `--burp-export` | `<host>-<ts>-burp-scope.xml` | Burp Suite scope XML for hand-off to manual testing. |
968
- | `--exec-pdf` | `<host>-<ts>-exec.pdf` | One-page non-technical executive summary. Uses `reportlab` if installed, else writes a print-friendly HTML file. |
969
-
970
- ### Round-54 CLI additions
971
-
972
- | Flag | Purpose |
973
- |---------------------------------------|------------------------------------------------------------------------------------------|
974
- | `--fail-on critical\|high\|medium` | Override exit-code logic — non-zero only when a finding meets or exceeds the threshold. |
975
- | `--diff-against BASELINE.json` | Compute the NEW / RESOLVED delta vs a saved JSON report, print to stdout. |
976
- | `--shell` | After scan, drop into a Python REPL with `report` pre-bound (for power users / IR). |
977
- | `--replay-har HAR_FILE` | Re-run every request in a HAR file; optionally override the origin with `<target>`. |
978
- | `--daemon CONFIG.yml` | Cron-style scheduled scans driven by a YAML config (no Task Scheduler required). |
979
- | `--abuseipdb-token TOKEN` | Enables the AbuseIPDB reputation check for the target's IP. |
980
- | `--vt-token TOKEN` | Enables VirusTotal URL/IP enrichment. |
981
- | `--github-search-token PAT` | Enables GitHub code-search for the target's domain + common secret prefixes. |
982
-
983
- ### Round-56 visibility flags
984
-
985
- | Flag | Purpose |
986
- |---------------------------------------|------------------------------------------------------------------------------------------|
987
- | `--demo` | Synthetic scan against a fake target — every check fires fake findings, every integration fires a fake activity event. Writes one of every artifact to `~/.wpsecscan/demo/`. Great for screenshots, smoke-testing an install, or training new users. |
988
- | `--no-live` | Disable the live multi-panel rich dashboard during scans. The static console reporter still renders at the end. Useful for CI logs / piped output. |
989
-
990
- ---
991
-
992
- ## Power-user features (GUI)
993
-
994
- - **Risk score**: 0–100, color-coded. Calculated from severity weights with per-tier caps.
995
- - **Profiles** (File → Profiles): save the current toggle/pacing/threshold set as `"Quick"`, `"Deep"`, `"Audit"` etc. Loads with one click. Stored in `~/.wpsecscan/profiles.json`.
996
- - **Recent URLs**: the URL field is a dropdown of the last 20 scanned sites.
997
- - **Diff with last scan**: button appears after a scan if a previous JSON for the same URL exists in `~/.wpsecscan/reports/`. Shows `[NEW]` / `[RESOLVED]` per finding.
998
- - **Multi-target scan** (Tools → Multi-target): paste/load a list of URLs, scan each in turn, one-row-per-site dashboard with risk score and Δ-vs-last-scan.
999
- - **Scheduled recurring scan** (Tools → Schedule): registers a Windows Task Scheduler job (`WPSecScan_<host>`) that runs daily/weekly/monthly at a chosen time. Outputs to a folder you pick. Remove with `schtasks /Delete /TN WPSecScan_<host> /F`.
1000
- - **Risk-score trend** (Tools → Show risk trend): ASCII sparkline of historical scores for the current URL.
1001
- - **Webhook notify** (File → Settings → "Webhook notify"): one POST to Slack/Discord/Teams/PagerDuty when a scan finds ≥ chosen severity. Hosts validated against an allow-list — won't post to arbitrary URLs or raw IPs.
1002
- - **Finding annotations**: right-click any finding → "Accepted risk" / "False positive" with an optional note. Persisted per-URL in `~/.wpsecscan/annotations.json`.
1003
- - **Filter pills**: Only NEW (vs last scan), Only CONFIRMED (signature engine actively verified), Hide annotated, per-severity show/hide.
1004
- - **Exploit playbook**: every finding's detail pane includes concrete attacker-side commands (curl PoCs · sqlmap · Metasploit · nuclei · wpscan · ffuf) with `{target}` already substituted, plus a plain-English *"How an attacker uses this"* paragraph.
1005
- - **OWASP + MITRE chips**: every check is tagged with its OWASP Top 10 category (e.g. `A03:2021`) and MITRE ATT&CK technique (e.g. `T1190`). Shown inline in the GUI and console.
1006
- - **Exploit confidence**: each finding carries a confidence badge (HIGH / MED / LOW) separate from severity — `[CONFIRMED]` findings are HIGH; presence of a WAF downgrades unconfirmed findings by one tier.
1007
- - **Cancel-mid-scan**: clicking Cancel during the 20-min deep throttle test returns a partial result with what was learned so far.
1008
-
1009
- ---
1010
-
1011
- ## CLI flag reference (most-used)
1012
-
1013
- ```
1014
- USAGE: wpsecscan.exe [URL] [options]
1015
-
1016
- Targets:
1017
- URL A single site (https://example.com)
1018
- --file FILE Newline-separated list of URLs
1019
-
1020
- Output:
1021
- --out PATH Output directory or filename stem (default: cwd)
1022
- --json-only Suppress HTML
1023
- --html-only Suppress JSON
1024
- --csv Also write CSV
1025
- --sarif Also write SARIF 2.1.0
1026
- --quiet, -q Suppress the colored console table (alias: --no-console)
1027
- -v / -vv Increase console verbosity (per-check / HTTP-level)
1028
-
1029
- Modes:
1030
- --aggressive Enable active payload checks (SQLi, XSS, SSRF, etc.)
1031
- --prove For each confirmed aggressive finding, run a read-only
1032
- proof extractor. Requires --aggressive. Read-only.
1033
- --deep-throttle Run the deep login-throttle mapper
1034
- --deep-throttle-attempts N (10-500, default 120)
1035
- --deep-throttle-pacing S (5-60 seconds, default 10)
1036
- --auth-user USER Admin username for authenticated scan (env: WPSECSCAN_AUTH_USER)
1037
- --auth-pass PASS Admin password (env: WPSECSCAN_AUTH_PASS; use `-` to read from stdin)
1038
- --ssh-audit user@host Connect via SSH and run a read-only wp-cli audit
1039
- --password-audit FILE Offline: convert wp_users dump to a hashcat-ready file (NO network)
1040
-
1041
- Tuning:
1042
- --timeout SECONDS Per-request timeout (default 15)
1043
- --concurrency N Concurrent requests per host (default 10)
1044
- --user-agent STRING Custom User-Agent
1045
- --insecure Don't verify TLS certs
1046
- --wpscan-token TOKEN WPScan API token (richer plugin CVE data)
1047
- --hibp-token TOKEN HaveIBeenPwned API key
1048
-
1049
- Maintenance:
1050
- --update-db Refresh the Wordfence vulnerability database
1051
- (exits 75 on remote-fetch failure for CI detection)
1052
- --diff OLD.json NEW.json Diff two saved JSON reports
1053
- --baseline BASELINE.json Diff scan-in-progress against a saved baseline (alias: --diff-against)
1054
- --debug Verbose internal logging to ~/.wpsecscan/logs/
1055
- --completion {bash,zsh,powershell} Print shell-completion script and exit
1056
- --version
1057
-
1058
- Subcommands (run `wpsecscan <subcommand> --help` for details):
1059
- sites Manage a list of sites (add/list/scan/remove)
1060
- schedule Install/uninstall a Windows-Scheduler / launchd / systemd cron
1061
- digest Configure SMTP / webhook digests of new findings
1062
- ai-cost Print AI-triage cost summary
1063
- ai-options Read/set Advanced AI-triage toggles
1064
- analytics Manage opt-in analytics
1065
- db vuln DB management (status / update / signatures / source-stats / subscribe / alert-check)
1066
- compare URL Diff the two most-recent saved snapshots of a URL
1067
- badge URL Emit a shields.io-style SVG of the latest scan grade
1068
- ```
1069
-
1070
- ---
1071
-
1072
- ## Configuration files
1073
-
1074
- Everything is stored in `~/.wpsecscan/` (i.e. `C:\Users\<you>\.wpsecscan\`):
1075
-
1076
- | Path | Purpose |
1077
- |----------------------------------------------|----------------------------------------------------------|
1078
- | `history.json` | Last 20 scanned URLs (GUI dropdown) |
1079
- | `profiles.json` | Named scan profiles (toggles + deep-throttle settings) |
1080
- | `settings.json` | Tokens saved via the GUI onboarding wizard |
1081
- | `sites.json` | Managed-sites list for `wpsecscan sites` + scheduling |
1082
- | `schedule_state.json` | Cron-style state for `wpsecscan schedule` |
1083
- | `digest.json` | Configured SMTP / webhook digest destinations |
1084
- | `annotations.json` | Per-finding annotations (accepted-risk / FP) |
1085
- | `comments.json` | Per-finding free-text comments |
1086
- | `stars.json` | Starred findings (GUI sidebar) |
1087
- | `disabled_checks.json` | Persistently disabled check IDs |
1088
- | `reports/{host}.json` | Latest-scan snapshot per URL (canonical) |
1089
- | `reports/{host}-{YYYYmmdd-HHMMSS}.json` | Timestamped snapshot history (for `compare`, trend) |
1090
- | `cache/wporg/{slug}.json` | 24h-cached wp.org plugin metadata (plugin_cemetery) |
1091
- | `checkpoints/` | `--checkpoint` resumable scan state |
1092
- | `logs/` | `--debug` log files |
1093
- | `demo/` | `--demo` synthetic-scan artifacts |
1094
- | `analytics/events.jsonl` | Opt-in analytics (off by default; `wpsecscan analytics`) |
1095
- | `wordfence.json` | Local cache of the aggregated CVE database |
1096
-
1097
- Override the base dir with the `WPSECSCAN_HOME` environment variable.
1098
-
1099
- ### Shell completions
1100
-
1101
- ```powershell
1102
- # bash
1103
- wpsecscan --completion bash > /etc/bash_completion.d/wpsecscan
1104
-
1105
- # zsh
1106
- wpsecscan --completion zsh > "${fpath[1]}/_wpsecscan"
1107
-
1108
- # PowerShell
1109
- wpsecscan --completion powershell | Out-File -Append $PROFILE
1110
- ```
1111
-
1112
- Restart the shell to activate.
1113
-
1114
- ### Secrets via env vars
1115
-
1116
- Every sensitive flag — `--auth-pass`, `--auth-app-password`,
1117
- `--companion-token`, `--proxy-auth`, `--wpscan-token`,
1118
- `--patchstack-token`, `--hibp-token`, `--vt-token`, `--abuseipdb-token`,
1119
- `--github-search-token` — reads from a matching `WPSECSCAN_<UPPER>`
1120
- environment variable when not passed on the CLI. Use `--auth-pass -`
1121
- to read the password from stdin via `getpass` (stops it leaking into
1122
- `ps aux` / shell history).
1123
-
1124
- ---
1125
-
1126
- ## Safety
1127
-
1128
- - **Use only on sites you own** or have written permission to test. Online password
1129
- brute-force is permanently out of scope. The "deep throttle" probe uses a synthetic
1130
- non-existent username and a fixed wrong password — it maps your defense, it does
1131
- not guess passwords.
1132
- - All active payloads are read-only. The payload library is enforced at load-time
1133
- with a pytest invariant that scans for any write-side operations.
1134
- - The webhook URL allow-list rejects raw IPs, internal addresses (incl. AWS metadata
1135
- at `169.254.169.254`), and unknown hosts.
1136
- - Authenticated scans run with the credentials you provide but never log them.
1137
- - The scheduled-task URL validator enforces a strict regex to prevent shell-meta
1138
- injection in the registered `schtasks` command.
1139
-
1140
- ---
1141
-
1142
- ## Troubleshooting
1143
-
1144
- **"Windows protected your PC" SmartScreen warning** — click *More info → Run anyway*.
1145
- The binaries aren't code-signed.
1146
-
1147
- **Defender quarantines `wpsecscan.exe` with `Backdoor:JS/Chopper.GG!dha`** — known false positive.
1148
- This is a defensive scanner: to **detect** webshells (China Chopper, c99, r57) on your sites
1149
- it ships references to those attack patterns. Defender's pattern-matching heuristic flags
1150
- the .exe even though it never executes any of those patterns locally. The same kind of
1151
- detection trips sqlmap, Metasploit, nuclei, and Gophish — all legitimate security tools.
1152
-
1153
- **Three ways to fix it:**
1154
-
1155
- 1. **In the GUI**: a dialog pops up on first launch with an "Add exclusion now (UAC)"
1156
- button. You can also open it any time via *Tools → Add Windows Defender exclusion...*
1157
-
1158
- 2. **From admin PowerShell** (manual, one line):
1159
- ```powershell
1160
- Add-MpPreference -ExclusionPath 'C:\path\to\dist'
1161
- ```
1162
- Replace `C:\path\to\dist` with the actual folder containing the `.exe` binaries.
1163
-
1164
- 3. **Via the bundled helper script** (auto-detects the binary location, prompts UAC):
1165
- ```powershell
1166
- .\scripts\add-defender-exclusion.ps1
1167
- ```
1168
-
1169
- **To restore a quarantined file**: *Windows Security → Virus & threat protection →
1170
- Protection history → Allow*.
1171
-
1172
- **This program does NOT**:
1173
- - Install a backdoor on your computer.
1174
- - Open any listening port on your machine.
1175
- - Send data anywhere except to the WordPress URLs you type in.
1176
- - Run any of the webshells in its signature list — those are strings used to RECOGNISE
1177
- webshells on *your sites*, not to execute them.
1178
-
1179
- **"DB: not loaded — click Refresh"** in the GUI — click *Refresh vuln DB*. Or from the CLI: `wpsecscan.exe --update-db`.
1180
-
1181
- **Scan stalls on a hung target** — `--timeout 5` cuts the per-request wait.
1182
-
1183
- **Multi-target scan freezes for one bad URL** — each URL has its own per-request
1184
- timeout. If one consistently hangs, drop it from the list.
1185
-
1186
- **Cron / scheduled-task entries pile up** — list them with `schtasks /Query /TN WPSecScan_*` and remove individually with `schtasks /Delete /TN <name> /F`.
1187
-
1188
- **GUI crashes immediately on launch** — check `C:\Users\<you>\.wpsecscan\` is writable.
1189
- Run from a terminal to see the traceback: `wpsecscan-gui.exe` (the windowed
1190
- build suppresses console output by design — run via `python run_gui.py` from a checkout
1191
- to see errors).
1192
-
1193
- ---
1194
-
1195
- ## Inventory
1196
-
1197
- | Category | Count |
1198
- |---------------------------|-------|
1199
- | Checks | **226** |
1200
- | Payloads | **224** |
1201
- | Exploit signatures | **307** |
1202
- | Plugin CVE database | ~7,000 (Wordfence) + 7 other sources via the nightly aggregator |
1203
- | Exploit-playbook entries | **25** |
1204
- | Tests | **667** |
1205
-
1206
- ---
1207
-
1208
- ## License & disclaimer
1209
-
1210
- Licensed under **AGPLv3+** (from v1.9.0 onward — v1.0.0..v1.8.0 were MIT).
1211
- See [LICENSE](LICENSE) and [NOTICE](NOTICE).
1212
-
1213
- **AGPL network clause**: if you run a modified WPSecScan as a hosted service
1214
- (SaaS, web UI, paid scanning tier), you must publish your modified source
1215
- under the same AGPLv3+ terms. Private internal use and modifications stay
1216
- private. For commercial-distribution licensing terms outside AGPLv3,
1217
- contact bryaninbangkok@gmail.com.
1218
-
1219
- This tool is for **defensive use** on sites you own. Use against third-party
1220
- sites without explicit written permission is illegal in most jurisdictions
1221
- under the Computer Fraud and Abuse Act (US) / Computer Misuse Act (UK) /
1222
- equivalent laws elsewhere.
1223
-
1224
- The authors take no responsibility for misuse.
1
+ Metadata-Version: 2.4
2
+ Name: wpsecscan
3
+ Version: 2.7.3
4
+ Summary: Defensive WordPress security scanner. 200+ checks, 8-source nightly CVE aggregator, AI-assisted remediation (BYO key), 15 compliance frameworks (OWASP/PCI/NIST/ISO/HIPAA/SOC2/HITRUST/CMMC), Sigstore-signed releases with SLSA L3 provenance, 10 threat-intel feeds (KEV/EPSS/Exploit-DB/ATT&CK/STIX/MISP/OTX/GreyNoise), continuous monitors, consent-gated exploit verification, multi-tenant RBAC/SSO/audit-log enterprise mode, 12 report formats. Authorized testing only.
5
+ Author-email: Bryan <bryaninbangkok@gmail.com>
6
+ License: GNU AFFERO GENERAL PUBLIC LICENSE
7
+ Version 3, 19 November 2007
8
+
9
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
10
+ Everyone is permitted to copy and distribute verbatim copies
11
+ of this license document, but changing it is not allowed.
12
+
13
+ Preamble
14
+
15
+ The GNU Affero General Public License is a free, copyleft license for
16
+ software and other kinds of works, specifically designed to ensure
17
+ cooperation with the community in the case of network server software.
18
+
19
+ The licenses for most software and other practical works are designed
20
+ to take away your freedom to share and change the works. By contrast,
21
+ our General Public Licenses are intended to guarantee your freedom to
22
+ share and change all versions of a program--to make sure it remains free
23
+ software for all its users.
24
+
25
+ When we speak of free software, we are referring to freedom, not
26
+ price. Our General Public Licenses are designed to make sure that you
27
+ have the freedom to distribute copies of free software (and charge for
28
+ them if you wish), that you receive source code or can get it if you
29
+ want it, that you can change the software or use pieces of it in new
30
+ free programs, and that you know you can do these things.
31
+
32
+ Developers that use our General Public Licenses protect your rights
33
+ with two steps: (1) assert copyright on the software, and (2) offer
34
+ you this License which gives you legal permission to copy, distribute
35
+ and/or modify the software.
36
+
37
+ A secondary benefit of defending all users' freedom is that
38
+ improvements made in alternate versions of the program, if they
39
+ receive widespread use, become available for other developers to
40
+ incorporate. Many developers of free software are heartened and
41
+ encouraged by the resulting cooperation. However, in the case of
42
+ software used on network servers, this result may fail to come about.
43
+ The GNU General Public License permits making a modified version and
44
+ letting the public access it on a server without ever releasing its
45
+ source code to the public.
46
+
47
+ The GNU Affero General Public License is designed specifically to
48
+ ensure that, in such cases, the modified source code becomes available
49
+ to the community. It requires the operator of a network server to
50
+ provide the source code of the modified version running there to the
51
+ users of that server. Therefore, public use of a modified version, on
52
+ a publicly accessible server, gives the public access to the source
53
+ code of the modified version.
54
+
55
+ An older license, called the Affero General Public License and
56
+ published by Affero, was designed to accomplish similar goals. This is
57
+ a different license, not a version of the Affero GPL, but Affero has
58
+ released a new version of the Affero GPL which permits relicensing under
59
+ this license.
60
+
61
+ The precise terms and conditions for copying, distribution and
62
+ modification follow.
63
+
64
+ TERMS AND CONDITIONS
65
+
66
+ 0. Definitions.
67
+
68
+ "This License" refers to version 3 of the GNU Affero General Public License.
69
+
70
+ "Copyright" also means copyright-like laws that apply to other kinds of
71
+ works, such as semiconductor masks.
72
+
73
+ "The Program" refers to any copyrightable work licensed under this
74
+ License. Each licensee is addressed as "you". "Licensees" and
75
+ "recipients" may be individuals or organizations.
76
+
77
+ To "modify" a work means to copy from or adapt all or part of the work
78
+ in a fashion requiring copyright permission, other than the making of an
79
+ exact copy. The resulting work is called a "modified version" of the
80
+ earlier work or a work "based on" the earlier work.
81
+
82
+ A "covered work" means either the unmodified Program or a work based
83
+ on the Program.
84
+
85
+ To "propagate" a work means to do anything with it that, without
86
+ permission, would make you directly or secondarily liable for
87
+ infringement under applicable copyright law, except executing it on a
88
+ computer or modifying a private copy. Propagation includes copying,
89
+ distribution (with or without modification), making available to the
90
+ public, and in some countries other activities as well.
91
+
92
+ To "convey" a work means any kind of propagation that enables other
93
+ parties to make or receive copies. Mere interaction with a user through
94
+ a computer network, with no transfer of a copy, is not conveying.
95
+
96
+ An interactive user interface displays "Appropriate Legal Notices"
97
+ to the extent that it includes a convenient and prominently visible
98
+ feature that (1) displays an appropriate copyright notice, and (2)
99
+ tells the user that there is no warranty for the work (except to the
100
+ extent that warranties are provided), that licensees may convey the
101
+ work under this License, and how to view a copy of this License. If
102
+ the interface presents a list of user commands or options, such as a
103
+ menu, a prominent item in the list meets this criterion.
104
+
105
+ 1. Source Code.
106
+
107
+ The "source code" for a work means the preferred form of the work
108
+ for making modifications to it. "Object code" means any non-source
109
+ form of a work.
110
+
111
+ A "Standard Interface" means an interface that either is an official
112
+ standard defined by a recognized standards body, or, in the case of
113
+ interfaces specified for a particular programming language, one that
114
+ is widely used among developers working in that language.
115
+
116
+ The "System Libraries" of an executable work include anything, other
117
+ than the work as a whole, that (a) is included in the normal form of
118
+ packaging a Major Component, but which is not part of that Major
119
+ Component, and (b) serves only to enable use of the work with that
120
+ Major Component, or to implement a Standard Interface for which an
121
+ implementation is available to the public in source code form. A
122
+ "Major Component", in this context, means a major essential component
123
+ (kernel, window system, and so on) of the specific operating system
124
+ (if any) on which the executable work runs, or a compiler used to
125
+ produce the work, or an object code interpreter used to run it.
126
+
127
+ The "Corresponding Source" for a work in object code form means all
128
+ the source code needed to generate, install, and (for an executable
129
+ work) run the object code and to modify the work, including scripts to
130
+ control those activities. However, it does not include the work's
131
+ System Libraries, or general-purpose tools or generally available free
132
+ programs which are used unmodified in performing those activities but
133
+ which are not part of the work. For example, Corresponding Source
134
+ includes interface definition files associated with source files for
135
+ the work, and the source code for shared libraries and dynamically
136
+ linked subprograms that the work is specifically designed to require,
137
+ such as by intimate data communication or control flow between those
138
+ subprograms and other parts of the work.
139
+
140
+ The Corresponding Source need not include anything that users
141
+ can regenerate automatically from other parts of the Corresponding
142
+ Source.
143
+
144
+ The Corresponding Source for a work in source code form is that
145
+ same work.
146
+
147
+ 2. Basic Permissions.
148
+
149
+ All rights granted under this License are granted for the term of
150
+ copyright on the Program, and are irrevocable provided the stated
151
+ conditions are met. This License explicitly affirms your unlimited
152
+ permission to run the unmodified Program. The output from running a
153
+ covered work is covered by this License only if the output, given its
154
+ content, constitutes a covered work. This License acknowledges your
155
+ rights of fair use or other equivalent, as provided by copyright law.
156
+
157
+ You may make, run and propagate covered works that you do not
158
+ convey, without conditions so long as your license otherwise remains
159
+ in force. You may convey covered works to others for the sole purpose
160
+ of having them make modifications exclusively for you, or provide you
161
+ with facilities for running those works, provided that you comply with
162
+ the terms of this License in conveying all material for which you do
163
+ not control copyright. Those thus making or running the covered works
164
+ for you must do so exclusively on your behalf, under your direction
165
+ and control, on terms that prohibit them from making any copies of
166
+ your copyrighted material outside their relationship with you.
167
+
168
+ Conveying under any other circumstances is permitted solely under
169
+ the conditions stated below. Sublicensing is not allowed; section 10
170
+ makes it unnecessary.
171
+
172
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
173
+
174
+ No covered work shall be deemed part of an effective technological
175
+ measure under any applicable law fulfilling obligations under article
176
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
177
+ similar laws prohibiting or restricting circumvention of such
178
+ measures.
179
+
180
+ When you convey a covered work, you waive any legal power to forbid
181
+ circumvention of technological measures to the extent such circumvention
182
+ is effected by exercising rights under this License with respect to
183
+ the covered work, and you disclaim any intention to limit operation or
184
+ modification of the work as a means of enforcing, against the work's
185
+ users, your or third parties' legal rights to forbid circumvention of
186
+ technological measures.
187
+
188
+ 4. Conveying Verbatim Copies.
189
+
190
+ You may convey verbatim copies of the Program's source code as you
191
+ receive it, in any medium, provided that you conspicuously and
192
+ appropriately publish on each copy an appropriate copyright notice;
193
+ keep intact all notices stating that this License and any
194
+ non-permissive terms added in accord with section 7 apply to the code;
195
+ keep intact all notices of the absence of any warranty; and give all
196
+ recipients a copy of this License along with the Program.
197
+
198
+ You may charge any price or no price for each copy that you convey,
199
+ and you may offer support or warranty protection for a fee.
200
+
201
+ 5. Conveying Modified Source Versions.
202
+
203
+ You may convey a work based on the Program, or the modifications to
204
+ produce it from the Program, in the form of source code under the
205
+ terms of section 4, provided that you also meet all of these conditions:
206
+
207
+ a) The work must carry prominent notices stating that you modified
208
+ it, and giving a relevant date.
209
+
210
+ b) The work must carry prominent notices stating that it is
211
+ released under this License and any conditions added under section
212
+ 7. This requirement modifies the requirement in section 4 to
213
+ "keep intact all notices".
214
+
215
+ c) You must license the entire work, as a whole, under this
216
+ License to anyone who comes into possession of a copy. This
217
+ License will therefore apply, along with any applicable section 7
218
+ additional terms, to the whole of the work, and all its parts,
219
+ regardless of how they are packaged. This License gives no
220
+ permission to license the work in any other way, but it does not
221
+ invalidate such permission if you have separately received it.
222
+
223
+ d) If the work has interactive user interfaces, each must display
224
+ Appropriate Legal Notices; however, if the Program has interactive
225
+ interfaces that do not display Appropriate Legal Notices, your
226
+ work need not make them do so.
227
+
228
+ A compilation of a covered work with other separate and independent
229
+ works, which are not by their nature extensions of the covered work,
230
+ and which are not combined with it such as to form a larger program,
231
+ in or on a volume of a storage or distribution medium, is called an
232
+ "aggregate" if the compilation and its resulting copyright are not
233
+ used to limit the access or legal rights of the compilation's users
234
+ beyond what the individual works permit. Inclusion of a covered work
235
+ in an aggregate does not cause this License to apply to the other
236
+ parts of the aggregate.
237
+
238
+ 6. Conveying Non-Source Forms.
239
+
240
+ You may convey a covered work in object code form under the terms
241
+ of sections 4 and 5, provided that you also convey the
242
+ machine-readable Corresponding Source under the terms of this License,
243
+ in one of these ways:
244
+
245
+ a) Convey the object code in, or embodied in, a physical product
246
+ (including a physical distribution medium), accompanied by the
247
+ Corresponding Source fixed on a durable physical medium
248
+ customarily used for software interchange.
249
+
250
+ b) Convey the object code in, or embodied in, a physical product
251
+ (including a physical distribution medium), accompanied by a
252
+ written offer, valid for at least three years and valid for as
253
+ long as you offer spare parts or customer support for that product
254
+ model, to give anyone who possesses the object code either (1) a
255
+ copy of the Corresponding Source for all the software in the
256
+ product that is covered by this License, on a durable physical
257
+ medium customarily used for software interchange, for a price no
258
+ more than your reasonable cost of physically performing this
259
+ conveying of source, or (2) access to copy the
260
+ Corresponding Source from a network server at no charge.
261
+
262
+ c) Convey individual copies of the object code with a copy of the
263
+ written offer to provide the Corresponding Source. This
264
+ alternative is allowed only occasionally and noncommercially, and
265
+ only if you received the object code with such an offer, in accord
266
+ with subsection 6b.
267
+
268
+ d) Convey the object code by offering access from a designated
269
+ place (gratis or for a charge), and offer equivalent access to the
270
+ Corresponding Source in the same way through the same place at no
271
+ further charge. You need not require recipients to copy the
272
+ Corresponding Source along with the object code. If the place to
273
+ copy the object code is a network server, the Corresponding Source
274
+ may be on a different server (operated by you or a third party)
275
+ that supports equivalent copying facilities, provided you maintain
276
+ clear directions next to the object code saying where to find the
277
+ Corresponding Source. Regardless of what server hosts the
278
+ Corresponding Source, you remain obligated to ensure that it is
279
+ available for as long as needed to satisfy these requirements.
280
+
281
+ e) Convey the object code using peer-to-peer transmission, provided
282
+ you inform other peers where the object code and Corresponding
283
+ Source of the work are being offered to the general public at no
284
+ charge under subsection 6d.
285
+
286
+ A separable portion of the object code, whose source code is excluded
287
+ from the Corresponding Source as a System Library, need not be
288
+ included in conveying the object code work.
289
+
290
+ A "User Product" is either (1) a "consumer product", which means any
291
+ tangible personal property which is normally used for personal, family,
292
+ or household purposes, or (2) anything designed or sold for incorporation
293
+ into a dwelling. In determining whether a product is a consumer product,
294
+ doubtful cases shall be resolved in favor of coverage. For a particular
295
+ product received by a particular user, "normally used" refers to a
296
+ typical or common use of that class of product, regardless of the status
297
+ of the particular user or of the way in which the particular user
298
+ actually uses, or expects or is expected to use, the product. A product
299
+ is a consumer product regardless of whether the product has substantial
300
+ commercial, industrial or non-consumer uses, unless such uses represent
301
+ the only significant mode of use of the product.
302
+
303
+ "Installation Information" for a User Product means any methods,
304
+ procedures, authorization keys, or other information required to install
305
+ and execute modified versions of a covered work in that User Product from
306
+ a modified version of its Corresponding Source. The information must
307
+ suffice to ensure that the continued functioning of the modified object
308
+ code is in no case prevented or interfered with solely because
309
+ modification has been made.
310
+
311
+ If you convey an object code work under this section in, or with, or
312
+ specifically for use in, a User Product, and the conveying occurs as
313
+ part of a transaction in which the right of possession and use of the
314
+ User Product is transferred to the recipient in perpetuity or for a
315
+ fixed term (regardless of how the transaction is characterized), the
316
+ Corresponding Source conveyed under this section must be accompanied
317
+ by the Installation Information. But this requirement does not apply
318
+ if neither you nor any third party retains the ability to install
319
+ modified object code on the User Product (for example, the work has
320
+ been installed in ROM).
321
+
322
+ The requirement to provide Installation Information does not include a
323
+ requirement to continue to provide support service, warranty, or updates
324
+ for a work that has been modified or installed by the recipient, or for
325
+ the User Product in which it has been modified or installed. Access to a
326
+ network may be denied when the modification itself materially and
327
+ adversely affects the operation of the network or violates the rules and
328
+ protocols for communication across the network.
329
+
330
+ Corresponding Source conveyed, and Installation Information provided,
331
+ in accord with this section must be in a format that is publicly
332
+ documented (and with an implementation available to the public in
333
+ source code form), and must require no special password or key for
334
+ unpacking, reading or copying.
335
+
336
+ 7. Additional Terms.
337
+
338
+ "Additional permissions" are terms that supplement the terms of this
339
+ License by making exceptions from one or more of its conditions.
340
+ Additional permissions that are applicable to the entire Program shall
341
+ be treated as though they were included in this License, to the extent
342
+ that they are valid under applicable law. If additional permissions
343
+ apply only to part of the Program, that part may be used separately
344
+ under those permissions, but the entire Program remains governed by
345
+ this License without regard to the additional permissions.
346
+
347
+ When you convey a copy of a covered work, you may at your option
348
+ remove any additional permissions from that copy, or from any part of
349
+ it. (Additional permissions may be written to require their own
350
+ removal in certain cases when you modify the work.) You may place
351
+ additional permissions on material, added by you to a covered work,
352
+ for which you have or can give appropriate copyright permission.
353
+
354
+ Notwithstanding any other provision of this License, for material you
355
+ add to a covered work, you may (if authorized by the copyright holders of
356
+ that material) supplement the terms of this License with terms:
357
+
358
+ a) Disclaiming warranty or limiting liability differently from the
359
+ terms of sections 15 and 16 of this License; or
360
+
361
+ b) Requiring preservation of specified reasonable legal notices or
362
+ author attributions in that material or in the Appropriate Legal
363
+ Notices displayed by works containing it; or
364
+
365
+ c) Prohibiting misrepresentation of the origin of that material, or
366
+ requiring that modified versions of such material be marked in
367
+ reasonable ways as different from the original version; or
368
+
369
+ d) Limiting the use for publicity purposes of names of licensors or
370
+ authors of the material; or
371
+
372
+ e) Declining to grant rights under trademark law for use of some
373
+ trade names, trademarks, or service marks; or
374
+
375
+ f) Requiring indemnification of licensors and authors of that
376
+ material by anyone who conveys the material (or modified versions of
377
+ it) with contractual assumptions of liability to the recipient, for
378
+ any liability that these contractual assumptions directly impose on
379
+ those licensors and authors.
380
+
381
+ All other non-permissive additional terms are considered "further
382
+ restrictions" within the meaning of section 10. If the Program as you
383
+ received it, or any part of it, contains a notice stating that it is
384
+ governed by this License along with a term that is a further
385
+ restriction, you may remove that term. If a license document contains
386
+ a further restriction but permits relicensing or conveying under this
387
+ License, you may add to a covered work material governed by the terms
388
+ of that license document, provided that the further restriction does
389
+ not survive such relicensing or conveying.
390
+
391
+ If you add terms to a covered work in accord with this section, you
392
+ must place, in the relevant source files, a statement of the
393
+ additional terms that apply to those files, or a notice indicating
394
+ where to find the applicable terms.
395
+
396
+ Additional terms, permissive or non-permissive, may be stated in the
397
+ form of a separately written license, or stated as exceptions;
398
+ the above requirements apply either way.
399
+
400
+ 8. Termination.
401
+
402
+ You may not propagate or modify a covered work except as expressly
403
+ provided under this License. Any attempt otherwise to propagate or
404
+ modify it is void, and will automatically terminate your rights under
405
+ this License (including any patent licenses granted under the third
406
+ paragraph of section 11).
407
+
408
+ However, if you cease all violation of this License, then your
409
+ license from a particular copyright holder is reinstated (a)
410
+ provisionally, unless and until the copyright holder explicitly and
411
+ finally terminates your license, and (b) permanently, if the copyright
412
+ holder fails to notify you of the violation by some reasonable means
413
+ prior to 60 days after the cessation.
414
+
415
+ Moreover, your license from a particular copyright holder is
416
+ reinstated permanently if the copyright holder notifies you of the
417
+ violation by some reasonable means, this is the first time you have
418
+ received notice of violation of this License (for any work) from that
419
+ copyright holder, and you cure the violation prior to 30 days after
420
+ your receipt of the notice.
421
+
422
+ Termination of your rights under this section does not terminate the
423
+ licenses of parties who have received copies or rights from you under
424
+ this License. If your rights have been terminated and not permanently
425
+ reinstated, you do not qualify to receive new licenses for the same
426
+ material under section 10.
427
+
428
+ 9. Acceptance Not Required for Having Copies.
429
+
430
+ You are not required to accept this License in order to receive or
431
+ run a copy of the Program. Ancillary propagation of a covered work
432
+ occurring solely as a consequence of using peer-to-peer transmission
433
+ to receive a copy likewise does not require acceptance. However,
434
+ nothing other than this License grants you permission to propagate or
435
+ modify any covered work. These actions infringe copyright if you do
436
+ not accept this License. Therefore, by modifying or propagating a
437
+ covered work, you indicate your acceptance of this License to do so.
438
+
439
+ 10. Automatic Licensing of Downstream Recipients.
440
+
441
+ Each time you convey a covered work, the recipient automatically
442
+ receives a license from the original licensors, to run, modify and
443
+ propagate that work, subject to this License. You are not responsible
444
+ for enforcing compliance by third parties with this License.
445
+
446
+ An "entity transaction" is a transaction transferring control of an
447
+ organization, or substantially all assets of one, or subdividing an
448
+ organization, or merging organizations. If propagation of a covered
449
+ work results from an entity transaction, each party to that
450
+ transaction who receives a copy of the work also receives whatever
451
+ licenses to the work the party's predecessor in interest had or could
452
+ give under the previous paragraph, plus a right to possession of the
453
+ Corresponding Source of the work from the predecessor in interest, if
454
+ the predecessor has it or can get it with reasonable efforts.
455
+
456
+ You may not impose any further restrictions on the exercise of the
457
+ rights granted or affirmed under this License. For example, you may
458
+ not impose a license fee, royalty, or other charge for exercise of
459
+ rights granted under this License, and you may not initiate litigation
460
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
461
+ any patent claim is infringed by making, using, selling, offering for
462
+ sale, or importing the Program or any portion of it.
463
+
464
+ 11. Patents.
465
+
466
+ A "contributor" is a copyright holder who authorizes use under this
467
+ License of the Program or a work on which the Program is based. The
468
+ work thus licensed is called the contributor's "contributor version".
469
+
470
+ A contributor's "essential patent claims" are all patent claims
471
+ owned or controlled by the contributor, whether already acquired or
472
+ hereafter acquired, that would be infringed by some manner, permitted
473
+ by this License, of making, using, or selling its contributor version,
474
+ but do not include claims that would be infringed only as a
475
+ consequence of further modification of the contributor version. For
476
+ purposes of this definition, "control" includes the right to grant
477
+ patent sublicenses in a manner consistent with the requirements of
478
+ this License.
479
+
480
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
481
+ patent license under the contributor's essential patent claims, to
482
+ make, use, sell, offer for sale, import and otherwise run, modify and
483
+ propagate the contents of its contributor version.
484
+
485
+ In the following three paragraphs, a "patent license" is any express
486
+ agreement or commitment, however denominated, not to enforce a patent
487
+ (such as an express permission to practice a patent or covenant not to
488
+ sue for patent infringement). To "grant" such a patent license to a
489
+ party means to make such an agreement or commitment not to enforce a
490
+ patent against the party.
491
+
492
+ If you convey a covered work, knowingly relying on a patent license,
493
+ and the Corresponding Source of the work is not available for anyone
494
+ to copy, free of charge and under the terms of this License, through a
495
+ publicly available network server or other readily accessible means,
496
+ then you must either (1) cause the Corresponding Source to be so
497
+ available, or (2) arrange to deprive yourself of the benefit of the
498
+ patent license for this particular work, or (3) arrange, in a manner
499
+ consistent with the requirements of this License, to extend the patent
500
+ license to downstream recipients. "Knowingly relying" means you have
501
+ actual knowledge that, but for the patent license, your conveying the
502
+ covered work in a country, or your recipient's use of the covered work
503
+ in a country, would infringe one or more identifiable patents in that
504
+ country that you have reason to believe are valid.
505
+
506
+ If, pursuant to or in connection with a single transaction or
507
+ arrangement, you convey, or propagate by procuring conveyance of, a
508
+ covered work, and grant a patent license to some of the parties
509
+ receiving the covered work authorizing them to use, propagate, modify
510
+ or convey a specific copy of the covered work, then the patent license
511
+ you grant is automatically extended to all recipients of the covered
512
+ work and works based on it.
513
+
514
+ A patent license is "discriminatory" if it does not include within
515
+ the scope of its coverage, prohibits the exercise of, or is
516
+ conditioned on the non-exercise of one or more of the rights that are
517
+ specifically granted under this License. You may not convey a covered
518
+ work if you are a party to an arrangement with a third party that is
519
+ in the business of distributing software, under which you make payment
520
+ to the third party based on the extent of your activity of conveying
521
+ the work, and under which the third party grants, to any of the
522
+ parties who would receive the covered work from you, a discriminatory
523
+ patent license (a) in connection with copies of the covered work
524
+ conveyed by you (or copies made from those copies), or (b) primarily
525
+ for and in connection with specific products or compilations that
526
+ contain the covered work, unless you entered into that arrangement,
527
+ or that patent license was granted, prior to 28 March 2007.
528
+
529
+ Nothing in this License shall be construed as excluding or limiting
530
+ any implied license or other defenses to infringement that may
531
+ otherwise be available to you under applicable patent law.
532
+
533
+ 12. No Surrender of Others' Freedom.
534
+
535
+ If conditions are imposed on you (whether by court order, agreement or
536
+ otherwise) that contradict the conditions of this License, they do not
537
+ excuse you from the conditions of this License. If you cannot convey a
538
+ covered work so as to satisfy simultaneously your obligations under this
539
+ License and any other pertinent obligations, then as a consequence you may
540
+ not convey it at all. For example, if you agree to terms that obligate you
541
+ to collect a royalty for further conveying from those to whom you convey
542
+ the Program, the only way you could satisfy both those terms and this
543
+ License would be to refrain entirely from conveying the Program.
544
+
545
+ 13. Remote Network Interaction; Use with the GNU General Public License.
546
+
547
+ Notwithstanding any other provision of this License, if you modify the
548
+ Program, your modified version must prominently offer all users
549
+ interacting with it remotely through a computer network (if your version
550
+ supports such interaction) an opportunity to receive the Corresponding
551
+ Source of your version by providing access to the Corresponding Source
552
+ from a network server at no charge, through some standard or customary
553
+ means of facilitating copying of software. This Corresponding Source
554
+ shall include the Corresponding Source for any work covered by version 3
555
+ of the GNU General Public License that is incorporated pursuant to the
556
+ following paragraph.
557
+
558
+ Notwithstanding any other provision of this License, you have
559
+ permission to link or combine any covered work with a work licensed
560
+ under version 3 of the GNU General Public License into a single
561
+ combined work, and to convey the resulting work. The terms of this
562
+ License will continue to apply to the part which is the covered work,
563
+ but the work with which it is combined will remain governed by version
564
+ 3 of the GNU General Public License.
565
+
566
+ 14. Revised Versions of this License.
567
+
568
+ The Free Software Foundation may publish revised and/or new versions of
569
+ the GNU Affero General Public License from time to time. Such new versions
570
+ will be similar in spirit to the present version, but may differ in detail to
571
+ address new problems or concerns.
572
+
573
+ Each version is given a distinguishing version number. If the
574
+ Program specifies that a certain numbered version of the GNU Affero General
575
+ Public License "or any later version" applies to it, you have the
576
+ option of following the terms and conditions either of that numbered
577
+ version or of any later version published by the Free Software
578
+ Foundation. If the Program does not specify a version number of the
579
+ GNU Affero General Public License, you may choose any version ever published
580
+ by the Free Software Foundation.
581
+
582
+ If the Program specifies that a proxy can decide which future
583
+ versions of the GNU Affero General Public License can be used, that proxy's
584
+ public statement of acceptance of a version permanently authorizes you
585
+ to choose that version for the Program.
586
+
587
+ Later license versions may give you additional or different
588
+ permissions. However, no additional obligations are imposed on any
589
+ author or copyright holder as a result of your choosing to follow a
590
+ later version.
591
+
592
+ 15. Disclaimer of Warranty.
593
+
594
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
595
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
596
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
597
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
598
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
599
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
600
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
601
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
602
+
603
+ 16. Limitation of Liability.
604
+
605
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
606
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
607
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
608
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
609
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
610
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
611
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
612
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
613
+ SUCH DAMAGES.
614
+
615
+ 17. Interpretation of Sections 15 and 16.
616
+
617
+ If the disclaimer of warranty and limitation of liability provided
618
+ above cannot be given local legal effect according to their terms,
619
+ reviewing courts shall apply local law that most closely approximates
620
+ an absolute waiver of all civil liability in connection with the
621
+ Program, unless a warranty or assumption of liability accompanies a
622
+ copy of the Program in return for a fee.
623
+
624
+ END OF TERMS AND CONDITIONS
625
+
626
+ How to Apply These Terms to Your New Programs
627
+
628
+ If you develop a new program, and you want it to be of the greatest
629
+ possible use to the public, the best way to achieve this is to make it
630
+ free software which everyone can redistribute and change under these terms.
631
+
632
+ To do so, attach the following notices to the program. It is safest
633
+ to attach them to the start of each source file to most effectively
634
+ state the exclusion of warranty; and each file should have at least
635
+ the "copyright" line and a pointer to where the full notice is found.
636
+
637
+ <one line to give the program's name and a brief idea of what it does.>
638
+ Copyright (C) <year> <name of author>
639
+
640
+ This program is free software: you can redistribute it and/or modify
641
+ it under the terms of the GNU Affero General Public License as published by
642
+ the Free Software Foundation, either version 3 of the License, or
643
+ (at your option) any later version.
644
+
645
+ This program is distributed in the hope that it will be useful,
646
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
647
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
648
+ GNU Affero General Public License for more details.
649
+
650
+ You should have received a copy of the GNU Affero General Public License
651
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
652
+
653
+ Also add information on how to contact you by electronic and paper mail.
654
+
655
+ If your software can interact with users remotely through a computer
656
+ network, you should also make sure that it provides a way for users to
657
+ get its source. For example, if your program is a web application, its
658
+ interface could display a "Source" link that leads users to an archive
659
+ of the code. There are many ways you could offer source, and different
660
+ solutions will be better for different programs; see section 13 for the
661
+ specific requirements.
662
+
663
+ You should also get your employer (if you work as a programmer) or school,
664
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
665
+ For more information on this, and how to apply and follow the GNU AGPL, see
666
+ <https://www.gnu.org/licenses/>.
667
+
668
+ Project-URL: Homepage, https://github.com/bryanflowers/wpsecscan
669
+ Project-URL: Repository, https://github.com/bryanflowers/wpsecscan
670
+ Project-URL: Documentation, https://github.com/bryanflowers/wpsecscan#readme
671
+ Project-URL: Issues, https://github.com/bryanflowers/wpsecscan/issues
672
+ Project-URL: Changelog, https://github.com/bryanflowers/wpsecscan/blob/main/CHANGELOG.md
673
+ Project-URL: Security, https://github.com/bryanflowers/wpsecscan/blob/main/SECURITY.md
674
+ Keywords: wordpress,security,scanner,pentest,defensive,vulnerability,cve,wpscan
675
+ Classifier: Development Status :: 5 - Production/Stable
676
+ Classifier: Environment :: Console
677
+ Classifier: Environment :: Win32 (MS Windows)
678
+ Classifier: Intended Audience :: System Administrators
679
+ Classifier: Intended Audience :: Information Technology
680
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
681
+ Classifier: Operating System :: OS Independent
682
+ Classifier: Programming Language :: Python :: 3
683
+ Classifier: Programming Language :: Python :: 3.10
684
+ Classifier: Programming Language :: Python :: 3.11
685
+ Classifier: Programming Language :: Python :: 3.12
686
+ Classifier: Topic :: Security
687
+ Classifier: Topic :: Internet :: WWW/HTTP
688
+ Requires-Python: >=3.10
689
+ Description-Content-Type: text/markdown
690
+ License-File: LICENSE
691
+ License-File: NOTICE
692
+ Requires-Dist: httpx[http2]<0.29,>=0.27
693
+ Requires-Dist: jinja2<4,>=3.1
694
+ Requires-Dist: rich<14,>=13.7
695
+ Requires-Dist: openpyxl<4,>=3.1
696
+ Requires-Dist: keyring<26,>=24
697
+ Provides-Extra: pdf
698
+ Requires-Dist: reportlab<5,>=4.0; extra == "pdf"
699
+ Provides-Extra: browser
700
+ Requires-Dist: playwright<2,>=1.40; extra == "browser"
701
+ Provides-Extra: yaml
702
+ Requires-Dist: pyyaml<7,>=6.0; extra == "yaml"
703
+ Provides-Extra: ops
704
+ Requires-Dist: redis<7,>=5.0; extra == "ops"
705
+ Requires-Dist: bcrypt<5,>=4.0; extra == "ops"
706
+ Provides-Extra: ui
707
+ Requires-Dist: Pillow<12,>=10; extra == "ui"
708
+ Requires-Dist: pystray<0.20,>=0.19; extra == "ui"
709
+ Provides-Extra: security
710
+ Requires-Dist: defusedxml<0.8,>=0.7; extra == "security"
711
+ Provides-Extra: all
712
+ Requires-Dist: reportlab<5,>=4.0; extra == "all"
713
+ Requires-Dist: playwright<2,>=1.40; extra == "all"
714
+ Requires-Dist: pyyaml<7,>=6.0; extra == "all"
715
+ Requires-Dist: redis<7,>=5.0; extra == "all"
716
+ Requires-Dist: bcrypt<5,>=4.0; extra == "all"
717
+ Requires-Dist: Pillow<12,>=10; extra == "all"
718
+ Requires-Dist: pystray<0.20,>=0.19; extra == "all"
719
+ Requires-Dist: keyring<26,>=24; extra == "all"
720
+ Requires-Dist: defusedxml<0.8,>=0.7; extra == "all"
721
+ Provides-Extra: test
722
+ Requires-Dist: pytest>=7.4; extra == "test"
723
+ Dynamic: license-file
724
+
725
+ # WPSecScan
726
+
727
+ [![tests](https://github.com/bryanflowers/wpsecscan/actions/workflows/tests.yml/badge.svg)](https://github.com/bryanflowers/wpsecscan/actions/workflows/tests.yml)
728
+ [![CVE feed](https://github.com/bryanflowers/wpsecscan/actions/workflows/cve-feed.yml/badge.svg)](https://github.com/bryanflowers/wpsecscan/actions/workflows/cve-feed.yml)
729
+ [![license](https://img.shields.io/github/license/bryanflowers/wpsecscan)](LICENSE)
730
+ [![release](https://img.shields.io/github/v/release/bryanflowers/wpsecscan)](https://github.com/bryanflowers/wpsecscan/releases/latest)
731
+ [![downloads](https://img.shields.io/github/downloads/bryanflowers/wpsecscan/total)](https://github.com/bryanflowers/wpsecscan/releases)
732
+ [![python](https://img.shields.io/badge/python-3.10%2B-blue)](https://www.python.org/)
733
+ [![checks](https://img.shields.io/badge/checks-270-brightgreen)](FEATURES.md)
734
+ [![CVE sources](https://img.shields.io/badge/CVE%20sources-8-blue)](docs/data-sources.md)
735
+ [![tests passing](https://img.shields.io/badge/tests-780%20passing-brightgreen)](tests/)
736
+ [![PyPI](https://img.shields.io/pypi/v/wpsecscan)](https://pypi.org/project/wpsecscan/)
737
+ [![SLSA Level 3](https://img.shields.io/badge/SLSA-Level%203-success)](docs/verify-release.md)
738
+ [![Sigstore signed](https://img.shields.io/badge/Sigstore-signed-blueviolet)](docs/verify-release.md)
739
+ [![threat-intel](https://img.shields.io/badge/threat--intel-10%20providers-orange)](FEATURES.md)
740
+
741
+ > **⚠ AUTHORIZED USE ONLY**
742
+ >
743
+ > WPSecScan is a defensive security tool. Use it **only** on sites you own
744
+ > or sites whose owner has given you **written permission** to test.
745
+ > Unauthorised scanning is illegal in most jurisdictions (e.g. the US
746
+ > Computer Fraud and Abuse Act, the UK Computer Misuse Act 1990, the EU
747
+ > Network and Information Security Directive). The maintainers accept no
748
+ > liability for misuse. By using this software you confirm you have the
749
+ > required authorisation for every target you scan.
750
+
751
+ **The most thoroughly-sourced WordPress vulnerability scanner — open source, AGPLv3, runs locally.**
752
+
753
+ 226 checks across 18 categories. **8-source nightly CVE aggregator**
754
+ (NVD + GHSA + Mitre + OSV + Wordfence + WPVulnerability + CIRCL +
755
+ Patchstack). **SLSA L3 + Sigstore-signed releases**. **10-provider
756
+ threat-intel federation** (CISA KEV, EPSS, Exploit-DB, Metasploit,
757
+ ATT&CK Navigator, STIX, MISP, OpenCTI, OTX, GreyNoise). **Continuous
758
+ monitoring** (CT/DNS/WHOIS/RBL/honeypot/auto-rollback). **Active
759
+ exploit verification** with strict consent gating. **Enterprise
760
+ mode**: OIDC + SAML + RBAC + audit-log + approval workflow +
761
+ multi-tenant + quotas. **Distribution**: Docker, K8s, Homebrew, Snap,
762
+ Flatpak, winget, AUR, Chocolatey.
763
+
764
+ Original headline:
765
+ gives you a fresher and more complete vulnerability database than
766
+ any single paid or free service. Runs entirely on your machine — no
767
+ telemetry, no per-site licensing, no data leaves your box.
768
+
769
+ Ships as two standalone Windows binaries — no Python required on the machine you run them on.
770
+
771
+ - **`wpsecscan.exe`** — command-line scanner. Output: console + HTML + JSON + CSV + SARIF + Markdown + Excel (XLSX) + executive PDF + Burp scope XML + CycloneDX SBOM + shields.io status badge SVG.
772
+ - **`wpsecscan-gui.exe`** — full GUI with live progress tree, finding details, risk score,
773
+ scan profiles, multi-target queue, scheduled scans, webhook alerts, exploit playbooks, and more.
774
+ - **`wpsecscan-companion.zip`** — WordPress plugin that exposes a read-only, token-gated
775
+ REST endpoint so the scanner gets authoritative diagnostics in one round-trip (3× more
776
+ accurate plugin/theme detection vs HTTP-probe guessing).
777
+
778
+ ### Why people are switching to WPSecScan
779
+
780
+ - **8-source CVE aggregator** runs nightly on our infrastructure — pulls
781
+ Wordfence + NVD + GitHub Security Advisories + Mitre CVE List + OSV.dev +
782
+ WPVulnerability.com + CIRCL + Patchstack and merges them into one feed.
783
+ Users get a strictly fresher + more complete DB than Wordfence/Patchstack
784
+ alone. **6 of 8 sources are fully free, no key required.**
785
+ - **Daily DB refresh + per-CVE webhook alerts** — `wpsecscan schedule
786
+ install` registers a daily 02:00 CVE-refresh + weekly 03:00 site scan
787
+ on Windows Task Scheduler / macOS launchd / Linux systemd.
788
+ `wpsecscan db subscribe https://hooks.slack.com/...` fires the moment a
789
+ new CVE drops for a plugin you have installed.
790
+ - **15 compliance frameworks mapped** per check: OWASP Top 10 + MITRE
791
+ ATT&CK + CWE + D3FEND + PCI-DSS 4.0 + NIST 800-53 + ISO 27001 + HIPAA +
792
+ FERPA + SOC 2 + FedRAMP + GDPR + HITRUST CSF v11.4 + CMMC 2.0 +
793
+ NIST CSF 2.0 + CIS Critical Controls v8 + ISO 27001:2022 Annex A.
794
+ - **11 report formats**: HTML, JSON, CSV, SARIF 2.1.0, Markdown, Excel
795
+ (XLSX with per-OWASP-category sheets), executive PDF, CycloneDX SBOM,
796
+ Burp Suite scope XML, attestation PDF, shields.io status-badge SVG.
797
+ - **10 third-party integrations** including Burp Suite project XML,
798
+ OWASP ZAP findings import, Nuclei template auto-pull, JIRA / Linear /
799
+ GitHub Issues bulk-create, Wordfence Cloud sync, Sucuri SiteCheck,
800
+ Patchstack + WPScan write-back, WP Engine / Kinsta / WP.com host APIs.
801
+ - **AI-assisted remediation** with PII masking + prompt-injection guard +
802
+ per-backend cost tracking. Bring your own OpenAI / Anthropic / Ollama /
803
+ llama.cpp key. **`WPSECSCAN_NO_AI=1` to hard-disable.**
804
+ - **Privacy-first**: no telemetry, runs locally, supports SOCKS5/HTTP
805
+ proxies (Tor friendly), `WPSECSCAN_NO_NETWORK=1` for air-gapped mode.
806
+
807
+ ---
808
+
809
+ ## Quick install
810
+
811
+ ### Option A — `pip install wpsecscan` (any platform)
812
+
813
+ The simplest path on Linux, macOS, or Windows-with-Python:
814
+
815
+ ```bash
816
+ pip install wpsecscan
817
+ wpsecscan --version
818
+ wpsecscan https://example.com --json-only
819
+ ```
820
+
821
+ PyPI: <https://pypi.org/project/wpsecscan/>
822
+
823
+ For the optional GUI minimize-to-tray feature, install with the
824
+ `[ui]` extra (pulls in Pillow + pystray):
825
+
826
+ ```bash
827
+ pip install "wpsecscan[ui]"
828
+ ```
829
+
830
+ Other optional extras: `[pdf]` (reportlab for true PDF exec reports),
831
+ `[browser]` (playwright for headless DOM-XSS), `[yaml]` (pyyaml for
832
+ daemon config), `[ops]` (redis + bcrypt for enterprise mode), or
833
+ `[all]` to install everything.
834
+
835
+ ### Option B — pre-built Windows binaries
836
+
837
+ 1. Open `dist\` in this folder.
838
+ 2. Copy `wpsecscan.exe` and `wpsecscan-gui.exe` somewhere on your PATH
839
+ (e.g. `C:\Tools\` or `C:\Users\<you>\bin\`).
840
+ 3. Done. No Python, no installer, no admin rights needed.
841
+
842
+ The first time you run them, Windows SmartScreen may warn that the publisher is unknown
843
+ (the binaries aren't code-signed). Click **More info → Run anyway**.
844
+
845
+ ### Option C — build from source
846
+
847
+ Requires Python 3.10+ and PyInstaller. Open PowerShell in the project root:
848
+
849
+ ```powershell
850
+ .\build.ps1
851
+ ```
852
+
853
+ This creates a virtualenv in `.venv\`, installs dependencies from `requirements.txt`,
854
+ and runs PyInstaller. Output:
855
+
856
+ ```
857
+ dist\wpsecscan.exe # CLI (~17 MB)
858
+ dist\wpsecscan-gui.exe # GUI (~17 MB)
859
+ ```
860
+
861
+ Both are single-file executables — copy them anywhere and they run on their own.
862
+
863
+ ### Option D — run from source directly (development)
864
+
865
+ ```powershell
866
+ python -m venv .venv
867
+ .\.venv\Scripts\Activate.ps1
868
+ pip install .
869
+ python run.py https://example.com # CLI
870
+ python run_gui.py # GUI
871
+ pytest # 780 tests
872
+ ```
873
+
874
+ ---
875
+
876
+ ## First scan
877
+
878
+ ### GUI
879
+
880
+ 1. Double-click `wpsecscan-gui.exe`.
881
+ 2. Paste a URL into the URL field (e.g. `https://your-wp-site.com`).
882
+ 3. Click **Scan**. Watch the live tree on the left and click any finding to read
883
+ evidence, remediation, and the *Exploit Playbook* (concrete sqlmap/Metasploit/curl/nuclei commands).
884
+ 4. When the scan finishes, the **Risk Score** badge at the top shows `0-100` color-coded
885
+ (green/yellow/orange/red). HTML and JSON reports are saved to your user folder.
886
+
887
+ ### CLI
888
+
889
+ ```powershell
890
+ # Simple scan, HTML + JSON saved to current directory
891
+ wpsecscan.exe https://your-wp-site.com
892
+
893
+ # Custom output folder
894
+ wpsecscan.exe https://your-wp-site.com --out C:\scans\
895
+
896
+ # JSON only, no HTML
897
+ wpsecscan.exe https://your-wp-site.com --json-only --out C:\scans\
898
+
899
+ # Multiple targets from a file
900
+ wpsecscan.exe --file my-sites.txt --concurrency 5 --out C:\scans\
901
+
902
+ # Aggressive mode (active payload checks — SQLi, XSS, SSRF, etc.)
903
+ wpsecscan.exe https://your-wp-site.com --aggressive
904
+
905
+ # Authenticated scan
906
+ wpsecscan.exe https://your-wp-site.com --auth-user admin --auth-pass <pwd>
907
+
908
+ # Use a saved WPScan API token for richer plugin CVE lookups
909
+ wpsecscan.exe https://your-wp-site.com --wpscan-token <KEY>
910
+ ```
911
+
912
+ **Exit codes**: `0` = clean / info only · `1` = medium findings · `2` = critical or high findings · `130` = Ctrl+C.
913
+
914
+ ---
915
+
916
+ ## What it checks (226 checks)
917
+
918
+ Passive checks always run; aggressive checks need `--aggressive`.
919
+
920
+ - **Recon**: WP core version · plugin enum (slug + version) · theme enum · user enum (`?author=`, REST `wp/v2/users`)
921
+ - **Surface**: 40+ exposed-path probes (`.env`, `wp-config.php.bak`, `.git/config`, debug.log, backup-plugin dumps, phpinfo, adminer, …) · WebDAV / OPTIONS enum · beta/test/debug query-parameter discovery
922
+ - **Auth surface**: `wp-login.php` + XML-RPC method enum + `system.multicall` amplifier check + rate-limit probe · OAuth2/OIDC discovery audit · SAML / XSW endpoint discovery · JWT audit (`alg=none` + weak HS256 brute-force)
923
+ - **Transport**: TLS version, cert expiry, HSTS, CSP, X-Frame-Options, Referrer-Policy, Permissions-Policy, cookie flags
924
+ - **APIs**: REST namespace map, REST OPTIONS write-method enum, WPGraphQL introspection, CORS misconfig (full preflight matrix incl. `null` origin reflection)
925
+ - **Defensive posture**: WAF / CDN detection · WAF rule-set identification (CRS / AWS / Cloudflare Managed / Wordfence Premium) · DNS SPF / DMARC / DKIM · security.txt · AbuseIPDB reputation (opt-in)
926
+ - **Supply-chain**: external JS hosts + SRI hash check · source-map exposure · JS library version audit · S3 bucket discovery + public-ACL probe · GitHub leaked-token search (opt-in, scans your domain against AKIA/sk_live_/ghp_/etc.)
927
+ - **Subdomain attack surface**: certificate-transparency discovery · dangling-CDN takeover candidates · **cookie-tossing chain** detection (apex-cookie + takeover-able subdomain)
928
+ - **Server fingerprint**: Server-Timing, X-Request-ID, X-Debug-Token leaks
929
+ - **CVE matching**: 7000+ Wordfence CVEs + 307 high-confidence exploit signatures + 224 modern payloads · CISA KEV catalog enrichment · EPSS percentile scoring · VirusTotal URL/IP enrichment (opt-in)
930
+ - **Aggressive** (`--aggressive`): SQLi (error-based + time-blind escalator) · reflected XSS · SSRF · path traversal · open redirect · file upload · default credentials (max 10) · SSTI (7 template engines) · NoSQL operator injection · path-normalisation bypass (`..%2f`, `..;/`, …) · race-condition probe (parallel POSTs) · active HTTP smuggling (CL.TE / TE.CL) · headless DOM-XSS (Playwright, optional)
931
+ - **Deep** (`--deep-throttle`): 10-500 wrong-password attempts at 5-60s pacing to map your login throttle threshold (synthetic non-existent user, fixed wrong password — never brute-force)
932
+ - **Authenticated** (`--auth-user`/`--auth-pass`): logs in, audits user roles, plugins, Site Health, options
933
+
934
+ ### Round-54 additions (Nov 2026 — A1-G4 catalogue)
935
+
936
+ WPSecScan grew from 80 → 94 checks plus a wide non-check toolkit:
937
+
938
+ | Area | New |
939
+ |------|-----|
940
+ | **Active probes** | `ssti`, `nosql_injection`, `path_bypass`, `race_condition`, `dom_xss_headless` (Playwright optional) |
941
+ | **Passive / intel checks** | `webdav`, `dev_params`, `abuseipdb_lookup` (`--abuseipdb-token`), `waf_ruleset`, `oauth_oidc`, `saml_xsw`, `s3_bucket_discovery`, `github_leak_search` (`--github-search-token`), `jwt_audit` |
942
+ | **Modified checks** | `subdomains` (B7 cookie-tossing chain), `cors` (B8 preflight matrix incl. `Origin: null`), `sqli` (A3 time-blind escalator), `smuggling_probe` (A6 active CL.TE/TE.CL) |
943
+ | **Threat-intel integrations** | CISA KEV, EPSS, VirusTotal, Sucuri SiteCheck, NVD/Wordfence CVE explainer |
944
+ | **Per-check tags** | new `cwe` (e.g. `CWE-79`) + `d3fend` (e.g. `D3-IVA`) fields in `data/check_tags.json` |
945
+ | **Reporters** | one-page executive PDF (`--exec-pdf`, uses reportlab or HTML fallback) · two-report drag-and-drop HTML diff viewer · Burp Suite scope XML (`--burp-export`) · severity × OWASP-category SVG heatmap embedded in HTML report |
946
+ | **CLI flags** | `--fail-on`, `--diff-against`, `--shell`, `--replay-har`, `--daemon`, `--abuseipdb-token`, `--vt-token`, `--github-search-token`, `--burp-export`, `--exec-pdf` |
947
+ | **GUI windows** | step-by-step exploit-playbook walker (right-click any finding) · drill historical findings by OWASP/ATT&CK/CWE/D3FEND tag · multi-URL risk-score trend overlay · drop-in marketplace browser · 5-step first-run tutorial |
948
+ | **Collab** | assign-owner + comment threads per finding (right-click) |
949
+ | **Infra / docs** | `.github/workflows/wpsecscan.yml` (nightly + PR scans) · GitLab CI / Jenkins / Azure DevOps templates in `ci/` · `Dockerfile` + `docker-compose.yml` · `SDK.md` · `DISTRIBUTED-SCAN.md` · audit-log JSONL of every scan invocation · custom signature / payload drop-in (`~/.wpsecscan/{signatures,payloads}/`) · i18n stub (en + es) |
950
+
951
+ ---
952
+
953
+ ## Output formats
954
+
955
+ Every scan produces:
956
+
957
+ | Flag | File | Use case |
958
+ |---------------------|--------------------------|-----------------------------------------|
959
+ | (default) | `<host>-<ts>.html` | Open in a browser. Has copy-to-clipboard buttons for every command, color-coded exploit playbooks, and a "🖨 Print / Save as PDF" button in the top-right corner. |
960
+ | (default) | `<host>-<ts>.json` | Includes per-finding `confidence` (low/medium/high) and per-check `tags` (OWASP Top 10 + MITRE ATT&CK). For downstream tooling. |
961
+ | `--csv` | `<host>-<ts>.csv` | Spreadsheet import. Cells are escaped against Excel formula-injection. |
962
+ | `--sarif` | `<host>-<ts>.sarif` | GitHub Code Scanning, Azure DevOps, anything that ingests SARIF 2.1.0. |
963
+ | `--json-only` | suppresses HTML | CI / scripted use. |
964
+ | `--md` | `<host>-<ts>.md` | Markdown report for Confluence / GitHub / Slack threads. |
965
+ | `--xlsx` | `<host>-<ts>.xlsx` | Excel workbook with per-OWASP-category sheets. |
966
+ | `--har FILE.har` | `FILE.har` | HAR 1.2 recording of every HTTP request (Cookie/Authorization redacted). Replay with `--replay-har`. |
967
+ | `--burp-export` | `<host>-<ts>-burp-scope.xml` | Burp Suite scope XML for hand-off to manual testing. |
968
+ | `--exec-pdf` | `<host>-<ts>-exec.pdf` | One-page non-technical executive summary. Uses `reportlab` if installed, else writes a print-friendly HTML file. |
969
+
970
+ ### Round-54 CLI additions
971
+
972
+ | Flag | Purpose |
973
+ |---------------------------------------|------------------------------------------------------------------------------------------|
974
+ | `--fail-on critical\|high\|medium` | Override exit-code logic — non-zero only when a finding meets or exceeds the threshold. |
975
+ | `--diff-against BASELINE.json` | Compute the NEW / RESOLVED delta vs a saved JSON report, print to stdout. |
976
+ | `--shell` | After scan, drop into a Python REPL with `report` pre-bound (for power users / IR). |
977
+ | `--replay-har HAR_FILE` | Re-run every request in a HAR file; optionally override the origin with `<target>`. |
978
+ | `--daemon CONFIG.yml` | Cron-style scheduled scans driven by a YAML config (no Task Scheduler required). |
979
+ | `--abuseipdb-token TOKEN` | Enables the AbuseIPDB reputation check for the target's IP. |
980
+ | `--vt-token TOKEN` | Enables VirusTotal URL/IP enrichment. |
981
+ | `--github-search-token PAT` | Enables GitHub code-search for the target's domain + common secret prefixes. |
982
+
983
+ ### Round-56 visibility flags
984
+
985
+ | Flag | Purpose |
986
+ |---------------------------------------|------------------------------------------------------------------------------------------|
987
+ | `--demo` | Synthetic scan against a fake target — every check fires fake findings, every integration fires a fake activity event. Writes one of every artifact to `~/.wpsecscan/demo/`. Great for screenshots, smoke-testing an install, or training new users. |
988
+ | `--no-live` | Disable the live multi-panel rich dashboard during scans. The static console reporter still renders at the end. Useful for CI logs / piped output. |
989
+
990
+ ---
991
+
992
+ ## Power-user features (GUI)
993
+
994
+ - **Risk score**: 0–100, color-coded. Calculated from severity weights with per-tier caps.
995
+ - **Profiles** (File → Profiles): save the current toggle/pacing/threshold set as `"Quick"`, `"Deep"`, `"Audit"` etc. Loads with one click. Stored in `~/.wpsecscan/profiles.json`.
996
+ - **Recent URLs**: the URL field is a dropdown of the last 20 scanned sites.
997
+ - **Diff with last scan**: button appears after a scan if a previous JSON for the same URL exists in `~/.wpsecscan/reports/`. Shows `[NEW]` / `[RESOLVED]` per finding.
998
+ - **Multi-target scan** (Tools → Multi-target): paste/load a list of URLs, scan each in turn, one-row-per-site dashboard with risk score and Δ-vs-last-scan.
999
+ - **Scheduled recurring scan** (Tools → Schedule): registers a Windows Task Scheduler job (`WPSecScan_<host>`) that runs daily/weekly/monthly at a chosen time. Outputs to a folder you pick. Remove with `schtasks /Delete /TN WPSecScan_<host> /F`.
1000
+ - **Risk-score trend** (Tools → Show risk trend): ASCII sparkline of historical scores for the current URL.
1001
+ - **Webhook notify** (File → Settings → "Webhook notify"): one POST to Slack/Discord/Teams/PagerDuty when a scan finds ≥ chosen severity. Hosts validated against an allow-list — won't post to arbitrary URLs or raw IPs.
1002
+ - **Finding annotations**: right-click any finding → "Accepted risk" / "False positive" with an optional note. Persisted per-URL in `~/.wpsecscan/annotations.json`.
1003
+ - **Filter pills**: Only NEW (vs last scan), Only CONFIRMED (signature engine actively verified), Hide annotated, per-severity show/hide.
1004
+ - **Exploit playbook**: every finding's detail pane includes concrete attacker-side commands (curl PoCs · sqlmap · Metasploit · nuclei · wpscan · ffuf) with `{target}` already substituted, plus a plain-English *"How an attacker uses this"* paragraph.
1005
+ - **OWASP + MITRE chips**: every check is tagged with its OWASP Top 10 category (e.g. `A03:2021`) and MITRE ATT&CK technique (e.g. `T1190`). Shown inline in the GUI and console.
1006
+ - **Exploit confidence**: each finding carries a confidence badge (HIGH / MED / LOW) separate from severity — `[CONFIRMED]` findings are HIGH; presence of a WAF downgrades unconfirmed findings by one tier.
1007
+ - **Cancel-mid-scan**: clicking Cancel during the 20-min deep throttle test returns a partial result with what was learned so far.
1008
+
1009
+ ---
1010
+
1011
+ ## CLI flag reference (most-used)
1012
+
1013
+ ```
1014
+ USAGE: wpsecscan.exe [URL] [options]
1015
+
1016
+ Targets:
1017
+ URL A single site (https://example.com)
1018
+ --file FILE Newline-separated list of URLs
1019
+
1020
+ Output:
1021
+ --out PATH Output directory or filename stem (default: cwd)
1022
+ --json-only Suppress HTML
1023
+ --html-only Suppress JSON
1024
+ --csv Also write CSV
1025
+ --sarif Also write SARIF 2.1.0
1026
+ --quiet, -q Suppress the colored console table (alias: --no-console)
1027
+ -v / -vv Increase console verbosity (per-check / HTTP-level)
1028
+
1029
+ Modes:
1030
+ --aggressive Enable active payload checks (SQLi, XSS, SSRF, etc.)
1031
+ --prove For each confirmed aggressive finding, run a read-only
1032
+ proof extractor. Requires --aggressive. Read-only.
1033
+ --deep-throttle Run the deep login-throttle mapper
1034
+ --deep-throttle-attempts N (10-500, default 120)
1035
+ --deep-throttle-pacing S (5-60 seconds, default 10)
1036
+ --auth-user USER Admin username for authenticated scan (env: WPSECSCAN_AUTH_USER)
1037
+ --auth-pass PASS Admin password (env: WPSECSCAN_AUTH_PASS; use `-` to read from stdin)
1038
+ --ssh-audit user@host Connect via SSH and run a read-only wp-cli audit
1039
+ --password-audit FILE Offline: convert wp_users dump to a hashcat-ready file (NO network)
1040
+
1041
+ Tuning:
1042
+ --timeout SECONDS Per-request timeout (default 15)
1043
+ --concurrency N Concurrent requests per host (default 10)
1044
+ --user-agent STRING Custom User-Agent
1045
+ --insecure Don't verify TLS certs
1046
+ --wpscan-token TOKEN WPScan API token (richer plugin CVE data)
1047
+ --hibp-token TOKEN HaveIBeenPwned API key
1048
+
1049
+ Maintenance:
1050
+ --update-db Refresh the Wordfence vulnerability database
1051
+ (exits 75 on remote-fetch failure for CI detection)
1052
+ --diff OLD.json NEW.json Diff two saved JSON reports
1053
+ --baseline BASELINE.json Diff scan-in-progress against a saved baseline (alias: --diff-against)
1054
+ --debug Verbose internal logging to ~/.wpsecscan/logs/
1055
+ --completion {bash,zsh,powershell} Print shell-completion script and exit
1056
+ --version
1057
+
1058
+ Subcommands (run `wpsecscan <subcommand> --help` for details):
1059
+ sites Manage a list of sites (add/list/scan/remove)
1060
+ schedule Install/uninstall a Windows-Scheduler / launchd / systemd cron
1061
+ digest Configure SMTP / webhook digests of new findings
1062
+ ai-cost Print AI-triage cost summary
1063
+ ai-options Read/set Advanced AI-triage toggles
1064
+ analytics Manage opt-in analytics
1065
+ db vuln DB management (status / update / signatures / source-stats / subscribe / alert-check)
1066
+ compare URL Diff the two most-recent saved snapshots of a URL
1067
+ badge URL Emit a shields.io-style SVG of the latest scan grade
1068
+ ```
1069
+
1070
+ ---
1071
+
1072
+ ## Configuration files
1073
+
1074
+ Everything is stored in `~/.wpsecscan/` (i.e. `C:\Users\<you>\.wpsecscan\`):
1075
+
1076
+ | Path | Purpose |
1077
+ |----------------------------------------------|----------------------------------------------------------|
1078
+ | `history.json` | Last 20 scanned URLs (GUI dropdown) |
1079
+ | `profiles.json` | Named scan profiles (toggles + deep-throttle settings) |
1080
+ | `settings.json` | Tokens saved via the GUI onboarding wizard |
1081
+ | `sites.json` | Managed-sites list for `wpsecscan sites` + scheduling |
1082
+ | `schedule_state.json` | Cron-style state for `wpsecscan schedule` |
1083
+ | `digest.json` | Configured SMTP / webhook digest destinations |
1084
+ | `annotations.json` | Per-finding annotations (accepted-risk / FP) |
1085
+ | `comments.json` | Per-finding free-text comments |
1086
+ | `stars.json` | Starred findings (GUI sidebar) |
1087
+ | `disabled_checks.json` | Persistently disabled check IDs |
1088
+ | `reports/{host}.json` | Latest-scan snapshot per URL (canonical) |
1089
+ | `reports/{host}-{YYYYmmdd-HHMMSS}.json` | Timestamped snapshot history (for `compare`, trend) |
1090
+ | `cache/wporg/{slug}.json` | 24h-cached wp.org plugin metadata (plugin_cemetery) |
1091
+ | `checkpoints/` | `--checkpoint` resumable scan state |
1092
+ | `logs/` | `--debug` log files |
1093
+ | `demo/` | `--demo` synthetic-scan artifacts |
1094
+ | `analytics/events.jsonl` | Opt-in analytics (off by default; `wpsecscan analytics`) |
1095
+ | `wordfence.json` | Local cache of the aggregated CVE database |
1096
+
1097
+ Override the base dir with the `WPSECSCAN_HOME` environment variable.
1098
+
1099
+ ### Shell completions
1100
+
1101
+ ```powershell
1102
+ # bash
1103
+ wpsecscan --completion bash > /etc/bash_completion.d/wpsecscan
1104
+
1105
+ # zsh
1106
+ wpsecscan --completion zsh > "${fpath[1]}/_wpsecscan"
1107
+
1108
+ # PowerShell
1109
+ wpsecscan --completion powershell | Out-File -Append $PROFILE
1110
+ ```
1111
+
1112
+ Restart the shell to activate.
1113
+
1114
+ ### Secrets via env vars
1115
+
1116
+ Every sensitive flag — `--auth-pass`, `--auth-app-password`,
1117
+ `--companion-token`, `--proxy-auth`, `--wpscan-token`,
1118
+ `--patchstack-token`, `--hibp-token`, `--vt-token`, `--abuseipdb-token`,
1119
+ `--github-search-token` — reads from a matching `WPSECSCAN_<UPPER>`
1120
+ environment variable when not passed on the CLI. Use `--auth-pass -`
1121
+ to read the password from stdin via `getpass` (stops it leaking into
1122
+ `ps aux` / shell history).
1123
+
1124
+ ---
1125
+
1126
+ ## Safety
1127
+
1128
+ - **Use only on sites you own** or have written permission to test. Online password
1129
+ brute-force is permanently out of scope. The "deep throttle" probe uses a synthetic
1130
+ non-existent username and a fixed wrong password — it maps your defense, it does
1131
+ not guess passwords.
1132
+ - All active payloads are read-only. The payload library is enforced at load-time
1133
+ with a pytest invariant that scans for any write-side operations.
1134
+ - The webhook URL allow-list rejects raw IPs, internal addresses (incl. AWS metadata
1135
+ at `169.254.169.254`), and unknown hosts.
1136
+ - Authenticated scans run with the credentials you provide but never log them.
1137
+ - The scheduled-task URL validator enforces a strict regex to prevent shell-meta
1138
+ injection in the registered `schtasks` command.
1139
+
1140
+ ---
1141
+
1142
+ ## Troubleshooting
1143
+
1144
+ **"Windows protected your PC" SmartScreen warning** — click *More info → Run anyway*.
1145
+ The binaries aren't code-signed.
1146
+
1147
+ **Defender quarantines `wpsecscan.exe` with `Backdoor:JS/Chopper.GG!dha`** — known false positive.
1148
+ This is a defensive scanner: to **detect** webshells (China Chopper, c99, r57) on your sites
1149
+ it ships references to those attack patterns. Defender's pattern-matching heuristic flags
1150
+ the .exe even though it never executes any of those patterns locally. The same kind of
1151
+ detection trips sqlmap, Metasploit, nuclei, and Gophish — all legitimate security tools.
1152
+
1153
+ **Three ways to fix it:**
1154
+
1155
+ 1. **In the GUI**: a dialog pops up on first launch with an "Add exclusion now (UAC)"
1156
+ button. You can also open it any time via *Tools → Add Windows Defender exclusion...*
1157
+
1158
+ 2. **From admin PowerShell** (manual, one line):
1159
+ ```powershell
1160
+ Add-MpPreference -ExclusionPath 'C:\path\to\dist'
1161
+ ```
1162
+ Replace `C:\path\to\dist` with the actual folder containing the `.exe` binaries.
1163
+
1164
+ 3. **Via the bundled helper script** (auto-detects the binary location, prompts UAC):
1165
+ ```powershell
1166
+ .\scripts\add-defender-exclusion.ps1
1167
+ ```
1168
+
1169
+ **To restore a quarantined file**: *Windows Security → Virus & threat protection →
1170
+ Protection history → Allow*.
1171
+
1172
+ **This program does NOT**:
1173
+ - Install a backdoor on your computer.
1174
+ - Open any listening port on your machine.
1175
+ - Send data anywhere except to the WordPress URLs you type in.
1176
+ - Run any of the webshells in its signature list — those are strings used to RECOGNISE
1177
+ webshells on *your sites*, not to execute them.
1178
+
1179
+ **"DB: not loaded — click Refresh"** in the GUI — click *Refresh vuln DB*. Or from the CLI: `wpsecscan.exe --update-db`.
1180
+
1181
+ **Scan stalls on a hung target** — `--timeout 5` cuts the per-request wait.
1182
+
1183
+ **Multi-target scan freezes for one bad URL** — each URL has its own per-request
1184
+ timeout. If one consistently hangs, drop it from the list.
1185
+
1186
+ **Cron / scheduled-task entries pile up** — list them with `schtasks /Query /TN WPSecScan_*` and remove individually with `schtasks /Delete /TN <name> /F`.
1187
+
1188
+ **GUI crashes immediately on launch** — check `C:\Users\<you>\.wpsecscan\` is writable.
1189
+ Run from a terminal to see the traceback: `wpsecscan-gui.exe` (the windowed
1190
+ build suppresses console output by design — run via `python run_gui.py` from a checkout
1191
+ to see errors).
1192
+
1193
+ ---
1194
+
1195
+ ## Inventory
1196
+
1197
+ | Category | Count |
1198
+ |---------------------------|-------|
1199
+ | Checks | **226** |
1200
+ | Payloads | **224** |
1201
+ | Exploit signatures | **307** |
1202
+ | Plugin CVE database | ~7,000 (Wordfence) + 7 other sources via the nightly aggregator |
1203
+ | Exploit-playbook entries | **25** |
1204
+ | Tests | **667** |
1205
+
1206
+ ---
1207
+
1208
+ ## License & disclaimer
1209
+
1210
+ Licensed under **AGPLv3+** (from v1.9.0 onward — v1.0.0..v1.8.0 were MIT).
1211
+ See [LICENSE](LICENSE) and [NOTICE](NOTICE).
1212
+
1213
+ **AGPL network clause**: if you run a modified WPSecScan as a hosted service
1214
+ (SaaS, web UI, paid scanning tier), you must publish your modified source
1215
+ under the same AGPLv3+ terms. Private internal use and modifications stay
1216
+ private. For commercial-distribution licensing terms outside AGPLv3,
1217
+ contact bryaninbangkok@gmail.com.
1218
+
1219
+ This tool is for **defensive use** on sites you own. Use against third-party
1220
+ sites without explicit written permission is illegal in most jurisdictions
1221
+ under the Computer Fraud and Abuse Act (US) / Computer Misuse Act (UK) /
1222
+ equivalent laws elsewhere.
1223
+
1224
+ The authors take no responsibility for misuse.