mirror of https://github.com/daffainfo/nuclei.git
92 lines
3.9 KiB
Plaintext
92 lines
3.9 KiB
Plaintext
# Simple binary invocation
|
|
{{binary}}
|
|
|
|
# Template tags filter
|
|
{{binary}} -tags cve -ntv 8.8.8,8.8.9
|
|
{{binary}} -tags cve
|
|
{{binary}} -tags cve,exposure
|
|
{{binary}} -tags cve,exposure -tags token
|
|
{{binary}} -tags cve,exposure -tags token,logs
|
|
{{binary}} -tags "cve","exposure" -tags "token","logs"
|
|
{{binary}} -tags 'cve','exposure' -tags 'token','logs'
|
|
{{binary}} -tags cve -severity high
|
|
{{binary}} -tags cve,exposure -severity high,critical
|
|
{{binary}} -tags cve,exposure -severity high,critical,medium
|
|
{{binary}} -tags cve -author geeknik
|
|
{{binary}} -tags cve -author geeknik,pdteam
|
|
{{binary}} -tags cve -author geeknik -severity high
|
|
{{binary}} -tags cve
|
|
{{binary}} -tags cve,exposure
|
|
{{binary}} -tags cve,exposure -tags token
|
|
{{binary}} -tags cve,exposure -tags token,logs
|
|
{{binary}} -tags "cve","exposure" -tags "token","logs"
|
|
{{binary}} -tags 'cve','exposure' -tags 'token','logs'
|
|
{{binary}} -tags cve -severity high
|
|
{{binary}} -tags cve,exposure -severity high,critical
|
|
{{binary}} -tags cve,exposure -severity high,critical,medium
|
|
{{binary}} -tags cve -author geeknik
|
|
{{binary}} -tags cve -author geeknik,pdteam
|
|
{{binary}} -tags cve -author geeknik -severity high
|
|
{{binary}} -tags cve,exposure -author geeknik,pdteam -severity high,critical
|
|
{{binary}} -tags "cve,exposure" -author "geeknik,pdteam" -severity high,critical
|
|
{{binary}} -tags cve -etags ssrf
|
|
{{binary}} -tags cve,exposure -etags ssrf,config
|
|
{{binary}} -tags cve,exposure -etags ssrf,config -severity high
|
|
{{binary}} -tags cve,exposure -etags ssrf,config -severity high -author geeknik
|
|
{{binary}} -tags cve,dos,fuzz
|
|
{{binary}} -tags cve -include-tags dos,fuzz
|
|
{{binary}} -tags cve -exclude-tags cve2020
|
|
{{binary}} -tags cve -exclude-templates cves/2020/
|
|
{{binary}} -tags cve -exclude-templates cves/2020/CVE-2020-9757.yaml
|
|
{{binary}} -tags cve -exclude-templates cves/2020/CVE-2020-9757.yaml -exclude-templates cves/2021/
|
|
{{binary}} -t cves/
|
|
{{binary}} -t cves/ -t exposures/
|
|
{{binary}} -t cves/ -t exposures/ -tags config
|
|
{{binary}} -t cves/ -t exposures/ -tags config,ssrf
|
|
{{binary}} -t cves/ -t exposures/ -tags config -severity high,critical
|
|
{{binary}} -t cves/ -t exposures/ -tags config -severity high,critical -author geeknik,pdteam
|
|
{{binary}} -t cves/ -t exposures/ -tags config -severity high,critical -author geeknik,pdteam -etags sqli
|
|
{{binary}} -t cves/ -t exposures/ -tags config -severity high,critical -author geeknik,pdteam -etags sqli -exclude-templates cves/2021/
|
|
{{binary}} -t cves/ -t exposures/ -tags config -severity high,critical -author geeknik,pdteam -etags sqli -exclude-templates cves/2017/CVE-2017-7269.yaml
|
|
{{binary}} -t cves/ -t exposures/ -tags config -severity high,critical -author geeknik,pdteam -etags sqli -include-templates cves/2017/CVE-2017-7269.yaml
|
|
|
|
# Advanced Filtering
|
|
{{binary}} -tags cve -author geeknik,pdteam -tc severity=='high'
|
|
{{binary}} -tc contains(authors,'pdteam')
|
|
{{binary}} -t cves/ -t exposures/ -tc contains(tags,'cve') -exclude-templates cves/2020/CVE-2020-9757.yaml
|
|
{{binary}} -tc protocol=='dns'
|
|
{{binary}} -tc contains(http_method,'GET')
|
|
{{binary}} -tc len(body)>0
|
|
{{binary}} -tc contains(matcher_type,'word')
|
|
{{binary}} -tc contains(extractor_type,'regex')
|
|
{{binary}} -tc contains(description,'wordpress')
|
|
|
|
# Workflow Filters
|
|
{{binary}} -w workflows
|
|
{{binary}} -w workflows -author geeknik,pdteam
|
|
{{binary}} -w workflows -severity high,critical
|
|
{{binary}} -w workflows -author geeknik,pdteam -severity high,critical
|
|
|
|
# Input Types
|
|
# http protocol
|
|
# host
|
|
{{binary}} -id tech-detect -u scanme.sh
|
|
# host:port
|
|
{{binary}} -id tech-detect -u scanme.sh:80
|
|
# scheme://host:port
|
|
{{binary}} -id tech-detect -u http://scanme.sh:80
|
|
# scheme://host
|
|
{{binary}} -id tech-detect -u https://scanme.sh
|
|
|
|
# Network Protocol
|
|
# host
|
|
{{binary}} -id ftp-weak-credentials -u scanme.sh
|
|
# host:port
|
|
{{binary}} -id ftp-weak-credentials -u scanme.sh:21
|
|
|
|
# SSL Protocol
|
|
# host
|
|
{{binary}} -id tls-version -u scanme.sh
|
|
# host:port
|
|
{{binary}} -id tls-version -u scanme.sh:22
|