mirror of https://github.com/daffainfo/nuclei.git
31 lines
697 B
YAML
31 lines
697 B
YAML
|
|
id: headless-extract-values
|
|
info:
|
|
name: Headless Extract Value
|
|
author: pdteam
|
|
severity: info
|
|
tags: headless
|
|
|
|
headless:
|
|
- steps:
|
|
- action: navigate
|
|
args:
|
|
url: "{{BaseURL}}"
|
|
- action: waitload
|
|
# From headless/extract-urls.yaml
|
|
- action: script
|
|
name: extract
|
|
args:
|
|
code: |
|
|
'\n' + [...new Set(Array.from(document.querySelectorAll('[src], [href], [url], [action]')).map(i => i.src || i.href || i.url || i.action))].join('\r\n') + '\n'
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "test.html"
|
|
|
|
extractors:
|
|
- type: kval
|
|
part: extract
|
|
kval:
|
|
- extract |