├── README.md ├── Run.py ├── data └── wiki │ ├── get-started.md │ ├── info.md │ ├── qa.md │ ├── template-examples │ ├── dns.md │ ├── file.md │ ├── headless.md │ ├── helper-functions.md │ ├── http-fuzzing.md │ ├── http-payloads.md │ ├── http-race-conditions.md │ ├── http-raw.md │ ├── http-smuggling.md │ ├── http.md │ ├── network.md │ └── workflow.md │ └── templating-guide │ ├── helper-functions.md │ ├── index.md │ ├── interactsh.md │ ├── operators │ ├── extractors.md │ └── matchers.md │ ├── preprocessors.md │ ├── protocols │ ├── dns.md │ ├── file.md │ ├── headless.md │ ├── http-fuzzing.md │ ├── http.md │ └── network.md │ ├── variables.md │ └── workflows.md ├── md_split_text.py ├── prompt.py └── wiki.faiss ├── index.faiss └── index.pkl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/README.md -------------------------------------------------------------------------------- /Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/Run.py -------------------------------------------------------------------------------- /data/wiki/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/get-started.md -------------------------------------------------------------------------------- /data/wiki/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/info.md -------------------------------------------------------------------------------- /data/wiki/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/qa.md -------------------------------------------------------------------------------- /data/wiki/template-examples/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/dns.md -------------------------------------------------------------------------------- /data/wiki/template-examples/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/file.md -------------------------------------------------------------------------------- /data/wiki/template-examples/headless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/headless.md -------------------------------------------------------------------------------- /data/wiki/template-examples/helper-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/helper-functions.md -------------------------------------------------------------------------------- /data/wiki/template-examples/http-fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/http-fuzzing.md -------------------------------------------------------------------------------- /data/wiki/template-examples/http-payloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/http-payloads.md -------------------------------------------------------------------------------- /data/wiki/template-examples/http-race-conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/http-race-conditions.md -------------------------------------------------------------------------------- /data/wiki/template-examples/http-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/http-raw.md -------------------------------------------------------------------------------- /data/wiki/template-examples/http-smuggling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/http-smuggling.md -------------------------------------------------------------------------------- /data/wiki/template-examples/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/http.md -------------------------------------------------------------------------------- /data/wiki/template-examples/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/network.md -------------------------------------------------------------------------------- /data/wiki/template-examples/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/template-examples/workflow.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/helper-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/helper-functions.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/index.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/interactsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/interactsh.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/operators/extractors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/operators/extractors.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/operators/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/operators/matchers.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/preprocessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/preprocessors.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/protocols/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/protocols/dns.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/protocols/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/protocols/file.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/protocols/headless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/protocols/headless.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/protocols/http-fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/protocols/http-fuzzing.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/protocols/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/protocols/http.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/protocols/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/protocols/network.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/variables.md -------------------------------------------------------------------------------- /data/wiki/templating-guide/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/data/wiki/templating-guide/workflows.md -------------------------------------------------------------------------------- /md_split_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/md_split_text.py -------------------------------------------------------------------------------- /prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/prompt.py -------------------------------------------------------------------------------- /wiki.faiss/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/wiki.faiss/index.faiss -------------------------------------------------------------------------------- /wiki.faiss/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sf197/nuclei_gpt/HEAD/wiki.faiss/index.pkl --------------------------------------------------------------------------------