GerbenJavado/LinkFinder — reverse-engineered prompt
Reverse engineered prompt
Build me a simple Python command line tool that helps security testers find hidden links and API endpoints inside JavaScript files.
I want to give it a URL, a local file, or a folder of JavaScript files, and have it scan the code for things like full URLs, relative paths, dotted paths, and endpoint names like login.php or api/users. It should be able to print results in the terminal or save a clean HTML report. Add an option to filter the results with a regex, an option to scan a whole domain by finding its JavaScript files, and an option to handle a saved Burp Suite export with multiple files.
Please make it work with Python 3, include install requirements, basic usage help, and a few tests for the parsing logic. A Dockerfile would be useful too so I can run it without installing everything locally. Keep the interface simple and practical for bug bounty style recon.
Want more depth? Deep Reverse