-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6799710
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
# RedJs | ||
|
||
RedJs is a javascript enumration tool that can be used to crawl a website and download all javascript files. Also look for specific keywords and endpoints | ||
|
||
|
||
|
||
|
||
## Installation in linux | ||
|
||
Download from releases | ||
|
||
```bash | ||
unzip redjs-linux.zip | ||
cd redjs-linux.zip | ||
sudo cp redjs /bin | ||
``` | ||
|
||
|
||
## How to use | ||
|
||
```bash | ||
# To Crawl A Website And Download All Js Files | ||
redjs -u https://example.com -o /a/folder/absolute/path | ||
|
||
# To Download From A List Of Url | ||
redjs -f /path/to/jsurl.txt | ||
|
||
# To Run redjs Automated Test | ||
redjs -t /oath to/folder/where/files/saved | ||
``` | ||
|
||
|