Add extract-urls (an headless)

This commit is contained in:
Dwi Siswanto
2021-06-18 13:31:59 +07:00
parent 44a53f7090
commit 437eb7ebea

View File

@@ -0,0 +1,24 @@
id: extract-urls
info:
name: Extract URLs from HTML attributes
author: dwisiswant0
severity: info
tags: headless,extractor
headless:
- steps:
- args:
url: "{{BaseURL}}"
action: navigate
- action: waitload
- 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'
extractors:
- type: kval
part: extract
kval:
- extract