security/openconnect: allow more characters to group name (#1122)

This commit is contained in:
Michael
2019-01-08 09:49:04 +01:00
committed by Franco Fichtner
parent 8257b1fbbc
commit 8fe749f1bb
3 changed files with 38 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
PLUGIN_NAME= openconnect
PLUGIN_VERSION= 1.3.2
PLUGIN_VERSION= 1.3.3
PLUGIN_COMMENT= OpenConnect Client
PLUGIN_DEPENDS= openconnect
PLUGIN_MAINTAINER= m.muenz@gmail.com

View File

@@ -2,4 +2,39 @@ OpenConnect is an SSL VPN client initially created to support
Cisco's AnyConnect SSL VPN. It has since been ported to support
the Juniper SSL VPN which is now known as Pulse Connect Secure.
Plugin Changelog
================
1.3.3
* Enhance allowed characters in group name
1.3.2
* Reworked init script to better handle SIGINT
1.3.1
* Add non-inter option to config
1.3
* Add group separation
* Allow client certificate based authentication
1.2
* Allow @ in user name
* Allow upper case characters user name
1.1
* Add field to allow untrusted certificates via certificate hash string
1.0
* Initial release
WWW: http://www.infradead.org/openconnect/

View File

@@ -39,8 +39,8 @@
</hash>
<group type="TextField">
<Required>N</Required>
<mask>/^[a-zA-Z0-9]{1,64}$/</mask>
<ValidationMessage>Only a-zA-Z0-9 are allowed.</ValidationMessage>
<mask>/^[a-zA-Z0-9._-]{1,64}$/</mask>
<ValidationMessage>Please provide a valid group name. Allowed characters are a-zA-Z0-9._- and it has to be 1-64 characters long.</ValidationMessage>
</group>
<clientcertificate type="CertificateField">
<Type>cert</Type>