forked from KathanP19/HowToHunt
-
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
286defe
commit 5bfe724
Showing
1 changed file
with
28 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,28 @@ | ||
# Automate XSS using Dalfox, WaybackURL, GF Patterns. | ||
|
||
<b> Make sure you have Go installed on your Machine </b> | ||
|
||
### To Install Go on your Machine: | ||
|
||
``` | ||
sudo apt install -y golang | ||
export GOROOT=/usr/lib/go | ||
export GOPATH=$HOME/go | ||
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH | ||
source .bashrc | ||
``` | ||
|
||
## How to Hunt XSS using QuickXSS? | ||
|
||
- Use Waybackurls by Tomnomnom to Fetch URLS for Specific Target | ||
- Use GF patterns to find XSS Vulnerable URL's | ||
- Use Dalfox to find XSS. | ||
|
||
Check out my Blog to get a Detailed Explantion : [Blog Link](https://blog.theinfosecguy.me/post/automation-xss-using-dalfox/) | ||
|
||
|
||
Find Script here : [QuickXSS](https://github.com/theinfosecguy/QuickXSS) | ||
|
||
|
||
If you have any Questions, Reach out to me via [Twitter](https://twitter.com/g0t_rOoT_) | ||
|