mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-23 21:24:06 +00:00
86 lines
2.9 KiB
Markdown
86 lines
2.9 KiB
Markdown
# Informations de base
|
|
|
|
Le protocole Modbus est une structure de messagerie développée par Modicon en 1979. Il est utilisé pour établir une communication maître-esclave/client-serveur entre des dispositifs intelligents.
|
|
|
|
**Port par défaut:** 502
|
|
```
|
|
PORT STATE SERVICE
|
|
502/tcp open modbus
|
|
```
|
|
# Énumération
|
|
|
|
## Modbus TCP
|
|
|
|
## Modbus TCP
|
|
|
|
### Nmap
|
|
|
|
### Nmap
|
|
|
|
```bash
|
|
nmap -sV --script modbus-discover <ip>
|
|
```
|
|
|
|
```bash
|
|
nmap -sV --script modbus-discover <ip>
|
|
```
|
|
|
|
### Modscan
|
|
|
|
### Modscan
|
|
|
|
Modscan is a tool that can be used to perform Modbus TCP enumeration.
|
|
|
|
Modscan est un outil qui peut être utilisé pour effectuer une énumération Modbus TCP.
|
|
|
|
### mbtget
|
|
|
|
### mbtget
|
|
|
|
mbtget is a tool that can be used to read and write Modbus TCP registers.
|
|
|
|
mbtget est un outil qui peut être utilisé pour lire et écrire des registres Modbus TCP.
|
|
|
|
## Modbus RTU
|
|
|
|
## Modbus RTU
|
|
|
|
### Nmap
|
|
|
|
### Nmap
|
|
|
|
```bash
|
|
nmap -sV --script modbus-discover -sL <ip>
|
|
```
|
|
|
|
```bash
|
|
nmap -sV --script modbus-discover -sL <ip>
|
|
```
|
|
|
|
### mbtget
|
|
|
|
### mbtget
|
|
|
|
mbtget is a tool that can be used to read and write Modbus RTU registers.
|
|
|
|
mbtget est un outil qui peut être utilisé pour lire et écrire des registres Modbus RTU.
|
|
```bash
|
|
nmap --script modbus-discover -p 502 <IP>
|
|
msf> use auxiliary/scanner/scada/modbusdetect
|
|
msf> use auxiliary/scanner/scada/modbus_findunitid
|
|
```
|
|
<details>
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
|
|
|
- Travaillez-vous dans une entreprise de cybersécurité ? Voulez-vous voir votre entreprise annoncée dans HackTricks ? ou voulez-vous avoir accès à la dernière version de PEASS ou télécharger HackTricks en PDF ? Consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop) !
|
|
|
|
- Découvrez [**The PEASS Family**](https://opensea.io/collection/the-peass-family), notre collection exclusive de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
|
|
|
- Obtenez le [**swag officiel PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
|
|
- **Rejoignez le** [**💬**](https://emojipedia.org/speech-balloon/) **groupe Discord** ou le [**groupe telegram**](https://t.me/peass) ou **suivez-moi** sur **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
|
|
|
- **Partagez vos astuces de piratage en soumettant des PR au [repo hacktricks](https://github.com/carlospolop/hacktricks) et au [repo hacktricks-cloud](https://github.com/carlospolop/hacktricks-cloud)**.
|
|
|
|
</details>
|