mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
23 lines
973 B
Markdown
23 lines
973 B
Markdown
{{#include ../banners/hacktricks-training.md}}
|
|
|
|
# **Protokol Inligting**
|
|
|
|
EtherNet/IP is 'n **industriële Ethernet-netwerkprotokol** wat algemeen gebruik word in **industriële outomatiseringsbeheerstelsels**. Dit is in die laat 1990's deur Rockwell Automation ontwikkel en word deur ODVA bestuur. Die protokol verseker **multi-verskaffer stelselintegrasie** en word in verskeie toepassings soos **waterverwerkingsaanlegte**, **produksiefasiliteite**, en **nutsdienste** gebruik. Om 'n EtherNet/IP toestel te identifiseer, word 'n navraag na **TCP/44818** gestuur met 'n **lys Identiteite Boodskap (0x63)**.
|
|
|
|
**Standaard poort:** 44818 UDP/TCP
|
|
```
|
|
PORT STATE SERVICE
|
|
44818/tcp open EtherNet/IP
|
|
```
|
|
# **Enumerasie**
|
|
```bash
|
|
nmap -n -sV --script enip-info -p 44818 <IP>
|
|
pip3 install cpppo
|
|
python3 -m cpppo.server.enip.list_services [--udp] [--broadcast] --list-identity -a <IP>
|
|
```
|
|
# Shodan
|
|
|
|
- `port:44818 "produknaam"`
|
|
|
|
{{#include ../banners/hacktricks-training.md}}
|