Skip to content

Extract URLs from HTML attributes

ID: extract-urls

Severity: info

Author: dwisiswant0

Tags: headless,extractor

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: |
() => {
return '\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
# digest: 490a004630440220304e65f8ede2ae4a87e8eb684a0e50b99c4c3f70d963b51a24722930087ad3600220431cd3e613ca2b15f306dc92d13c375e41c19eb755f60a2b0caadbcae008bffc:922c64590222798bb761d5b6d8e72950

This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.

Terminal window
$ nuclei -u "URL" -t "headless/extract-urls.yaml"

View on Github