2024-01-05 23:03:10 +00:00
```markdown
2022-04-28 16:01:33 +00:00
< details >
2024-01-05 23:03:10 +00:00
< summary > < strong > 从零到英雄学习AWS黑客技术, 通过< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > !< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-01-05 23:03:10 +00:00
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2024-01-05 23:03:10 +00:00
* 如果你想在**HackTricks上看到你的公司广告**或者**下载HackTricks的PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
* 获取[**官方PEASS & HackTricks商品**](https://peass.creator-spring.com)
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群组** ](https://discord.gg/hRep4RUj7f ) 或 [**telegram群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm** ](https://twitter.com/carlospolopm )**。**
* **通过向** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github仓库提交PR来分享你的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >
2023-08-03 19:12:22 +00:00
# **协议信息**
2020-07-15 15:43:14 +00:00
2024-01-05 23:03:10 +00:00
来自Wikipedia关于EtherNet/IP的文章 [http://en.wikipedia.org/wiki/EtherNet/IP ](http://en.wikipedia.org/wiki/EtherNet/IP )
2020-07-15 15:43:14 +00:00
2024-01-05 23:03:10 +00:00
> EtherNet/IP是由罗克韦尔自动化在20世纪90年代末开发的, 作为罗克韦尔工业以太网解决方案的一部分。罗克韦尔给EtherNet/IP命名, 并将其移交给ODVA, ODVA现在管理该协议, 并通过要求新开发的使用该协议的产品遵守既定标准来确保多厂商系统的互操作性。
2020-07-15 15:43:14 +00:00
2024-01-05 23:03:10 +00:00
> EtherNet/IP最常用于工业自动化控制系统, 例如水处理厂、制造设施和公用事业。几家控制系统供应商已经开发了能够通过EtherNet/IP通信的可编程自动化控制器和I/O。
2020-07-15 15:43:14 +00:00
2024-01-05 23:03:10 +00:00
通过查询TCP/44818并发送一个列出身份消息(0x63), 可以准确识别一个EtherNet/IP设备。响应消息将确定它是否是一个EtherNet/IP设备, 并解析信息以枚举设备。\
2023-08-03 19:12:22 +00:00
来自[这里](https://github.com/digitalbond/Redpoint)
2020-07-15 15:43:14 +00:00
2023-08-03 19:12:22 +00:00
**默认端口:** 44818 UDP/TCP
2021-10-18 11:21:18 +00:00
```
2024-01-05 23:03:10 +00:00
```
2020-07-15 15:43:14 +00:00
PORT STATE SERVICE
44818/tcp open EtherNet/IP
```
2023-08-03 19:12:22 +00:00
# **枚举**
2020-07-15 15:43:14 +00:00
```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 >
```
2022-05-01 12:49:36 +00:00
# Shodan
2020-10-05 12:24:52 +00:00
2024-01-05 23:03:10 +00:00
* `port:44818 "product name"`
2022-04-28 16:01:33 +00:00
< details >
2024-01-05 23:03:10 +00:00
< summary > < strong > 从零到英雄学习AWS黑客技术, 通过< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-01-05 23:03:10 +00:00
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2024-01-05 23:03:10 +00:00
* 如果您想在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
* 获取[**官方PEASS & HackTricks商品**](https://peass.creator-spring.com)
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群组** ](https://discord.gg/hRep4RUj7f ) 或 [**telegram群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm** ](https://twitter.com/carlospolopm )**。**
* **通过向** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github仓库提交PR来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >