https://github.com/anthdm/jscollect
A tool that collects all Javascript files from a certain domain
https://github.com/anthdm/jscollect
Last synced: 8 months ago
JSON representation
A tool that collects all Javascript files from a certain domain
- Host: GitHub
- URL: https://github.com/anthdm/jscollect
- Owner: anthdm
- Created: 2019-10-08T07:42:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T00:42:05.000Z (over 3 years ago)
- Last Synced: 2025-05-14T07:34:46.861Z (about 1 year ago)
- Language: Go
- Size: 10.7 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jscollect
A simple tool to collect all Javascript files from a domain.
### Installation
```
go get -u github.com/anthdm/jscollect
```
### Usage
```
jscollect -d https://target.com
```
Pipe the response into other tools
```
jscollect -d https://google.com | wc -l
jscollect -d https://google.com | httprobe
jscollect -d https://google.com > js.txt
```