mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
20 lines
715 B
Markdown
20 lines
715 B
Markdown
{{#include ../banners/hacktricks-training.md}}
|
|
|
|
|
|
# Basiese Inligting
|
|
|
|
In 1979 is die **Modbus Protocol** deur Modicon ontwikkel, wat as 'n boodskapstruktuur dien. Die primêre gebruik daarvan behels die fasilitering van kommunikasie tussen intelligente toestelle, wat onder 'n meester-slaaf/kliënt-bediener model werk. Hierdie protokol speel 'n belangrike rol in die moontlikmaking van toestelle om data doeltreffend uit te ruil.
|
|
|
|
**Standaard poort:** 502
|
|
```
|
|
PORT STATE SERVICE
|
|
502/tcp open modbus
|
|
```
|
|
# Opname
|
|
```bash
|
|
nmap --script modbus-discover -p 502 <IP>
|
|
msf> use auxiliary/scanner/scada/modbusdetect
|
|
msf> use auxiliary/scanner/scada/modbus_findunitid
|
|
```
|
|
{{#include ../banners/hacktricks-training.md}}
|