├── VERSION ├── .github ├── scripts │ ├── requirements.txt │ └── builder.py └── workflows │ ├── uglify.yaml │ └── builder.yaml ├── db.json.gz ├── README.md ├── netlify.toml ├── opensearch.xml ├── assets ├── script.min.js ├── script.js ├── style.min.css └── style.css └── index.html /VERSION: -------------------------------------------------------------------------------- 1 | v10.3.5 2 | -------------------------------------------------------------------------------- /.github/scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==5.4.1 2 | -------------------------------------------------------------------------------- /db.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwisiswant0/nuclei-templates-dir/HEAD/db.json.gz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nuclei-templates directory 2 | 3 | ![demo](https://user-images.githubusercontent.com/25837540/135249223-16bc7649-1539-48d5-b4f6-457f91dba8d9.png) -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [[headers]] 2 | for = "/*" 3 | [headers.values] 4 | X-Frame-Options = "DENY" 5 | X-XSS-Protection = "1; mode=block" 6 | Cache-Control = ''' 7 | max-age=0, 8 | no-cache, 9 | no-store, 10 | must-revalidate''' -------------------------------------------------------------------------------- /opensearch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |