From e0c07b9f64b28f64d7997fa43fdd7f338e497fd5 Mon Sep 17 00:00:00 2001 From: Aagam Shah Date: Sun, 16 Oct 2022 23:22:59 +0530 Subject: [PATCH] Added MMS (IEC 61850) Protocol --- docs/protocols/mms.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docs/protocols/mms.md diff --git a/docs/protocols/mms.md b/docs/protocols/mms.md new file mode 100644 index 0000000..272466b --- /dev/null +++ b/docs/protocols/mms.md @@ -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 +``` + +### 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)