Actions
Feature #5676
openASN1 Spec to Rust nom generator
Description
to be used for SNMP, Kerberos, Bacnet...
Updated by Philippe Antoine almost 2 years ago
- Related to Task #5488: Suricon 2022 brainstorm added
Updated by Philippe Antoine 12 months ago
- Related to Feature #5675: protocol: MMS SCADA support added
Updated by Philippe Antoine 12 months ago
- Related to Feature #6461: ics protocol: bacnet added
Updated by Victor Julien 3 months ago
What is the purpose of this ticket? Can you add a bit more detail?
Updated by Philippe Antoine 3 months ago
Victor Julien wrote in #note-4:
What is the purpose of this ticket? Can you add a bit more detail?
Many protocols such as SNMP, LDAP, kerberos... have a spec describing the messages in ASN1.
It is possible to do a program that compiles this ASN1 into rust code using nom
For instance snmpv2 ans is here https://www.rfc-editor.org/rfc/rfc3416#section-3
PDUs ::= CHOICE { get-request GetRequest-PDU, get-next-request GetNextRequest-PDU, get-bulk-request GetBulkRequest-PDU, response Response-PDU, set-request SetRequest-PDU, inform-request InformRequest-PDU, snmpV2-trap SNMPv2-Trap-PDU, report Report-PDU }
should become a rust enumeration and
GetRequest-PDU ::= [0] IMPLICIT PDU
should tell us that value 0 should be parsed as `PDU` (which is described afterwards...)
Actions