wpsecscan 2.7.2__tar.gz → 2.8.0__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.
- {wpsecscan-2.7.2/wpsecscan.egg-info → wpsecscan-2.8.0}/PKG-INFO +1235 -1224
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/README.md +500 -500
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/pyproject.toml +140 -118
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/setup.cfg +4 -4
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_perf_v27.py +10 -2
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_54.py +334 -334
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_55.py +423 -423
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_56_activity.py +244 -244
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_57.py +216 -216
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_58.py +227 -227
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_59.py +422 -422
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_60.py +228 -228
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_61.py +262 -262
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_62.py +223 -223
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_64.py +379 -379
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_q.py +7 -4
- wpsecscan-2.8.0/tests/test_v273_critical_regressions.py +199 -0
- wpsecscan-2.8.0/tests/test_v273_wave2_regressions.py +296 -0
- wpsecscan-2.8.0/tests/test_v273_wave3_companion.py +79 -0
- wpsecscan-2.8.0/tests/test_v273_wave5_audit_log_wired.py +102 -0
- wpsecscan-2.8.0/tests/test_v280_critical_regressions.py +93 -0
- wpsecscan-2.8.0/tests/test_v280_wave2_regressions.py +261 -0
- wpsecscan-2.8.0/wpsecscan/__init__.py +1 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/__main__.py +54 -12
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ai_assist.py +62 -13
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ai_safety.py +61 -21
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ai_triage.py +63 -5
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/api_server.py +101 -6
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/attack_checkpoint.py +149 -149
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/attack_scripts.py +118 -118
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auth/audit_log.py +44 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/burp_import.py +76 -76
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/__init__.py +729 -721
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/csp.py +25 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/csrf_nonce.py +8 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/csv_export_csp.py +14 -4
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/dns_templates.py +196 -196
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/email_security_deep.py +11 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/forced_browse.py +121 -121
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/gdpr_dsr_endpoint_enum.py +9 -2
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/gutenberg_blocks.py +7 -1
- wpsecscan-2.8.0/wpsecscan/checks/headless_cors_lockdown.py +94 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/headless_templates.py +161 -161
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/host_recon.py +106 -106
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/mobile_app_endpoints.py +41 -41
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/openapi_scanner.py +138 -138
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_archive_fuzz.py +77 -77
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_hash_fingerprint.py +132 -132
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/premium_license_leak.py +95 -95
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/referenced_buckets.py +8 -3
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/server_stack_reveal.py +5 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/spider_crawl.py +50 -50
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/subdomains.py +25 -3
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/timthumb.py +111 -111
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/tls_deep.py +39 -2
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/tls_headers.py +8 -2
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/tls_reneg_dos.py +12 -3
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/users_deep.py +154 -154
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wallet_seed_phrase_leak.py +16 -2
- wpsecscan-2.8.0/wpsecscan/checks/wc_coupon_enum.py +116 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/websocket_audit.py +14 -4
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/websocket_fuzz.py +127 -127
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/xmlrpc_method_brute.py +126 -126
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/yaml_templates.py +71 -71
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/yaml_workflows.py +53 -53
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/creds_vault.py +23 -3
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/daemon/_legacy.py +47 -6
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/check_tags.json +301 -299
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/common_paths.txt +201 -201
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/compliance_map.json +1276 -1266
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/plugin_file_hashes.json +31 -31
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/report.html.j2 +70 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/gui.py +3828 -3676
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/gui_payloads.py +466 -466
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/history.py +52 -7
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/http.py +353 -343
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations_v27.py +10 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/interactsh.py +128 -118
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/js_plugin.py +101 -101
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/marketplace.py +107 -107
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/marketplace_v27.py +40 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/mobile_api.py +15 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/mobile_app_discovery.py +60 -60
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/mobile_v27.py +49 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/observability.py +14 -2
- wpsecscan-2.8.0/wpsecscan/perf/__init__.py +17 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/perf/_legacy.py +18 -29
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/console.py +4 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/json_out.py +23 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/markdown.py +11 -7
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/sarif.py +9 -3
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/share_link.py +15 -7
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/spider.py +127 -127
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/template_engine.py +257 -257
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/template_signature.py +108 -108
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/trust_v27.py +7 -2
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/turbo_engine.py +232 -232
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ua_rotation.py +57 -57
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/workflow.py +113 -113
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/workflow_cmds.py +11 -1
- {wpsecscan-2.7.2 → wpsecscan-2.8.0/wpsecscan.egg-info}/PKG-INFO +1235 -1224
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan.egg-info/SOURCES.txt +8 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan.egg-info/entry_points.txt +1 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan.egg-info/requires.txt +15 -1
- wpsecscan-2.7.2/wpsecscan/__init__.py +0 -1
- wpsecscan-2.7.2/wpsecscan/perf/__init__.py +0 -12
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/LICENSE +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/NOTICE +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_audit_fixes.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_audit_round_r.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_board_one_pager.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_burp_zap_import.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_cache.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_checks.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_confidence_eta_tags.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_creds_vault_cli.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_default_creds.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_diff_agency.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_edu_v27.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_gh_check_run.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_global_sigs_regression.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_integrations_graphql_escape.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_login_throttle.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_login_throttle_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_marketplace_install_url_guard.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_mobile_api_traversal.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_new_check_inventory.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_new_checks.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_new_checks_aggressive.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_new_checks_quality.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_notify.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_password_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_payloads.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_phase5.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_playbook.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_prove.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_reference_diff.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_reference_diff_traversal.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_risk_score.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_63.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_round_65.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_scan_zip.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_scheduler.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_scheduler_cron_dow.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_siem.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_sla.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_slack_app.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_ssh_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_trust_v27.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_user_template.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_v272_audit_log_constant_time.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_v272_marketplace_sigstore_identity.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_v272_wave2_regressions.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_v272_wave3_regressions.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/tests/test_v272_wave4_regressions.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/_util.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/activity.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ai_fp_predictor.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ai_triage_ui.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/analytics.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auth/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auth/approval_workflow.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auth/rbac.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auth/sso_oidc.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auth/sso_saml.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auto_pr.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/auto_update.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/baseline.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/branding.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/bug_report.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/cache.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/check_health.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/_template.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/a11y_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/a11y_lite.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/a11y_wcag_aaa.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/abuseipdb_lookup.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/admin_ajax_brute_surface.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/admin_invite_link_scan.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ai_agent_webhook_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ai_chatbot_endpoint_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ai_plugin_prompt_storage.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ai_prompt_injection_passive.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ajax_surface.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/algolia_elastic_frontend_keys.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/amp_transitional_redirect.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/app_passwords.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/app_passwords_stale_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/auth_modernisation.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/authenticated.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/backup_exposure.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/backup_file_fuzz.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/block_bindings_exposure.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/block_style_variations_url.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/brand_monitor.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/bucket_shadow_takeover.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cache_headers.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cache_poisoning.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cache_poisoning_v2.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cdn_edge_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cloud_metadata_ssrf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cloudflare_origin_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/companion_advanced.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/companion_v13.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/companion_v14.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/compliance_frameworks.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/composer_lock_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/composer_npm_typosquat.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cookie_consent.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cookie_consent_desync.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cookies.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/core_checksums.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/core_cves.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/core_tampering.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/core_version.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cors.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/crlf_location_injection.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/crypto_agility.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/crypto_payment_callback_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/cryptominer_js_injection.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/csp_report_endpoint.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/csrf_entropy.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ct_log_recent_certs.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ct_log_shadow_cert.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/db_admin_login_probe.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/db_trigger_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/debug_leaks.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/debug_log_pii_sniff.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/default_creds.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/dev_params.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/directory_listing.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/dns_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/dns_rebinding.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/dns_security.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/dom_xss_headless.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/email_obfuscation_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/env_file_enum.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/error_pages.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/exposed_files.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/favicon_fingerprint.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/file_upload.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/font_library_api_ssrf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/form_builder_upload_bypass.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/gdpr_dsr.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/git_dir_deep_scan.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/github_actions_workflow_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/github_leak_search.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/graphql_dos.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/graphql_field_authz_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/gtm_inventory.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/header_smuggling_case.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/headless_vercel_netlify_detect.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/headless_wp_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/heartbeat_abuse.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/heartbeat_frontend.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/helm_compose_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/hibp.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/honeypot_admin.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/host_header_validation.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/host_platform_detect.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/hosting_platform_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/hostname_collision.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/hpp.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/hsts_preload_eligibility.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/hsts_preload_mismatch.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/html_api_csp_nonce.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/http2_settings.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/http2_smuggling.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/http3_fingerprint.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/http_methods.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/interactivity_api_state_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/js_framework_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/js_libraries.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/js_supply_chain.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/jwt_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/jwt_auth_plugin_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/lead_gen_list_id_enum.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/login.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/login_redirect_http_hop.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/login_throttle.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/login_throttle_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/login_timing.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/magecart_skimmer_patterns.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/mcp_endpoint_exposure.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/mfa_priv_account_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/misc_injection_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/mixed_content.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/multisite.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/multisite_sso_key_reuse.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/nft_mint_pubapi.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/nonce_freshness.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/nosql_injection.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/oauth_oidc.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/oauth_redirect.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/oauth_redirect_misconfig.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/object_cache_dropin.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/open_redirect.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/open_registration.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/origin_ip_discovery.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/osint_enrich.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/package_lock_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/page_builder_cve.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/path_bypass.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/path_traversal.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/payment_commerce_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/payment_gateway_test_keys.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/perf_budget.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/perf_of_target.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/permissions_policy.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/php_eol.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/phpinfo_dangerous_directives.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_cemetery.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_cves.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_install_rest_race.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_route_fuzz.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_specific_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugin_typosquat_detection.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/plugins.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/postmeta_stored_xss_scan.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/privacy_inventory.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/prototype_pollution.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/pwa_service_worker_cache.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/race_condition.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/redirect_chain.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_api.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_app_passwords_enum.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_fields_dos.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_link_header.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_namespace_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_permission_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rest_schema_field_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/robots_sitemap.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/rum_beacons.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/s3_bucket_discovery.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/saml_xsw.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/search_highlight_xss.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/secret_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/security_txt.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/sendmail_injection.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/server_timing.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/service_exposure.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/service_worker_scope_hijack.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/session_fixation.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/sitemap_cve_probe.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/smuggling_probe.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/solidity_abi_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/source_maps.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/speculation_rules_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/sqli.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/sri_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/sri_pwa_misc.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ssrf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/ssti.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/stripe_webhook_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/tailwind_css_comment_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/theme_cves.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/theme_json_font_ssrf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/themes.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/tls_modern.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/translation_plugin_key_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/trellis_yaml_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/turnstile_sitekey_reuse.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/upload_bypass_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/upload_path_predictable.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/uploads_year_listing.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/users.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/users_me_capability_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/vendor_backdoor_patterns.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/vercel_preview_url_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/waf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/waf_brand_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/waf_bypass_probe.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/waf_lockout_guard.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/waf_ruleset.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wc_api_key_escalation.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/web3_wallet_connector_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/webdav.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/webhook_signing_secrets.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/webhook_url_fingerprint.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/webhooks.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/well_known.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/woo_blocks_checkout_drift.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/woo_subscriptions_renewal_race.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/woocommerce_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/woocommerce_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/woocommerce_order_idor.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/woocommerce_storefront.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_builder_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_cli_http_exposure.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_cli_inject.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_commerce_alt_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_cron_cpu.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_cron_disabled.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_cron_dos.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_debug_display_via_rest.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_engine_misconfig.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_fork_detection.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_form_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_mail_smtp_site_health_leak.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_membership_lms_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_multisite_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_playground_sqlite.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_plugin_ecosystem_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_query_sqli.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_rest_methods.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wp_salts_age.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wpconfig_hardening_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wpcron_suspicious_jobs.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/wpgraphql.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/xmlrpc_amplification.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/xmlrpc_deep.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/xss_dom_sinks.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/xss_reflected.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/xxe_upload.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/checks/yarn_pnpm_lock_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/cli_extras.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/completion.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/confidence.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/config.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/console_live.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/continuous_monitor.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/crash_submit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/daemon/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/daemon/webhook_v2.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/compliance_extra.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/compliance_v2.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/dashboard.html.j2 +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/datadog-dashboard.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/exploit_playbook.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/exploit_signatures.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/known_paths.txt +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/marketplace.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/newrelic-dashboard.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/openapi-scan-report.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/payloads.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/plugin_cves.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/quick_fixes.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/references.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/remediation_videos.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/report.schema.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/data/security_tutorial.json +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/db.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/demo.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/diff.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/edu_v27.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/education.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/enterprise/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/enterprise/billing_stub.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/enterprise/multi_tenant.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/enterprise/quota.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/eta.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/fun/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/fun/bingo_card.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/gh_check_run.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/gui_v27_extras.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/gui_windows.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/har_replay.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/hardware_keys.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/heatmap.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/i18n.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/importers/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/importers/burp_zap.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/incremental/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/incremental/_legacy.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/incremental/diff_scan.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/incremental/smart_skip.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/cisa_kev.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/epss.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/github_issues.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/osint.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/sucuri_sitecheck.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/threat_intel.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/ticketing.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/tor_proxy.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/virustotal.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/integrations/webhooks_chat.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/issue_push.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/kev.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/licensing.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/log.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/models.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/monitors.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/notify.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/password_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/payloads.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/perf/connection_pool.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/perf/parallel_sites.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/perf_v27.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/playbook.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/policy.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/pr_inspector.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/prove.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/py.typed +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/recommend.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reference_diff.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/region_egress.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/remediation_videos.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/report_query.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/__init__.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/attestation.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/auditor_pdf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/badge_svg.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/board_one_pager.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/bounty_format.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/burp_export.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/comparison_two_sites.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/compliance_attestation.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/csv_out.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/d3fend_mapping.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/dashboard.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/diff_agency.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/diff_viewer.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/docx_report.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/eli5_toggle.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/exec_pdf.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/executive_pack.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/executive_tldr.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/finding_heatmap.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/gdpr_dsr_report.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/html.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/issue_export.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/live_sync.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/org_dashboard.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/pdf_custom_branding.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/public_page.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/risk_forecast.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/snapshot_compare.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/translated_summary.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/trend_over_time.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/user_template.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/vex_export.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/xlsx_out.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/reporters/xlsx_pivot.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/risk.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/risk_weights.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/sbom.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/scan_zip.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/scanner.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/scheduler.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/siem.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/sites.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/sla.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/slack_app.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ssh_audit.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/tags.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/threat_intel_v2.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/tray.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/ux_extras.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/waf_rules.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan/watchers.py +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan.egg-info/dependency_links.txt +0 -0
- {wpsecscan-2.7.2 → wpsecscan-2.8.0}/wpsecscan.egg-info/top_level.txt +0 -0
|
@@ -1,1224 +1,1235 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: wpsecscan
|
|
3
|
-
Version: 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:
|
|
712
|
-
Requires-Dist:
|
|
713
|
-
|
|
714
|
-
Requires-Dist:
|
|
715
|
-
Requires-Dist:
|
|
716
|
-
|
|
717
|
-
Requires-Dist:
|
|
718
|
-
|
|
719
|
-
Requires-Dist:
|
|
720
|
-
Requires-Dist:
|
|
721
|
-
|
|
722
|
-
Requires-Dist:
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
[![
|
|
739
|
-
[![
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
- **
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
```bash
|
|
827
|
-
pip install
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
- **
|
|
932
|
-
- **
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
|
958
|
-
|
|
959
|
-
|
|
|
960
|
-
|
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
|
973
|
-
|
|
974
|
-
| `--
|
|
975
|
-
| `--
|
|
976
|
-
| `--
|
|
977
|
-
| `--
|
|
978
|
-
| `--
|
|
979
|
-
| `--
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
|
986
|
-
|
|
987
|
-
| `--
|
|
988
|
-
| `--
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
-
|
|
1004
|
-
|
|
1005
|
-
- **
|
|
1006
|
-
- **
|
|
1007
|
-
- **
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
--
|
|
1034
|
-
--
|
|
1035
|
-
--
|
|
1036
|
-
--
|
|
1037
|
-
--
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
--
|
|
1043
|
-
|
|
1044
|
-
--
|
|
1045
|
-
--
|
|
1046
|
-
--
|
|
1047
|
-
--
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
--
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
--
|
|
1054
|
-
--
|
|
1055
|
-
--
|
|
1056
|
-
--
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
|
1088
|
-
|
|
1089
|
-
| `
|
|
1090
|
-
| `
|
|
1091
|
-
| `
|
|
1092
|
-
| `
|
|
1093
|
-
| `
|
|
1094
|
-
| `
|
|
1095
|
-
| `
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
The
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
**
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
**
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
under
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wpsecscan
|
|
3
|
+
Version: 2.8.0
|
|
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: aws
|
|
712
|
+
Requires-Dist: boto3<2,>=1.34; extra == "aws"
|
|
713
|
+
Provides-Extra: tts
|
|
714
|
+
Requires-Dist: gTTS<3,>=2.5; extra == "tts"
|
|
715
|
+
Requires-Dist: pyttsx3<3,>=2.90; extra == "tts"
|
|
716
|
+
Provides-Extra: push
|
|
717
|
+
Requires-Dist: pywebpush<3,>=2.0; extra == "push"
|
|
718
|
+
Provides-Extra: all
|
|
719
|
+
Requires-Dist: reportlab<5,>=4.0; extra == "all"
|
|
720
|
+
Requires-Dist: playwright<2,>=1.40; extra == "all"
|
|
721
|
+
Requires-Dist: pyyaml<7,>=6.0; extra == "all"
|
|
722
|
+
Requires-Dist: redis<7,>=5.0; extra == "all"
|
|
723
|
+
Requires-Dist: bcrypt<5,>=4.0; extra == "all"
|
|
724
|
+
Requires-Dist: Pillow<12,>=10; extra == "all"
|
|
725
|
+
Requires-Dist: pystray<0.20,>=0.19; extra == "all"
|
|
726
|
+
Requires-Dist: keyring<26,>=24; extra == "all"
|
|
727
|
+
Requires-Dist: defusedxml<0.8,>=0.7; extra == "all"
|
|
728
|
+
Requires-Dist: boto3<2,>=1.34; extra == "all"
|
|
729
|
+
Requires-Dist: gTTS<3,>=2.5; extra == "all"
|
|
730
|
+
Requires-Dist: pyttsx3<3,>=2.90; extra == "all"
|
|
731
|
+
Requires-Dist: pywebpush<3,>=2.0; extra == "all"
|
|
732
|
+
Provides-Extra: test
|
|
733
|
+
Requires-Dist: pytest<9,>=7.4; extra == "test"
|
|
734
|
+
Dynamic: license-file
|
|
735
|
+
|
|
736
|
+
# WPSecScan
|
|
737
|
+
|
|
738
|
+
[](https://github.com/bryanflowers/wpsecscan/actions/workflows/tests.yml)
|
|
739
|
+
[](https://github.com/bryanflowers/wpsecscan/actions/workflows/cve-feed.yml)
|
|
740
|
+
[](LICENSE)
|
|
741
|
+
[](https://github.com/bryanflowers/wpsecscan/releases/latest)
|
|
742
|
+
[](https://github.com/bryanflowers/wpsecscan/releases)
|
|
743
|
+
[](https://www.python.org/)
|
|
744
|
+
[](FEATURES.md)
|
|
745
|
+
[](docs/data-sources.md)
|
|
746
|
+
[](tests/)
|
|
747
|
+
[](https://pypi.org/project/wpsecscan/)
|
|
748
|
+
[](docs/verify-release.md)
|
|
749
|
+
[](docs/verify-release.md)
|
|
750
|
+
[](FEATURES.md)
|
|
751
|
+
|
|
752
|
+
> **⚠ AUTHORIZED USE ONLY**
|
|
753
|
+
>
|
|
754
|
+
> WPSecScan is a defensive security tool. Use it **only** on sites you own
|
|
755
|
+
> or sites whose owner has given you **written permission** to test.
|
|
756
|
+
> Unauthorised scanning is illegal in most jurisdictions (e.g. the US
|
|
757
|
+
> Computer Fraud and Abuse Act, the UK Computer Misuse Act 1990, the EU
|
|
758
|
+
> Network and Information Security Directive). The maintainers accept no
|
|
759
|
+
> liability for misuse. By using this software you confirm you have the
|
|
760
|
+
> required authorisation for every target you scan.
|
|
761
|
+
|
|
762
|
+
**The most thoroughly-sourced WordPress vulnerability scanner — open source, AGPLv3, runs locally.**
|
|
763
|
+
|
|
764
|
+
226 checks across 18 categories. **8-source nightly CVE aggregator**
|
|
765
|
+
(NVD + GHSA + Mitre + OSV + Wordfence + WPVulnerability + CIRCL +
|
|
766
|
+
Patchstack). **SLSA L3 + Sigstore-signed releases**. **10-provider
|
|
767
|
+
threat-intel federation** (CISA KEV, EPSS, Exploit-DB, Metasploit,
|
|
768
|
+
ATT&CK Navigator, STIX, MISP, OpenCTI, OTX, GreyNoise). **Continuous
|
|
769
|
+
monitoring** (CT/DNS/WHOIS/RBL/honeypot/auto-rollback). **Active
|
|
770
|
+
exploit verification** with strict consent gating. **Enterprise
|
|
771
|
+
mode**: OIDC + SAML + RBAC + audit-log + approval workflow +
|
|
772
|
+
multi-tenant + quotas. **Distribution**: Docker, K8s, Homebrew, Snap,
|
|
773
|
+
Flatpak, winget, AUR, Chocolatey.
|
|
774
|
+
|
|
775
|
+
Original headline:
|
|
776
|
+
gives you a fresher and more complete vulnerability database than
|
|
777
|
+
any single paid or free service. Runs entirely on your machine — no
|
|
778
|
+
telemetry, no per-site licensing, no data leaves your box.
|
|
779
|
+
|
|
780
|
+
Ships as two standalone Windows binaries — no Python required on the machine you run them on.
|
|
781
|
+
|
|
782
|
+
- **`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.
|
|
783
|
+
- **`wpsecscan-gui.exe`** — full GUI with live progress tree, finding details, risk score,
|
|
784
|
+
scan profiles, multi-target queue, scheduled scans, webhook alerts, exploit playbooks, and more.
|
|
785
|
+
- **`wpsecscan-companion.zip`** — WordPress plugin that exposes a read-only, token-gated
|
|
786
|
+
REST endpoint so the scanner gets authoritative diagnostics in one round-trip (3× more
|
|
787
|
+
accurate plugin/theme detection vs HTTP-probe guessing).
|
|
788
|
+
|
|
789
|
+
### Why people are switching to WPSecScan
|
|
790
|
+
|
|
791
|
+
- **8-source CVE aggregator** runs nightly on our infrastructure — pulls
|
|
792
|
+
Wordfence + NVD + GitHub Security Advisories + Mitre CVE List + OSV.dev +
|
|
793
|
+
WPVulnerability.com + CIRCL + Patchstack and merges them into one feed.
|
|
794
|
+
Users get a strictly fresher + more complete DB than Wordfence/Patchstack
|
|
795
|
+
alone. **6 of 8 sources are fully free, no key required.**
|
|
796
|
+
- **Daily DB refresh + per-CVE webhook alerts** — `wpsecscan schedule
|
|
797
|
+
install` registers a daily 02:00 CVE-refresh + weekly 03:00 site scan
|
|
798
|
+
on Windows Task Scheduler / macOS launchd / Linux systemd.
|
|
799
|
+
`wpsecscan db subscribe https://hooks.slack.com/...` fires the moment a
|
|
800
|
+
new CVE drops for a plugin you have installed.
|
|
801
|
+
- **15 compliance frameworks mapped** per check: OWASP Top 10 + MITRE
|
|
802
|
+
ATT&CK + CWE + D3FEND + PCI-DSS 4.0 + NIST 800-53 + ISO 27001 + HIPAA +
|
|
803
|
+
FERPA + SOC 2 + FedRAMP + GDPR + HITRUST CSF v11.4 + CMMC 2.0 +
|
|
804
|
+
NIST CSF 2.0 + CIS Critical Controls v8 + ISO 27001:2022 Annex A.
|
|
805
|
+
- **11 report formats**: HTML, JSON, CSV, SARIF 2.1.0, Markdown, Excel
|
|
806
|
+
(XLSX with per-OWASP-category sheets), executive PDF, CycloneDX SBOM,
|
|
807
|
+
Burp Suite scope XML, attestation PDF, shields.io status-badge SVG.
|
|
808
|
+
- **10 third-party integrations** including Burp Suite project XML,
|
|
809
|
+
OWASP ZAP findings import, Nuclei template auto-pull, JIRA / Linear /
|
|
810
|
+
GitHub Issues bulk-create, Wordfence Cloud sync, Sucuri SiteCheck,
|
|
811
|
+
Patchstack + WPScan write-back, WP Engine / Kinsta / WP.com host APIs.
|
|
812
|
+
- **AI-assisted remediation** with PII masking + prompt-injection guard +
|
|
813
|
+
per-backend cost tracking. Bring your own OpenAI / Anthropic / Ollama /
|
|
814
|
+
llama.cpp key. **`WPSECSCAN_NO_AI=1` to hard-disable.**
|
|
815
|
+
- **Privacy-first**: no telemetry, runs locally, supports SOCKS5/HTTP
|
|
816
|
+
proxies (Tor friendly), `WPSECSCAN_NO_NETWORK=1` for air-gapped mode.
|
|
817
|
+
|
|
818
|
+
---
|
|
819
|
+
|
|
820
|
+
## Quick install
|
|
821
|
+
|
|
822
|
+
### Option A — `pip install wpsecscan` (any platform)
|
|
823
|
+
|
|
824
|
+
The simplest path on Linux, macOS, or Windows-with-Python:
|
|
825
|
+
|
|
826
|
+
```bash
|
|
827
|
+
pip install wpsecscan
|
|
828
|
+
wpsecscan --version
|
|
829
|
+
wpsecscan https://example.com --json-only
|
|
830
|
+
```
|
|
831
|
+
|
|
832
|
+
PyPI: <https://pypi.org/project/wpsecscan/>
|
|
833
|
+
|
|
834
|
+
For the optional GUI minimize-to-tray feature, install with the
|
|
835
|
+
`[ui]` extra (pulls in Pillow + pystray):
|
|
836
|
+
|
|
837
|
+
```bash
|
|
838
|
+
pip install "wpsecscan[ui]"
|
|
839
|
+
```
|
|
840
|
+
|
|
841
|
+
Other optional extras: `[pdf]` (reportlab for true PDF exec reports),
|
|
842
|
+
`[browser]` (playwright for headless DOM-XSS), `[yaml]` (pyyaml for
|
|
843
|
+
daemon config), `[ops]` (redis + bcrypt for enterprise mode), or
|
|
844
|
+
`[all]` to install everything.
|
|
845
|
+
|
|
846
|
+
### Option B — pre-built Windows binaries
|
|
847
|
+
|
|
848
|
+
1. Open `dist\` in this folder.
|
|
849
|
+
2. Copy `wpsecscan.exe` and `wpsecscan-gui.exe` somewhere on your PATH
|
|
850
|
+
(e.g. `C:\Tools\` or `C:\Users\<you>\bin\`).
|
|
851
|
+
3. Done. No Python, no installer, no admin rights needed.
|
|
852
|
+
|
|
853
|
+
The first time you run them, Windows SmartScreen may warn that the publisher is unknown
|
|
854
|
+
(the binaries aren't code-signed). Click **More info → Run anyway**.
|
|
855
|
+
|
|
856
|
+
### Option C — build from source
|
|
857
|
+
|
|
858
|
+
Requires Python 3.10+ and PyInstaller. Open PowerShell in the project root:
|
|
859
|
+
|
|
860
|
+
```powershell
|
|
861
|
+
.\build.ps1
|
|
862
|
+
```
|
|
863
|
+
|
|
864
|
+
This creates a virtualenv in `.venv\`, installs dependencies from `requirements.txt`,
|
|
865
|
+
and runs PyInstaller. Output:
|
|
866
|
+
|
|
867
|
+
```
|
|
868
|
+
dist\wpsecscan.exe # CLI (~17 MB)
|
|
869
|
+
dist\wpsecscan-gui.exe # GUI (~17 MB)
|
|
870
|
+
```
|
|
871
|
+
|
|
872
|
+
Both are single-file executables — copy them anywhere and they run on their own.
|
|
873
|
+
|
|
874
|
+
### Option D — run from source directly (development)
|
|
875
|
+
|
|
876
|
+
```powershell
|
|
877
|
+
python -m venv .venv
|
|
878
|
+
.\.venv\Scripts\Activate.ps1
|
|
879
|
+
pip install .
|
|
880
|
+
python run.py https://example.com # CLI
|
|
881
|
+
python run_gui.py # GUI
|
|
882
|
+
pytest # 780 tests
|
|
883
|
+
```
|
|
884
|
+
|
|
885
|
+
---
|
|
886
|
+
|
|
887
|
+
## First scan
|
|
888
|
+
|
|
889
|
+
### GUI
|
|
890
|
+
|
|
891
|
+
1. Double-click `wpsecscan-gui.exe`.
|
|
892
|
+
2. Paste a URL into the URL field (e.g. `https://your-wp-site.com`).
|
|
893
|
+
3. Click **Scan**. Watch the live tree on the left and click any finding to read
|
|
894
|
+
evidence, remediation, and the *Exploit Playbook* (concrete sqlmap/Metasploit/curl/nuclei commands).
|
|
895
|
+
4. When the scan finishes, the **Risk Score** badge at the top shows `0-100` color-coded
|
|
896
|
+
(green/yellow/orange/red). HTML and JSON reports are saved to your user folder.
|
|
897
|
+
|
|
898
|
+
### CLI
|
|
899
|
+
|
|
900
|
+
```powershell
|
|
901
|
+
# Simple scan, HTML + JSON saved to current directory
|
|
902
|
+
wpsecscan.exe https://your-wp-site.com
|
|
903
|
+
|
|
904
|
+
# Custom output folder
|
|
905
|
+
wpsecscan.exe https://your-wp-site.com --out C:\scans\
|
|
906
|
+
|
|
907
|
+
# JSON only, no HTML
|
|
908
|
+
wpsecscan.exe https://your-wp-site.com --json-only --out C:\scans\
|
|
909
|
+
|
|
910
|
+
# Multiple targets from a file
|
|
911
|
+
wpsecscan.exe --file my-sites.txt --concurrency 5 --out C:\scans\
|
|
912
|
+
|
|
913
|
+
# Aggressive mode (active payload checks — SQLi, XSS, SSRF, etc.)
|
|
914
|
+
wpsecscan.exe https://your-wp-site.com --aggressive
|
|
915
|
+
|
|
916
|
+
# Authenticated scan
|
|
917
|
+
wpsecscan.exe https://your-wp-site.com --auth-user admin --auth-pass <pwd>
|
|
918
|
+
|
|
919
|
+
# Use a saved WPScan API token for richer plugin CVE lookups
|
|
920
|
+
wpsecscan.exe https://your-wp-site.com --wpscan-token <KEY>
|
|
921
|
+
```
|
|
922
|
+
|
|
923
|
+
**Exit codes**: `0` = clean / info only · `1` = medium findings · `2` = critical or high findings · `130` = Ctrl+C.
|
|
924
|
+
|
|
925
|
+
---
|
|
926
|
+
|
|
927
|
+
## What it checks (226 checks)
|
|
928
|
+
|
|
929
|
+
Passive checks always run; aggressive checks need `--aggressive`.
|
|
930
|
+
|
|
931
|
+
- **Recon**: WP core version · plugin enum (slug + version) · theme enum · user enum (`?author=`, REST `wp/v2/users`)
|
|
932
|
+
- **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
|
|
933
|
+
- **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)
|
|
934
|
+
- **Transport**: TLS version, cert expiry, HSTS, CSP, X-Frame-Options, Referrer-Policy, Permissions-Policy, cookie flags
|
|
935
|
+
- **APIs**: REST namespace map, REST OPTIONS write-method enum, WPGraphQL introspection, CORS misconfig (full preflight matrix incl. `null` origin reflection)
|
|
936
|
+
- **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)
|
|
937
|
+
- **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.)
|
|
938
|
+
- **Subdomain attack surface**: certificate-transparency discovery · dangling-CDN takeover candidates · **cookie-tossing chain** detection (apex-cookie + takeover-able subdomain)
|
|
939
|
+
- **Server fingerprint**: Server-Timing, X-Request-ID, X-Debug-Token leaks
|
|
940
|
+
- **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)
|
|
941
|
+
- **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)
|
|
942
|
+
- **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)
|
|
943
|
+
- **Authenticated** (`--auth-user`/`--auth-pass`): logs in, audits user roles, plugins, Site Health, options
|
|
944
|
+
|
|
945
|
+
### Round-54 additions (Nov 2026 — A1-G4 catalogue)
|
|
946
|
+
|
|
947
|
+
WPSecScan grew from 80 → 94 checks plus a wide non-check toolkit:
|
|
948
|
+
|
|
949
|
+
| Area | New |
|
|
950
|
+
|------|-----|
|
|
951
|
+
| **Active probes** | `ssti`, `nosql_injection`, `path_bypass`, `race_condition`, `dom_xss_headless` (Playwright optional) |
|
|
952
|
+
| **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` |
|
|
953
|
+
| **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) |
|
|
954
|
+
| **Threat-intel integrations** | CISA KEV, EPSS, VirusTotal, Sucuri SiteCheck, NVD/Wordfence CVE explainer |
|
|
955
|
+
| **Per-check tags** | new `cwe` (e.g. `CWE-79`) + `d3fend` (e.g. `D3-IVA`) fields in `data/check_tags.json` |
|
|
956
|
+
| **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 |
|
|
957
|
+
| **CLI flags** | `--fail-on`, `--diff-against`, `--shell`, `--replay-har`, `--daemon`, `--abuseipdb-token`, `--vt-token`, `--github-search-token`, `--burp-export`, `--exec-pdf` |
|
|
958
|
+
| **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 |
|
|
959
|
+
| **Collab** | assign-owner + comment threads per finding (right-click) |
|
|
960
|
+
| **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) |
|
|
961
|
+
|
|
962
|
+
---
|
|
963
|
+
|
|
964
|
+
## Output formats
|
|
965
|
+
|
|
966
|
+
Every scan produces:
|
|
967
|
+
|
|
968
|
+
| Flag | File | Use case |
|
|
969
|
+
|---------------------|--------------------------|-----------------------------------------|
|
|
970
|
+
| (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. |
|
|
971
|
+
| (default) | `<host>-<ts>.json` | Includes per-finding `confidence` (low/medium/high) and per-check `tags` (OWASP Top 10 + MITRE ATT&CK). For downstream tooling. |
|
|
972
|
+
| `--csv` | `<host>-<ts>.csv` | Spreadsheet import. Cells are escaped against Excel formula-injection. |
|
|
973
|
+
| `--sarif` | `<host>-<ts>.sarif` | GitHub Code Scanning, Azure DevOps, anything that ingests SARIF 2.1.0. |
|
|
974
|
+
| `--json-only` | suppresses HTML | CI / scripted use. |
|
|
975
|
+
| `--md` | `<host>-<ts>.md` | Markdown report for Confluence / GitHub / Slack threads. |
|
|
976
|
+
| `--xlsx` | `<host>-<ts>.xlsx` | Excel workbook with per-OWASP-category sheets. |
|
|
977
|
+
| `--har FILE.har` | `FILE.har` | HAR 1.2 recording of every HTTP request (Cookie/Authorization redacted). Replay with `--replay-har`. |
|
|
978
|
+
| `--burp-export` | `<host>-<ts>-burp-scope.xml` | Burp Suite scope XML for hand-off to manual testing. |
|
|
979
|
+
| `--exec-pdf` | `<host>-<ts>-exec.pdf` | One-page non-technical executive summary. Uses `reportlab` if installed, else writes a print-friendly HTML file. |
|
|
980
|
+
|
|
981
|
+
### Round-54 CLI additions
|
|
982
|
+
|
|
983
|
+
| Flag | Purpose |
|
|
984
|
+
|---------------------------------------|------------------------------------------------------------------------------------------|
|
|
985
|
+
| `--fail-on critical\|high\|medium` | Override exit-code logic — non-zero only when a finding meets or exceeds the threshold. |
|
|
986
|
+
| `--diff-against BASELINE.json` | Compute the NEW / RESOLVED delta vs a saved JSON report, print to stdout. |
|
|
987
|
+
| `--shell` | After scan, drop into a Python REPL with `report` pre-bound (for power users / IR). |
|
|
988
|
+
| `--replay-har HAR_FILE` | Re-run every request in a HAR file; optionally override the origin with `<target>`. |
|
|
989
|
+
| `--daemon CONFIG.yml` | Cron-style scheduled scans driven by a YAML config (no Task Scheduler required). |
|
|
990
|
+
| `--abuseipdb-token TOKEN` | Enables the AbuseIPDB reputation check for the target's IP. |
|
|
991
|
+
| `--vt-token TOKEN` | Enables VirusTotal URL/IP enrichment. |
|
|
992
|
+
| `--github-search-token PAT` | Enables GitHub code-search for the target's domain + common secret prefixes. |
|
|
993
|
+
|
|
994
|
+
### Round-56 visibility flags
|
|
995
|
+
|
|
996
|
+
| Flag | Purpose |
|
|
997
|
+
|---------------------------------------|------------------------------------------------------------------------------------------|
|
|
998
|
+
| `--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. |
|
|
999
|
+
| `--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. |
|
|
1000
|
+
|
|
1001
|
+
---
|
|
1002
|
+
|
|
1003
|
+
## Power-user features (GUI)
|
|
1004
|
+
|
|
1005
|
+
- **Risk score**: 0–100, color-coded. Calculated from severity weights with per-tier caps.
|
|
1006
|
+
- **Profiles** (File → Profiles): save the current toggle/pacing/threshold set as `"Quick"`, `"Deep"`, `"Audit"` etc. Loads with one click. Stored in `~/.wpsecscan/profiles.json`.
|
|
1007
|
+
- **Recent URLs**: the URL field is a dropdown of the last 20 scanned sites.
|
|
1008
|
+
- **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.
|
|
1009
|
+
- **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.
|
|
1010
|
+
- **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`.
|
|
1011
|
+
- **Risk-score trend** (Tools → Show risk trend): ASCII sparkline of historical scores for the current URL.
|
|
1012
|
+
- **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.
|
|
1013
|
+
- **Finding annotations**: right-click any finding → "Accepted risk" / "False positive" with an optional note. Persisted per-URL in `~/.wpsecscan/annotations.json`.
|
|
1014
|
+
- **Filter pills**: Only NEW (vs last scan), Only CONFIRMED (signature engine actively verified), Hide annotated, per-severity show/hide.
|
|
1015
|
+
- **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.
|
|
1016
|
+
- **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.
|
|
1017
|
+
- **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.
|
|
1018
|
+
- **Cancel-mid-scan**: clicking Cancel during the 20-min deep throttle test returns a partial result with what was learned so far.
|
|
1019
|
+
|
|
1020
|
+
---
|
|
1021
|
+
|
|
1022
|
+
## CLI flag reference (most-used)
|
|
1023
|
+
|
|
1024
|
+
```
|
|
1025
|
+
USAGE: wpsecscan.exe [URL] [options]
|
|
1026
|
+
|
|
1027
|
+
Targets:
|
|
1028
|
+
URL A single site (https://example.com)
|
|
1029
|
+
--file FILE Newline-separated list of URLs
|
|
1030
|
+
|
|
1031
|
+
Output:
|
|
1032
|
+
--out PATH Output directory or filename stem (default: cwd)
|
|
1033
|
+
--json-only Suppress HTML
|
|
1034
|
+
--html-only Suppress JSON
|
|
1035
|
+
--csv Also write CSV
|
|
1036
|
+
--sarif Also write SARIF 2.1.0
|
|
1037
|
+
--quiet, -q Suppress the colored console table (alias: --no-console)
|
|
1038
|
+
-v / -vv Increase console verbosity (per-check / HTTP-level)
|
|
1039
|
+
|
|
1040
|
+
Modes:
|
|
1041
|
+
--aggressive Enable active payload checks (SQLi, XSS, SSRF, etc.)
|
|
1042
|
+
--prove For each confirmed aggressive finding, run a read-only
|
|
1043
|
+
proof extractor. Requires --aggressive. Read-only.
|
|
1044
|
+
--deep-throttle Run the deep login-throttle mapper
|
|
1045
|
+
--deep-throttle-attempts N (10-500, default 120)
|
|
1046
|
+
--deep-throttle-pacing S (5-60 seconds, default 10)
|
|
1047
|
+
--auth-user USER Admin username for authenticated scan (env: WPSECSCAN_AUTH_USER)
|
|
1048
|
+
--auth-pass PASS Admin password (env: WPSECSCAN_AUTH_PASS; use `-` to read from stdin)
|
|
1049
|
+
--ssh-audit user@host Connect via SSH and run a read-only wp-cli audit
|
|
1050
|
+
--password-audit FILE Offline: convert wp_users dump to a hashcat-ready file (NO network)
|
|
1051
|
+
|
|
1052
|
+
Tuning:
|
|
1053
|
+
--timeout SECONDS Per-request timeout (default 15)
|
|
1054
|
+
--concurrency N Concurrent requests per host (default 10)
|
|
1055
|
+
--user-agent STRING Custom User-Agent
|
|
1056
|
+
--insecure Don't verify TLS certs
|
|
1057
|
+
--wpscan-token TOKEN WPScan API token (richer plugin CVE data)
|
|
1058
|
+
--hibp-token TOKEN HaveIBeenPwned API key
|
|
1059
|
+
|
|
1060
|
+
Maintenance:
|
|
1061
|
+
--update-db Refresh the Wordfence vulnerability database
|
|
1062
|
+
(exits 75 on remote-fetch failure for CI detection)
|
|
1063
|
+
--diff OLD.json NEW.json Diff two saved JSON reports
|
|
1064
|
+
--baseline BASELINE.json Diff scan-in-progress against a saved baseline (alias: --diff-against)
|
|
1065
|
+
--debug Verbose internal logging to ~/.wpsecscan/logs/
|
|
1066
|
+
--completion {bash,zsh,powershell} Print shell-completion script and exit
|
|
1067
|
+
--version
|
|
1068
|
+
|
|
1069
|
+
Subcommands (run `wpsecscan <subcommand> --help` for details):
|
|
1070
|
+
sites Manage a list of sites (add/list/scan/remove)
|
|
1071
|
+
schedule Install/uninstall a Windows-Scheduler / launchd / systemd cron
|
|
1072
|
+
digest Configure SMTP / webhook digests of new findings
|
|
1073
|
+
ai-cost Print AI-triage cost summary
|
|
1074
|
+
ai-options Read/set Advanced AI-triage toggles
|
|
1075
|
+
analytics Manage opt-in analytics
|
|
1076
|
+
db vuln DB management (status / update / signatures / source-stats / subscribe / alert-check)
|
|
1077
|
+
compare URL Diff the two most-recent saved snapshots of a URL
|
|
1078
|
+
badge URL Emit a shields.io-style SVG of the latest scan grade
|
|
1079
|
+
```
|
|
1080
|
+
|
|
1081
|
+
---
|
|
1082
|
+
|
|
1083
|
+
## Configuration files
|
|
1084
|
+
|
|
1085
|
+
Everything is stored in `~/.wpsecscan/` (i.e. `C:\Users\<you>\.wpsecscan\`):
|
|
1086
|
+
|
|
1087
|
+
| Path | Purpose |
|
|
1088
|
+
|----------------------------------------------|----------------------------------------------------------|
|
|
1089
|
+
| `history.json` | Last 20 scanned URLs (GUI dropdown) |
|
|
1090
|
+
| `profiles.json` | Named scan profiles (toggles + deep-throttle settings) |
|
|
1091
|
+
| `settings.json` | Tokens saved via the GUI onboarding wizard |
|
|
1092
|
+
| `sites.json` | Managed-sites list for `wpsecscan sites` + scheduling |
|
|
1093
|
+
| `schedule_state.json` | Cron-style state for `wpsecscan schedule` |
|
|
1094
|
+
| `digest.json` | Configured SMTP / webhook digest destinations |
|
|
1095
|
+
| `annotations.json` | Per-finding annotations (accepted-risk / FP) |
|
|
1096
|
+
| `comments.json` | Per-finding free-text comments |
|
|
1097
|
+
| `stars.json` | Starred findings (GUI sidebar) |
|
|
1098
|
+
| `disabled_checks.json` | Persistently disabled check IDs |
|
|
1099
|
+
| `reports/{host}.json` | Latest-scan snapshot per URL (canonical) |
|
|
1100
|
+
| `reports/{host}-{YYYYmmdd-HHMMSS}.json` | Timestamped snapshot history (for `compare`, trend) |
|
|
1101
|
+
| `cache/wporg/{slug}.json` | 24h-cached wp.org plugin metadata (plugin_cemetery) |
|
|
1102
|
+
| `checkpoints/` | `--checkpoint` resumable scan state |
|
|
1103
|
+
| `logs/` | `--debug` log files |
|
|
1104
|
+
| `demo/` | `--demo` synthetic-scan artifacts |
|
|
1105
|
+
| `analytics/events.jsonl` | Opt-in analytics (off by default; `wpsecscan analytics`) |
|
|
1106
|
+
| `wordfence.json` | Local cache of the aggregated CVE database |
|
|
1107
|
+
|
|
1108
|
+
Override the base dir with the `WPSECSCAN_HOME` environment variable.
|
|
1109
|
+
|
|
1110
|
+
### Shell completions
|
|
1111
|
+
|
|
1112
|
+
```powershell
|
|
1113
|
+
# bash
|
|
1114
|
+
wpsecscan --completion bash > /etc/bash_completion.d/wpsecscan
|
|
1115
|
+
|
|
1116
|
+
# zsh
|
|
1117
|
+
wpsecscan --completion zsh > "${fpath[1]}/_wpsecscan"
|
|
1118
|
+
|
|
1119
|
+
# PowerShell
|
|
1120
|
+
wpsecscan --completion powershell | Out-File -Append $PROFILE
|
|
1121
|
+
```
|
|
1122
|
+
|
|
1123
|
+
Restart the shell to activate.
|
|
1124
|
+
|
|
1125
|
+
### Secrets via env vars
|
|
1126
|
+
|
|
1127
|
+
Every sensitive flag — `--auth-pass`, `--auth-app-password`,
|
|
1128
|
+
`--companion-token`, `--proxy-auth`, `--wpscan-token`,
|
|
1129
|
+
`--patchstack-token`, `--hibp-token`, `--vt-token`, `--abuseipdb-token`,
|
|
1130
|
+
`--github-search-token` — reads from a matching `WPSECSCAN_<UPPER>`
|
|
1131
|
+
environment variable when not passed on the CLI. Use `--auth-pass -`
|
|
1132
|
+
to read the password from stdin via `getpass` (stops it leaking into
|
|
1133
|
+
`ps aux` / shell history).
|
|
1134
|
+
|
|
1135
|
+
---
|
|
1136
|
+
|
|
1137
|
+
## Safety
|
|
1138
|
+
|
|
1139
|
+
- **Use only on sites you own** or have written permission to test. Online password
|
|
1140
|
+
brute-force is permanently out of scope. The "deep throttle" probe uses a synthetic
|
|
1141
|
+
non-existent username and a fixed wrong password — it maps your defense, it does
|
|
1142
|
+
not guess passwords.
|
|
1143
|
+
- All active payloads are read-only. The payload library is enforced at load-time
|
|
1144
|
+
with a pytest invariant that scans for any write-side operations.
|
|
1145
|
+
- The webhook URL allow-list rejects raw IPs, internal addresses (incl. AWS metadata
|
|
1146
|
+
at `169.254.169.254`), and unknown hosts.
|
|
1147
|
+
- Authenticated scans run with the credentials you provide but never log them.
|
|
1148
|
+
- The scheduled-task URL validator enforces a strict regex to prevent shell-meta
|
|
1149
|
+
injection in the registered `schtasks` command.
|
|
1150
|
+
|
|
1151
|
+
---
|
|
1152
|
+
|
|
1153
|
+
## Troubleshooting
|
|
1154
|
+
|
|
1155
|
+
**"Windows protected your PC" SmartScreen warning** — click *More info → Run anyway*.
|
|
1156
|
+
The binaries aren't code-signed.
|
|
1157
|
+
|
|
1158
|
+
**Defender quarantines `wpsecscan.exe` with `Backdoor:JS/Chopper.GG!dha`** — known false positive.
|
|
1159
|
+
This is a defensive scanner: to **detect** webshells (China Chopper, c99, r57) on your sites
|
|
1160
|
+
it ships references to those attack patterns. Defender's pattern-matching heuristic flags
|
|
1161
|
+
the .exe even though it never executes any of those patterns locally. The same kind of
|
|
1162
|
+
detection trips sqlmap, Metasploit, nuclei, and Gophish — all legitimate security tools.
|
|
1163
|
+
|
|
1164
|
+
**Three ways to fix it:**
|
|
1165
|
+
|
|
1166
|
+
1. **In the GUI**: a dialog pops up on first launch with an "Add exclusion now (UAC)"
|
|
1167
|
+
button. You can also open it any time via *Tools → Add Windows Defender exclusion...*
|
|
1168
|
+
|
|
1169
|
+
2. **From admin PowerShell** (manual, one line):
|
|
1170
|
+
```powershell
|
|
1171
|
+
Add-MpPreference -ExclusionPath 'C:\path\to\dist'
|
|
1172
|
+
```
|
|
1173
|
+
Replace `C:\path\to\dist` with the actual folder containing the `.exe` binaries.
|
|
1174
|
+
|
|
1175
|
+
3. **Via the bundled helper script** (auto-detects the binary location, prompts UAC):
|
|
1176
|
+
```powershell
|
|
1177
|
+
.\scripts\add-defender-exclusion.ps1
|
|
1178
|
+
```
|
|
1179
|
+
|
|
1180
|
+
**To restore a quarantined file**: *Windows Security → Virus & threat protection →
|
|
1181
|
+
Protection history → Allow*.
|
|
1182
|
+
|
|
1183
|
+
**This program does NOT**:
|
|
1184
|
+
- Install a backdoor on your computer.
|
|
1185
|
+
- Open any listening port on your machine.
|
|
1186
|
+
- Send data anywhere except to the WordPress URLs you type in.
|
|
1187
|
+
- Run any of the webshells in its signature list — those are strings used to RECOGNISE
|
|
1188
|
+
webshells on *your sites*, not to execute them.
|
|
1189
|
+
|
|
1190
|
+
**"DB: not loaded — click Refresh"** in the GUI — click *Refresh vuln DB*. Or from the CLI: `wpsecscan.exe --update-db`.
|
|
1191
|
+
|
|
1192
|
+
**Scan stalls on a hung target** — `--timeout 5` cuts the per-request wait.
|
|
1193
|
+
|
|
1194
|
+
**Multi-target scan freezes for one bad URL** — each URL has its own per-request
|
|
1195
|
+
timeout. If one consistently hangs, drop it from the list.
|
|
1196
|
+
|
|
1197
|
+
**Cron / scheduled-task entries pile up** — list them with `schtasks /Query /TN WPSecScan_*` and remove individually with `schtasks /Delete /TN <name> /F`.
|
|
1198
|
+
|
|
1199
|
+
**GUI crashes immediately on launch** — check `C:\Users\<you>\.wpsecscan\` is writable.
|
|
1200
|
+
Run from a terminal to see the traceback: `wpsecscan-gui.exe` (the windowed
|
|
1201
|
+
build suppresses console output by design — run via `python run_gui.py` from a checkout
|
|
1202
|
+
to see errors).
|
|
1203
|
+
|
|
1204
|
+
---
|
|
1205
|
+
|
|
1206
|
+
## Inventory
|
|
1207
|
+
|
|
1208
|
+
| Category | Count |
|
|
1209
|
+
|---------------------------|-------|
|
|
1210
|
+
| Checks | **226** |
|
|
1211
|
+
| Payloads | **224** |
|
|
1212
|
+
| Exploit signatures | **307** |
|
|
1213
|
+
| Plugin CVE database | ~7,000 (Wordfence) + 7 other sources via the nightly aggregator |
|
|
1214
|
+
| Exploit-playbook entries | **25** |
|
|
1215
|
+
| Tests | **667** |
|
|
1216
|
+
|
|
1217
|
+
---
|
|
1218
|
+
|
|
1219
|
+
## License & disclaimer
|
|
1220
|
+
|
|
1221
|
+
Licensed under **AGPLv3+** (from v1.9.0 onward — v1.0.0..v1.8.0 were MIT).
|
|
1222
|
+
See [LICENSE](LICENSE) and [NOTICE](NOTICE).
|
|
1223
|
+
|
|
1224
|
+
**AGPL network clause**: if you run a modified WPSecScan as a hosted service
|
|
1225
|
+
(SaaS, web UI, paid scanning tier), you must publish your modified source
|
|
1226
|
+
under the same AGPLv3+ terms. Private internal use and modifications stay
|
|
1227
|
+
private. For commercial-distribution licensing terms outside AGPLv3,
|
|
1228
|
+
contact bryaninbangkok@gmail.com.
|
|
1229
|
+
|
|
1230
|
+
This tool is for **defensive use** on sites you own. Use against third-party
|
|
1231
|
+
sites without explicit written permission is illegal in most jurisdictions
|
|
1232
|
+
under the Computer Fraud and Abuse Act (US) / Computer Misuse Act (UK) /
|
|
1233
|
+
equivalent laws elsewhere.
|
|
1234
|
+
|
|
1235
|
+
The authors take no responsibility for misuse.
|