mirror of
https://github.com/opnsense/plugins.git
synced 2026-04-29 02:06:20 -05:00
security/openconnect: allow more characters to group name (#1122)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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/
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user