endext

(โ˜… 221)

EndExt is a .go tool for extracting all the possible endpoints from the JS files

  • .gitignore
  • go.mod
  • LICENSE
  • main.go
  • README.md
  • regex.tmp

# Installation Guide

1. Get the code
git clone https://github.com/SirBugs/endext

Downloads the entire project code from GitHub to your computer.

cd endext

Moves into the project folder you just downloaded.

2. Go

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
โ–ถ go run main.go -l js_files_urls.txt

Runs the Go program directly without a separate build step.

โ–ถ echo 'target.com' | waybackurls | grep "\.js" > js_files.txt; go run main.go -l js_files.txt

Runs the Go program directly without a separate build step.

โœ… If the build finishes without errors, it worked. If you used go run ., check the terminal output.

Pulled directly from this repo's README.

// repository documentation