forked from machine1337/AllAboutBugBounty
-
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.
Adding open redirect and update readme
- Loading branch information
MD15
committed
Apr 28, 2021
1 parent
ecb57dc
commit 5428e25
Showing
5 changed files
with
75 additions
and
1 deletion.
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 @@ | ||
# Soon! |
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 @@ | ||
# Soon! |
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,66 @@ | ||
## Filter Bypass | ||
|
||
1. Using a whitelisted domain or keyword | ||
``` | ||
target.com.evil.com | ||
``` | ||
|
||
2. Using "//" to bypass "http" blacklisted keyword | ||
``` | ||
//evil.com | ||
``` | ||
|
||
3. Using "https:" to bypass "//" blacklisted keyword | ||
``` | ||
https:evil.com | ||
``` | ||
|
||
4. Using "\/\/" to bypass "//" blacklisted keyword (Browsers see \/\/ as //) | ||
``` | ||
\/\/evil.com/ | ||
/\/evil.com/ | ||
``` | ||
|
||
5. Using "%E3%80%82" to bypass "." blacklisted character | ||
``` | ||
/?redir=evil。com | ||
/?redir=evil%E3%80%82com | ||
``` | ||
|
||
6. Using null byte "%00" to bypass blacklist filter | ||
``` | ||
//evil%00.com | ||
``` | ||
|
||
7. Using parameter pollution | ||
``` | ||
?next=target.com&next=evil.com | ||
``` | ||
|
||
8. Using "@" character, browser will redirect to anything after the "@" | ||
``` | ||
[email protected] | ||
target.com%40evil.com | ||
``` | ||
|
||
9. Creating folder as their domain | ||
``` | ||
http://www.yoursite.com/http://www.theirsite.com/ | ||
http://www.yoursite.com/folder/www.folder.com | ||
``` | ||
|
||
10. Using "?" characted, browser will translate it to "/?" | ||
``` | ||
http://www.yoursite.com?http://www.theirsite.com/ | ||
http://www.yoursite.com?folder/www.folder.com | ||
``` | ||
|
||
11. Host/Split Unicode Normalization | ||
``` | ||
https://evil.c℀.example.com | ||
``` | ||
|
||
12. Using parsing | ||
``` | ||
http://ⓔⓥⓘⓛ.ⓒⓞⓜ | ||
``` |
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
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 @@ | ||
# Soon! |