-
Notifications
You must be signed in to change notification settings - Fork 85
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
Showing
3 changed files
with
12 additions
and
11 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
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 |
---|---|---|
|
@@ -20,6 +20,7 @@ https://github.com/qazbnm456/awesome-web-security | |
https://github.com/enaqx/awesome-pentest | ||
https://github.com/sbilly/awesome-security | ||
https://github.com/rmusser01/Infosec_Reference | ||
https://github.com/payloadbox/ | ||
|
||
# old | ||
http://code.google.com/p/pentest-bookmarks/wiki/BookmarksList | ||
|
@@ -134,11 +135,12 @@ [email protected]@legit.com https://nathandavison.com/blog/exploiting-email-address-pa | |
me([email protected])@evil.com <- email comment | ||
array: [email protected]&[email protected] | ||
|
||
* reset forgot pw | ||
* password reset | ||
mysql 1="1abc" is true and 0="abc" is true so request /reset?token=0 http://phrack.org/issues/69/12.html | ||
reset token is NULL in db by default so request ?reset_token=%00 - opencfp bug http://haxx.ml/post/149975211631/how-i-hacked-your-cfp-and-probably-some-other | ||
send more than one reset password request at the same time, or http pipeline multiple requests (dont update `Content-Length` or send `Connection: close`) | ||
integer key truncation like php in 2015, send id of 4294967296: var_dump([0 => 0] === [0x100000000 => 0]); => bool(true) https://bugs.php.net/bug.php?id=69892 | ||
poisoning https://portswigger.net/web-security/host-header/exploiting/password-reset-poisoning | ||
|
||
* authentication bypass | ||
/activate/?activation_code= -> SELECT * FROM users WHERE (users.`activation_code` IS NULL) LIMIT 1 # login w/o password as the first account | ||
|
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