Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 203 Bytes

SubRegex.md

File metadata and controls

9 lines (8 loc) · 203 Bytes

Extract Subdomains with burp + regexp

([a-zA-Z0-9-_]{1,}\.){1,}domian\.com"

Terminal : OneLiner

cat urls | grep -oP "([a-zA-Z0-9-_]{1,}\.){1,}domain\.com" | tr -d "2F" | sort -u