API Endpoint Enumeration
curl https://target.com/script.js | grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*"
python3 linkfinder.py -i https://target.com/script.js -o cli
grep -rE "api/v[0-9]|endpoint|fetch(" /path/to/js/files
Last updated
curl https://target.com/script.js | grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*"
python3 linkfinder.py -i https://target.com/script.js -o cli
grep -rE "api/v[0-9]|endpoint|fetch(" /path/to/js/files
Last updated