EndExt
EndExt is a .go tool for extracting all the possible endpoints from the JS files
Idea
When you crawl all the JS files from waybackruls for example or even collect the JS files urls from your target website’s home source page. If the website was using an API system and you wanna look for all the endpoints in the JS files, cuz u may find something hidden here or there .. That’s why I made this tool… I give it the JS file urls. It grabs all the possible endpoints or urls or paths in the submitted JS files for me.
Installation
git clone https://github.com/SirBugs/endext.git
Use
Example
echo ‘target.com’ | waybackurls | tee waybackresults.txt; cat waybackresults.txt | grep “\.js” > js_files.txt; go run main.go js_files.txt
Copyright (c) 2023 Fares W. Muhammed
Source: https://github.com/SirBugs/
原文始发于endext: extracting all the possible endpoints from the JS files
·:
转载请注明:endext: extracting all the possible endpoints from the JS files | CTF导航