From 8eb65fa66974e2b409fb367fe9fb2c5d65fc8332 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sat, 11 Jul 2020 17:54:33 +0200 Subject: snmp: T2687: enforce beginning and end of string match for regex Match the full input string in regex validation. Previosly "sha123456" was allowed by the validator but we only support "sha". --- interface-definitions/snmp.xml.in | 52 +++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/interface-definitions/snmp.xml.in b/interface-definitions/snmp.xml.in index 31428092f..4894d0ce8 100644 --- a/interface-definitions/snmp.xml.in +++ b/interface-definitions/snmp.xml.in @@ -11,9 +11,9 @@ - Community name [REQUIRED] + Community name - [a-zA-Z0-9\-_]{1,100} + ^[a-zA-Z0-9\-_]{1,100}$ Community string is limited to alphanumerical characters only with a total lenght of 100 @@ -33,7 +33,7 @@ read write - (ro|rw) + ^(ro|rw)$ Authorization type must be either 'rw' or 'ro' @@ -71,7 +71,7 @@ Contact information - .{1,255} + ^.{1,255}$ Contact information is limited to 255 characters or less @@ -80,7 +80,7 @@ Description information - .{1,255} + ^.{1,255}$ Description is limited to 255 characters or less @@ -121,7 +121,7 @@ Location information - .{1,255} + ^.{1,255}$ Location is limited to 255 characters or less @@ -224,7 +224,7 @@ read write - (ro|rw) + ^(ro|rw)$ Authorization type must be either 'rw' or 'ro' @@ -233,7 +233,7 @@ Security levels - noauth auth priv2 + noauth auth priv noauth @@ -248,7 +248,7 @@ Messages are authenticated and encrypted (authPriv) - (noauth|auth|priv) + ^(noauth|auth|priv)$ @@ -290,14 +290,14 @@ 0x[0-9a-f]*$ - Key must start from '0x' and contain hex digits + Encrypted key must only contain hex digits Defines the clear text key for authentication - .{8,}$ + ^.{8,}$ Key must contain 8 or more characters @@ -317,7 +317,7 @@ Secure Hash Algorithm - (md5|sha) + ^(md5|sha)$ @@ -347,14 +347,14 @@ 0x[0-9a-f]*$ - Key must start from '0x' and contain hex digits + Encrypted key must only contain hex digits Defines the clear text key for privacy protocol - .{8,}$ + ^.{8,}$ Key must contain 8 or more characters @@ -374,7 +374,7 @@ Advanced Encryption Standard - (des|aes) + ^(des|aes)$ @@ -395,7 +395,7 @@ Use User Datagram Protocol for notifications - (tcp|udp) + ^(tcp|udp)$ @@ -414,7 +414,7 @@ Use TRAP - (inform|trap) + ^(inform|trap)$ @@ -448,14 +448,14 @@ 0x[0-9a-f]*$ - Key must start from '0x' and contain hex digits + Encrypted key must only contain hex digits Defines the clear text key for authentication - .{8,}$ + ^.{8,}$ Key must contain 8 or more characters @@ -475,7 +475,7 @@ Secure Hash Algorithm - (md5|sha) + ^(md5|sha)$ @@ -504,7 +504,7 @@ read write - (ro|rw) + ^(ro|rw)$ Authorization type must be either 'rw' or 'ro' @@ -520,14 +520,14 @@ 0x[0-9a-f]*$ - Key must start from '0x' and contain hex digits + Encrypted key must only contain hex digits Defines the clear text key for privacy protocol - .{8,}$ + ^.{8,}$ Key must contain 8 or more characters @@ -547,7 +547,7 @@ Advanced Encryption Standard - (des|aes) + ^(des|aes)$ @@ -568,7 +568,7 @@ Specifies the oid - [0-9]+(\.[0-9]+)*$ + ^[0-9]+(\.[0-9]+)*$ OID must start from a number @@ -582,7 +582,7 @@ Defines a bit-mask that is indicating which subidentifiers of the associated subtree OID should be regarded as significant - [0-9a-f]{2}([\.:][0-9a-f]{2})*$ + ^[0-9a-f]{2}([\.:][0-9a-f]{2})*$ MASK is a list of hex octets, separated by '.' or ':' -- cgit v1.2.3