-
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
1 parent
a97f4a4
commit 2f77230
Showing
1 changed file
with
24 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 |
---|---|---|
@@ -1,2 +1,26 @@ | ||
# sadExtractor | ||
sadExtractor is a simple recon tool that extract all links from a web page. | ||
|
||
|
||
## Install | ||
|
||
If you have Go installed and configured (i.e. with `$GOPATH/bin` in your `$PATH`): | ||
|
||
``` | ||
go install -v github.com/SaDs3c/sadExtractor@latest | ||
``` | ||
|
||
Otherwise [download a release for your platform](https://github.com/SaDs3c/sadExtractor/releases). | ||
To make it easier to execute you can put the binary in your `$PATH`. | ||
|
||
## Usage | ||
|
||
Single URL: | ||
``` | ||
sadExtractor -d <domain> -o output.txt | ||
``` | ||
|
||
Multiple URL in File: | ||
``` | ||
sadExtractor -l urls.txt -o output.txt | ||
``` |