├── .gitignore ├── README.md ├── api-tokens ├── api-fastly.yml └── api-gitlab.yml ├── detections ├── ansible-semaphore-panel.yml ├── avatier_password_management.yml ├── buddy-panel.yml ├── buildbot-panel.yml ├── cofense-vision-detection.yml ├── concourse-ci-panel.yml ├── drone-ci-panel.yml ├── flowci-detection.yml ├── gradle-enterprise-build-cache-detect.yml ├── gradle-enterprise-panel.yml ├── httpbin-detection.yml ├── leostream-detection.yml ├── redash-detection.yml ├── sophos-mobile-panel-detection.yml ├── splunk-enterprise-login-panel.yml ├── stridercd-detection.yml ├── zentral-detection.yml └── zuul-panel.yml └── exploits ├── httpbin-open-redirect.yml ├── httpbin-xss.yml └── log4j-code42-rce.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/README.md -------------------------------------------------------------------------------- /api-tokens/api-fastly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/api-tokens/api-fastly.yml -------------------------------------------------------------------------------- /api-tokens/api-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/api-tokens/api-gitlab.yml -------------------------------------------------------------------------------- /detections/ansible-semaphore-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/ansible-semaphore-panel.yml -------------------------------------------------------------------------------- /detections/avatier_password_management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/avatier_password_management.yml -------------------------------------------------------------------------------- /detections/buddy-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/buddy-panel.yml -------------------------------------------------------------------------------- /detections/buildbot-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/buildbot-panel.yml -------------------------------------------------------------------------------- /detections/cofense-vision-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/cofense-vision-detection.yml -------------------------------------------------------------------------------- /detections/concourse-ci-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/concourse-ci-panel.yml -------------------------------------------------------------------------------- /detections/drone-ci-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/drone-ci-panel.yml -------------------------------------------------------------------------------- /detections/flowci-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/flowci-detection.yml -------------------------------------------------------------------------------- /detections/gradle-enterprise-build-cache-detect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/gradle-enterprise-build-cache-detect.yml -------------------------------------------------------------------------------- /detections/gradle-enterprise-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/gradle-enterprise-panel.yml -------------------------------------------------------------------------------- /detections/httpbin-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/httpbin-detection.yml -------------------------------------------------------------------------------- /detections/leostream-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/leostream-detection.yml -------------------------------------------------------------------------------- /detections/redash-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/redash-detection.yml -------------------------------------------------------------------------------- /detections/sophos-mobile-panel-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/sophos-mobile-panel-detection.yml -------------------------------------------------------------------------------- /detections/splunk-enterprise-login-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/splunk-enterprise-login-panel.yml -------------------------------------------------------------------------------- /detections/stridercd-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/stridercd-detection.yml -------------------------------------------------------------------------------- /detections/zentral-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/zentral-detection.yml -------------------------------------------------------------------------------- /detections/zuul-panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/detections/zuul-panel.yml -------------------------------------------------------------------------------- /exploits/httpbin-open-redirect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/exploits/httpbin-open-redirect.yml -------------------------------------------------------------------------------- /exploits/httpbin-xss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/exploits/httpbin-xss.yml -------------------------------------------------------------------------------- /exploits/log4j-code42-rce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praetorian-inc/chariot-launch-nuclei-templates/HEAD/exploits/log4j-code42-rce.yml --------------------------------------------------------------------------------