|
1 | 1 | Templates are the core of [nuclei scanner](https://github.com/projectdiscovery/nuclei) which power the actual scanning engine. This repository stores and houses various templates for the scanner provided by our team as well as contributed by the community. We hope that you also contribute by sending templates via **pull requests** and grow the list. |
2 | 2 |
|
| 3 | +<details> |
| 4 | +<summary>Template Directory</summary> |
| 5 | + |
| 6 | +``` |
| 7 | +├── LICENSE |
| 8 | +├── README.md |
| 9 | +├── basic-detections |
| 10 | +│ ├── basic-xss-prober.yaml |
| 11 | +│ └── general-tokens.yaml |
| 12 | +├── brute-force |
| 13 | +│ └── tomcat-manager-bruteforce.yaml |
| 14 | +├── cves |
| 15 | +│ ├── CVE-2017-10075.yaml |
| 16 | +│ ├── CVE-2017-7529.yaml |
| 17 | +│ ├── CVE-2017-9506.yaml |
| 18 | +│ ├── CVE-2017-9841.yaml |
| 19 | +│ ├── CVE-2018-0296.yaml |
| 20 | +│ ├── CVE-2018-1000129.yaml |
| 21 | +│ ├── CVE-2018-11409.yaml |
| 22 | +│ ├── CVE-2018-11759.yaml |
| 23 | +│ ├── CVE-2018-1247.yaml |
| 24 | +│ ├── CVE-2018-1271.yaml |
| 25 | +│ ├── CVE-2018-13379.yaml |
| 26 | +│ ├── CVE-2018-14728.yaml |
| 27 | +│ ├── CVE-2018-16341.yaml |
| 28 | +│ ├── CVE-2018-18069.yaml |
| 29 | +│ ├── CVE-2018-19439.yaml |
| 30 | +│ ├── CVE-2018-20824.yaml |
| 31 | +│ ├── CVE-2018-2791.yaml |
| 32 | +│ ├── CVE-2018-3714.yaml |
| 33 | +│ ├── CVE-2018-3760.yaml |
| 34 | +│ ├── CVE-2018-5230.yaml |
| 35 | +│ ├── CVE-2018-7490.yaml |
| 36 | +│ ├── CVE-2019-10475.yaml |
| 37 | +│ ├── CVE-2019-11510.yaml |
| 38 | +│ ├── CVE-2019-12314.yaml |
| 39 | +│ ├── CVE-2019-14322.yaml |
| 40 | +│ ├── CVE-2019-14974.yaml |
| 41 | +│ ├── CVE-2019-15043.yaml |
| 42 | +│ ├── CVE-2019-16759.yaml |
| 43 | +│ ├── CVE-2019-17382.yaml |
| 44 | +│ ├── CVE-2019-18394.yaml |
| 45 | +│ ├── CVE-2019-19368.yaml |
| 46 | +│ ├── CVE-2019-19781.yaml |
| 47 | +│ ├── CVE-2019-19908.yaml |
| 48 | +│ ├── CVE-2019-19985.yaml |
| 49 | +│ ├── CVE-2019-2588.yaml |
| 50 | +│ ├── CVE-2019-3396.yaml |
| 51 | +│ ├── CVE-2019-3799.yaml |
| 52 | +│ ├── CVE-2019-5418.yaml |
| 53 | +│ ├── CVE-2019-8449.yaml |
| 54 | +│ ├── CVE-2019-8451.yaml |
| 55 | +│ ├── CVE-2019-8903.yaml |
| 56 | +│ ├── CVE-2019-8982.yaml |
| 57 | +│ ├── CVE-2020-10199.yaml |
| 58 | +│ ├── CVE-2020-10204.yaml |
| 59 | +│ ├── CVE-2020-1147.yaml |
| 60 | +│ ├── CVE-2020-12720.yaml |
| 61 | +│ ├── CVE-2020-13167.yaml |
| 62 | +│ ├── CVE-2020-2096.yaml |
| 63 | +│ ├── CVE-2020-3187.yaml |
| 64 | +│ ├── CVE-2020-3452.yaml |
| 65 | +│ ├── CVE-2020-5284.yaml |
| 66 | +│ ├── CVE-2020-5405.yaml |
| 67 | +│ ├── CVE-2020-5410.yaml |
| 68 | +│ ├── CVE-2020-5902.yaml |
| 69 | +│ ├── CVE-2020-6287.yaml |
| 70 | +│ ├── CVE-2020-7209.yaml |
| 71 | +│ ├── CVE-2020-7961.yaml |
| 72 | +│ ├── CVE-2020-8091.yaml |
| 73 | +│ ├── CVE-2020-8115.yaml |
| 74 | +│ ├── CVE-2020-8191.yaml |
| 75 | +│ ├── CVE-2020-8193.yaml |
| 76 | +│ ├── CVE-2020-8194.yaml |
| 77 | +│ ├── CVE-2020-8512.yaml |
| 78 | +│ ├── CVE-2020-8982.yaml |
| 79 | +│ ├── CVE-2020-9484.yaml |
| 80 | +│ └── CVE-2020-9757.yaml |
| 81 | +├── dns |
| 82 | +│ ├── azure-takeover-detection.yaml |
| 83 | +│ ├── cname-service-detector.yaml |
| 84 | +│ ├── dead-host-with-cname.yaml |
| 85 | +│ └── servfail-refused-hosts.yaml |
| 86 | +├── files |
| 87 | +│ ├── apc-info.yaml |
| 88 | +│ ├── cgi-test-page.yaml |
| 89 | +│ ├── debug-pprof.yaml |
| 90 | +│ ├── dir-listing.yaml |
| 91 | +│ ├── docker-registry.yaml |
| 92 | +│ ├── drupal-install.yaml |
| 93 | +│ ├── elasticsearch.yaml |
| 94 | +│ ├── exposed-kibana.yaml |
| 95 | +│ ├── exposed-svn.yaml |
| 96 | +│ ├── filezilla.yaml |
| 97 | +│ ├── firebase-detect.yaml |
| 98 | +│ ├── git-config.yaml |
| 99 | +│ ├── htaccess-config.yaml |
| 100 | +│ ├── jkstatus-manager.yaml |
| 101 | +│ ├── jolokia.yaml |
| 102 | +│ ├── laravel-env.yaml |
| 103 | +│ ├── lazy-file.yaml |
| 104 | +│ ├── phpinfo.yaml |
| 105 | +│ ├── public-tomcat-instance.yaml |
| 106 | +│ ├── security.txt.yaml |
| 107 | +│ ├── server-status-localhost.yaml |
| 108 | +│ ├── telerik-dialoghandler-detect.yaml |
| 109 | +│ ├── telerik-fileupload-detect.yaml |
| 110 | +│ ├── tomcat-scripts.yaml |
| 111 | +│ ├── wadl-files.yaml |
| 112 | +│ ├── web-config.yaml |
| 113 | +│ ├── wordpress-directory-listing.yaml |
| 114 | +│ ├── wordpress-user-enumeration.yaml |
| 115 | +│ ├── wp-xmlrpc.yaml |
| 116 | +│ └── zip-backup-files.yaml |
| 117 | +├── panels |
| 118 | +│ ├── atlassian-crowd-panel.yaml |
| 119 | +│ ├── cisco-asa-panel.yaml |
| 120 | +│ ├── citrix-adc-gateway-detect.yaml |
| 121 | +│ ├── compal.yaml |
| 122 | +│ ├── crxde.yaml |
| 123 | +│ ├── docker-api.yaml |
| 124 | +│ ├── fortinet-fortigate-panel.yaml |
| 125 | +│ ├── globalprotect-panel.yaml |
| 126 | +│ ├── grafana-detect.yaml |
| 127 | +│ ├── jenkins-asyncpeople.yaml |
| 128 | +│ ├── jmx-console.yaml |
| 129 | +│ ├── kubernetes-pods.yaml |
| 130 | +│ ├── mongo-express-web-gui.yaml |
| 131 | +│ ├── parallels-html-client.yaml |
| 132 | +│ ├── phpmyadmin-panel.yaml |
| 133 | +│ ├── pulse-secure-panel.yaml |
| 134 | +│ ├── rabbitmq-dashboard.yaml |
| 135 | +│ ├── sap-netweaver-detect.yaml |
| 136 | +│ ├── sap-recon-detect.yaml |
| 137 | +│ ├── sophos-fw-version-detect.yaml |
| 138 | +│ ├── supervpn-panel.yaml |
| 139 | +│ ├── swagger-panel.yaml |
| 140 | +│ ├── tikiwiki-cms.yaml |
| 141 | +│ ├── weave-scope-dashboard-detect.yaml |
| 142 | +│ └── webeditors.yaml |
| 143 | +├── payloads |
| 144 | +│ └── CVE-2020-6287.xml |
| 145 | +├── security-misconfiguration |
| 146 | +│ ├── basic-cors-flash.yaml |
| 147 | +│ ├── basic-cors.yaml |
| 148 | +│ ├── front-page-misconfig.yaml |
| 149 | +│ ├── jira-service-desk-signup.yaml |
| 150 | +│ ├── jira-unauthenticated-dashboards.yaml |
| 151 | +│ ├── jira-unauthenticated-popular-filters.yaml |
| 152 | +│ ├── jira-unauthenticated-projects.yaml |
| 153 | +│ ├── jira-unauthenticated-user-picker.yaml |
| 154 | +│ ├── rabbitmq-default-admin.yaml |
| 155 | +│ ├── rack-mini-profiler.yaml |
| 156 | +│ ├── springboot-detect.yaml |
| 157 | +│ └── wamp-xdebug-detect.yaml |
| 158 | +├── subdomain-takeover |
| 159 | +│ ├── detect-all-takeovers.yaml |
| 160 | +│ └── s3-subtakeover.yaml |
| 161 | +├── technologies |
| 162 | +│ ├── bigip-config-utility-detect.yaml |
| 163 | +│ ├── citrix-vpn-detect.yaml |
| 164 | +│ ├── clockwork-php-page.yaml |
| 165 | +│ ├── couchdb-detect.yaml |
| 166 | +│ ├── github-enterprise-detect.yaml |
| 167 | +│ ├── gitlab-detect.yaml |
| 168 | +│ ├── graphql.yaml |
| 169 | +│ ├── home-assistant.yaml |
| 170 | +│ ├── jaspersoft-detect.yaml |
| 171 | +│ ├── jira-detect.yaml |
| 172 | +│ ├── liferay-portal-detect.yaml |
| 173 | +│ ├── linkerd-badrule-detect.yaml |
| 174 | +│ ├── linkerd-ssrf-detect.yaml |
| 175 | +│ ├── netsweeper-webadmin-detect.yaml |
| 176 | +│ ├── ntlm-directories.yaml |
| 177 | +│ ├── prometheus-exposed-panel.yaml |
| 178 | +│ ├── s3-detect.yaml |
| 179 | +│ ├── sap-netweaver-as-java-detect.yaml |
| 180 | +│ ├── sap-netweaver-detect.yaml |
| 181 | +│ ├── sql-server-reporting.yaml |
| 182 | +│ ├── tech-detect.yaml |
| 183 | +│ ├── weblogic-detect.yaml |
| 184 | +│ └── werkzeug-debugger-detect.yaml |
| 185 | +├── tokens |
| 186 | +│ ├── amazon-mws-auth-token-value.yaml |
| 187 | +│ ├── aws-access-key-value.yaml |
| 188 | +│ ├── google-api-key.yaml |
| 189 | +│ ├── http-username-password.yaml |
| 190 | +│ ├── mailchimp-api-key.yaml |
| 191 | +│ └── slack-access-token.yaml |
| 192 | +├── vulnerabilities |
| 193 | +│ ├── cached-aem-pages.yaml |
| 194 | +│ ├── couchdb-adminparty.yaml |
| 195 | +│ ├── crlf-injection.yaml |
| 196 | +│ ├── discourse-xss.yaml |
| 197 | +│ ├── git-config-nginxoffbyslash.yaml |
| 198 | +│ ├── ibm-infoprint-directory-traversal.yaml |
| 199 | +│ ├── microstrategy-ssrf.yaml |
| 200 | +│ ├── moodle-filter-jmol-lfi.yaml |
| 201 | +│ ├── moodle-filter-jmol-xss.yaml |
| 202 | +│ ├── nginx-module-vts-xss.yaml |
| 203 | +│ ├── open-redirect.yaml |
| 204 | +│ ├── oracle-ebs-bispgraph-file-access.yaml |
| 205 | +│ ├── pdf-signer-ssti-to-rce.yaml |
| 206 | +│ ├── rce-shellshock-user-agent.yaml |
| 207 | +│ ├── rce-via-java-deserialization.yaml |
| 208 | +│ ├── springboot-actuators-jolokia-xxe.yaml |
| 209 | +│ ├── symfony-debugmode.yaml |
| 210 | +│ ├── tikiwiki-reflected-xss.yaml |
| 211 | +│ ├── tomcat-manager-pathnormalization.yaml |
| 212 | +│ ├── twig-php-ssti.yaml |
| 213 | +│ ├── wordpress-duplicator-path-traversal.yaml |
| 214 | +│ ├── wordpress-wordfence-xss.yaml |
| 215 | +│ └── x-forwarded-host-injection.yaml |
| 216 | +└── workflows |
| 217 | + ├── bigip-pwner-workflow.yaml |
| 218 | + ├── jira-exploitaiton-workflow.yaml |
| 219 | + ├── liferay-rce-workflow.yaml |
| 220 | + ├── netsweeper-preauth-rce-workflow.yaml |
| 221 | + ├── rabbitmq-workflow.yaml |
| 222 | + ├── sap-netweaver-workflow.yaml |
| 223 | + └── springboot-pwner-workflow.yaml |
| 224 | +``` |
| 225 | + |
| 226 | +</details> |
| 227 | + |
| 228 | +13 directories, **204 templates**. |
| 229 | + |
3 | 230 | Please navigate to https://nuclei.projectdiscovery.io for detailed documentation to build new and your own custom templates and many example templates for easy understanding. |
4 | 231 |
|
5 | 232 | ------ |
|
0 commit comments