mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 09:27:32 +00:00
22 lines
462 B
Markdown
22 lines
462 B
Markdown
|
# 502 - Pentesting Modbus
|
||
|
|
||
|
## Basic Information
|
||
|
|
||
|
Modbus Protocol is a messaging structure developed by Modicon in 1979. It is used to establish master-slave/client-server communication between intelligent devices.
|
||
|
|
||
|
**Default port:** 502
|
||
|
|
||
|
```text
|
||
|
PORT STATE SERVICE
|
||
|
502/tcp open modbus
|
||
|
```
|
||
|
|
||
|
## Enumeration
|
||
|
|
||
|
```bash
|
||
|
nmap --script modbus-discover -p 502 <IP>
|
||
|
msf> use auxiliary/scanner/scada/modbusdetect
|
||
|
msf> use auxiliary/scanner/scada/modbus_findunitid
|
||
|
```
|
||
|
|