Merge pull request #17 from neutrinoguy/ics

Added MMS (IEC 61850) Protocol
pull/20/head
Swissky 2022-10-16 20:28:04 +02:00 committed by GitHub
commit bc7359161d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
docs/protocols/mms.md Normal file
View File

@ -0,0 +1,25 @@
# MMS (IEC 61850)
### Discovery
***MMS Client***
- [Lib 61850](https://github.com/mz-automation/libiec61850)
- [IEC 61850 Open Server](https://github.com/robidev/iec61850_open_server)
***MMS Discovery Nmap Script***
Source: [mms-identify.nse](https://github.com/atimorin/scada-tools/blob/master/mms-identify.nse)
```bash
nmap -d --script mms-identify.nse --script-args='mms-identify.timeout=500' -p 102 <target_host>
```
### Explore MMS
- [MMS Client Example](https://libiec61850.com/documentation/iec-61850-client-tutorial/)
- [MMS Server Example](https://libiec61850.com/documentation/iec-61850-server-tutorial/)
### Fuzzing MMS
- [61850-fuzzing](https://github.com/fkie-cad/61850-fuzzing)