├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── auth-tests.yml │ ├── postprocess-ssp-telemetry.yml │ ├── record-ssp-stats.yml │ ├── update-website-stats.yml │ ├── update-zaptest-docker.yml │ ├── zap-vs-crawlmaze.yml │ ├── zap-vs-firingrange.yml │ ├── zap-vs-juiceshop.yml │ ├── zap-vs-owasp-benchmark.yml │ ├── zap-vs-ssti.yml │ ├── zap-vs-vulnerableapp.yml │ ├── zap-vs-wavsep.yml │ └── zap-vs-webseclab.yml ├── .gitignore ├── LICENSE ├── README.md ├── commit-i18n.sh ├── count-addon-downloads.py ├── count-zap-downloads.py ├── dockerfile ├── download-commit-update-i18n.sh ├── download-i18n.sh ├── init-repos.sh ├── pre-scan-prep.sh ├── raise-issue.py ├── record-stats.sh ├── scans ├── auth │ ├── README.md │ ├── auth_plan_tests.sh │ ├── bba-auth-test.yaml │ ├── dev_zap_test.sh │ └── plans_and_scripts │ │ ├── aspnet │ │ └── config │ │ ├── authtestcomplex │ │ ├── bbaplus.yaml │ │ └── config │ │ ├── authtestdelay │ │ ├── bbaplus.yaml │ │ └── config │ │ ├── authtestmulti │ │ ├── bbaplus.yaml │ │ └── config.disabled │ │ ├── authtestsimple │ │ ├── bbaplus.yaml │ │ └── config │ │ ├── authtesttotp │ │ ├── bbaplus.yaml │ │ └── config │ │ ├── bluesky │ │ ├── config │ │ └── notes.txt │ │ ├── ctflearn │ │ ├── config │ │ └── notes.txt │ │ ├── ginnjuice │ │ └── config │ │ ├── hackyourself │ │ └── config │ │ ├── infosecex │ │ ├── config │ │ └── notes.txt │ │ ├── insta │ │ ├── config │ │ └── notes.txt │ │ ├── linkedin │ │ └── config │ │ ├── mozbugz │ │ └── config │ │ ├── phpspark │ │ └── config │ │ ├── reddit │ │ └── config │ │ ├── spotify │ │ └── config.local │ │ ├── testasp │ │ └── config │ │ ├── testfire │ │ ├── bbaplus.yaml │ │ ├── config │ │ ├── csa.yaml │ │ └── testfire.zst │ │ ├── testhtml5 │ │ └── config │ │ ├── testphp │ │ ├── config │ │ └── notes.txt │ │ ├── webappsec │ │ ├── config.disabled │ │ └── note │ │ ├── wikipedia │ │ ├── config │ │ └── notes.txt │ │ └── zoom │ │ ├── config │ │ └── notes.txt ├── benchmark │ ├── benchmark-scorer.js │ └── cmdi │ │ ├── af-plan.yaml │ │ └── variant.js ├── crawlmaze │ ├── crawl-maze-score.js │ └── crawl-maze.yaml ├── firingrange │ ├── README.md │ ├── firing-range-score-main.js │ ├── fr-clickjacking.js │ ├── fr-clickjacking.yaml │ ├── fr-escape.js │ ├── fr-escape.yaml │ ├── fr-leakedcookie.js │ ├── fr-leakedcookie.yaml │ ├── fr-mixedcontent.js │ ├── fr-mixedcontent.yaml │ ├── fr-reflected.js │ ├── fr-reflected.yaml │ ├── fr-remoteinclude.js │ ├── fr-remoteinclude.yaml │ ├── fr-reverseclickjacking.js │ └── fr-reverseclickjacking.yaml ├── juiceshop │ ├── juice-shop-score.js │ └── juice-shop.yaml ├── ssti │ ├── ssti-score-main.js │ ├── ssti.sh │ └── ssti.yaml ├── wavsep │ ├── wavsep-score.js │ └── wavsep.yaml └── webseclab │ ├── ScoreWebSecLab.js │ └── webseclab.yaml ├── stats ├── bitly.py ├── docker.py ├── ghcr.py ├── github.py ├── group_count.gs ├── groups.py ├── stats.py ├── tel_postprocess.py ├── utils.py ├── website_stats2.py └── zap_services.py ├── stop-delete-docker.sh ├── tiptweets ├── README.md ├── rndtweet.py ├── rndtweetwrapper.sh └── tweets.txt ├── update-repos.sh ├── vulnerableApp ├── vulnerableApp_score.py ├── vulnerableApp_spider_scan.py └── zap-vs-vulnerableApp.sh ├── wivet ├── wivet-spider-ajax.py └── zap-vs-wivet.sh └── zap-backup-test.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auth-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/auth-tests.yml -------------------------------------------------------------------------------- /.github/workflows/postprocess-ssp-telemetry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/postprocess-ssp-telemetry.yml -------------------------------------------------------------------------------- /.github/workflows/record-ssp-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/record-ssp-stats.yml -------------------------------------------------------------------------------- /.github/workflows/update-website-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/update-website-stats.yml -------------------------------------------------------------------------------- /.github/workflows/update-zaptest-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/update-zaptest-docker.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-crawlmaze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-crawlmaze.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-firingrange.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-firingrange.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-juiceshop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-juiceshop.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-owasp-benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-owasp-benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-ssti.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-ssti.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-vulnerableapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-vulnerableapp.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-wavsep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-wavsep.yml -------------------------------------------------------------------------------- /.github/workflows/zap-vs-webseclab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.github/workflows/zap-vs-webseclab.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/README.md -------------------------------------------------------------------------------- /commit-i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/commit-i18n.sh -------------------------------------------------------------------------------- /count-addon-downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/count-addon-downloads.py -------------------------------------------------------------------------------- /count-zap-downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/count-zap-downloads.py -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/dockerfile -------------------------------------------------------------------------------- /download-commit-update-i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/download-commit-update-i18n.sh -------------------------------------------------------------------------------- /download-i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/download-i18n.sh -------------------------------------------------------------------------------- /init-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/init-repos.sh -------------------------------------------------------------------------------- /pre-scan-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/pre-scan-prep.sh -------------------------------------------------------------------------------- /raise-issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/raise-issue.py -------------------------------------------------------------------------------- /record-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/record-stats.sh -------------------------------------------------------------------------------- /scans/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/README.md -------------------------------------------------------------------------------- /scans/auth/auth_plan_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/auth_plan_tests.sh -------------------------------------------------------------------------------- /scans/auth/bba-auth-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/bba-auth-test.yaml -------------------------------------------------------------------------------- /scans/auth/dev_zap_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/dev_zap_test.sh -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/aspnet/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/aspnet/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestcomplex/bbaplus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestcomplex/bbaplus.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestcomplex/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestcomplex/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestdelay/bbaplus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestdelay/bbaplus.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestdelay/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestdelay/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestmulti/bbaplus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestmulti/bbaplus.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestmulti/config.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestmulti/config.disabled -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestsimple/bbaplus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestsimple/bbaplus.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtestsimple/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtestsimple/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtesttotp/bbaplus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtesttotp/bbaplus.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/authtesttotp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/authtesttotp/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/bluesky/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/bluesky/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/bluesky/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/bluesky/notes.txt -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/ctflearn/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/ctflearn/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/ctflearn/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/ginnjuice/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/ginnjuice/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/hackyourself/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/hackyourself/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/infosecex/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/infosecex/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/infosecex/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/insta/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/insta/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/insta/notes.txt: -------------------------------------------------------------------------------- 1 | BBA is failing due to popups. -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/linkedin/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/linkedin/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/mozbugz/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/mozbugz/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/phpspark/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/phpspark/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/reddit/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/reddit/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/spotify/config.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/spotify/config.local -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testasp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testasp/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testfire/bbaplus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testfire/bbaplus.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testfire/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testfire/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testfire/csa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testfire/csa.yaml -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testfire/testfire.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testfire/testfire.zst -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testhtml5/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testhtml5/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testphp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/testphp/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/testphp/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/webappsec/config.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/webappsec/config.disabled -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/webappsec/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/webappsec/note -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/wikipedia/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/wikipedia/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/wikipedia/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/zoom/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/auth/plans_and_scripts/zoom/config -------------------------------------------------------------------------------- /scans/auth/plans_and_scripts/zoom/notes.txt: -------------------------------------------------------------------------------- 1 | BBA is failing due to popups. -------------------------------------------------------------------------------- /scans/benchmark/benchmark-scorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/benchmark/benchmark-scorer.js -------------------------------------------------------------------------------- /scans/benchmark/cmdi/af-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/benchmark/cmdi/af-plan.yaml -------------------------------------------------------------------------------- /scans/benchmark/cmdi/variant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/benchmark/cmdi/variant.js -------------------------------------------------------------------------------- /scans/crawlmaze/crawl-maze-score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/crawlmaze/crawl-maze-score.js -------------------------------------------------------------------------------- /scans/crawlmaze/crawl-maze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/crawlmaze/crawl-maze.yaml -------------------------------------------------------------------------------- /scans/firingrange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/README.md -------------------------------------------------------------------------------- /scans/firingrange/firing-range-score-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/firing-range-score-main.js -------------------------------------------------------------------------------- /scans/firingrange/fr-clickjacking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-clickjacking.js -------------------------------------------------------------------------------- /scans/firingrange/fr-clickjacking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-clickjacking.yaml -------------------------------------------------------------------------------- /scans/firingrange/fr-escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-escape.js -------------------------------------------------------------------------------- /scans/firingrange/fr-escape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-escape.yaml -------------------------------------------------------------------------------- /scans/firingrange/fr-leakedcookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-leakedcookie.js -------------------------------------------------------------------------------- /scans/firingrange/fr-leakedcookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-leakedcookie.yaml -------------------------------------------------------------------------------- /scans/firingrange/fr-mixedcontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-mixedcontent.js -------------------------------------------------------------------------------- /scans/firingrange/fr-mixedcontent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-mixedcontent.yaml -------------------------------------------------------------------------------- /scans/firingrange/fr-reflected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-reflected.js -------------------------------------------------------------------------------- /scans/firingrange/fr-reflected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-reflected.yaml -------------------------------------------------------------------------------- /scans/firingrange/fr-remoteinclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-remoteinclude.js -------------------------------------------------------------------------------- /scans/firingrange/fr-remoteinclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-remoteinclude.yaml -------------------------------------------------------------------------------- /scans/firingrange/fr-reverseclickjacking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-reverseclickjacking.js -------------------------------------------------------------------------------- /scans/firingrange/fr-reverseclickjacking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/firingrange/fr-reverseclickjacking.yaml -------------------------------------------------------------------------------- /scans/juiceshop/juice-shop-score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/juiceshop/juice-shop-score.js -------------------------------------------------------------------------------- /scans/juiceshop/juice-shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/juiceshop/juice-shop.yaml -------------------------------------------------------------------------------- /scans/ssti/ssti-score-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/ssti/ssti-score-main.js -------------------------------------------------------------------------------- /scans/ssti/ssti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/ssti/ssti.sh -------------------------------------------------------------------------------- /scans/ssti/ssti.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/ssti/ssti.yaml -------------------------------------------------------------------------------- /scans/wavsep/wavsep-score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/wavsep/wavsep-score.js -------------------------------------------------------------------------------- /scans/wavsep/wavsep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/wavsep/wavsep.yaml -------------------------------------------------------------------------------- /scans/webseclab/ScoreWebSecLab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/webseclab/ScoreWebSecLab.js -------------------------------------------------------------------------------- /scans/webseclab/webseclab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/scans/webseclab/webseclab.yaml -------------------------------------------------------------------------------- /stats/bitly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/bitly.py -------------------------------------------------------------------------------- /stats/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/docker.py -------------------------------------------------------------------------------- /stats/ghcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/ghcr.py -------------------------------------------------------------------------------- /stats/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/github.py -------------------------------------------------------------------------------- /stats/group_count.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/group_count.gs -------------------------------------------------------------------------------- /stats/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/groups.py -------------------------------------------------------------------------------- /stats/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/stats.py -------------------------------------------------------------------------------- /stats/tel_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/tel_postprocess.py -------------------------------------------------------------------------------- /stats/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/utils.py -------------------------------------------------------------------------------- /stats/website_stats2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/website_stats2.py -------------------------------------------------------------------------------- /stats/zap_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stats/zap_services.py -------------------------------------------------------------------------------- /stop-delete-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/stop-delete-docker.sh -------------------------------------------------------------------------------- /tiptweets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/tiptweets/README.md -------------------------------------------------------------------------------- /tiptweets/rndtweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/tiptweets/rndtweet.py -------------------------------------------------------------------------------- /tiptweets/rndtweetwrapper.sh: -------------------------------------------------------------------------------- 1 | /usr/bin/python3 rndtweet.py 2 | -------------------------------------------------------------------------------- /tiptweets/tweets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/tiptweets/tweets.txt -------------------------------------------------------------------------------- /update-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/update-repos.sh -------------------------------------------------------------------------------- /vulnerableApp/vulnerableApp_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/vulnerableApp/vulnerableApp_score.py -------------------------------------------------------------------------------- /vulnerableApp/vulnerableApp_spider_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/vulnerableApp/vulnerableApp_spider_scan.py -------------------------------------------------------------------------------- /vulnerableApp/zap-vs-vulnerableApp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/vulnerableApp/zap-vs-vulnerableApp.sh -------------------------------------------------------------------------------- /wivet/wivet-spider-ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/wivet/wivet-spider-ajax.py -------------------------------------------------------------------------------- /wivet/zap-vs-wivet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/wivet/zap-vs-wivet.sh -------------------------------------------------------------------------------- /zap-backup-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapbot/zap-mgmt-scripts/HEAD/zap-backup-test.py --------------------------------------------------------------------------------