One liner regex match to search inside JS files, using curl and grep!
hakrawler -url https://redacted.com -plain -depth 3 | tee -a /urls.txt
Prefix the urls with correct syntax which will be accepted by the 'curl'
sed 's/^/url=/;' /urls.txt | tee -a /curls.txt
curl -sS -K /curls.txt | grep -Eoi "REGEX"
For Regex examples: https://github.com/odomojuli/RegExAPI
Author: Jai Kumar Sharma