mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
security/openconnect: add pin-sha256 to certificate hash (#1356)
This commit is contained in:
parent
bce4a31527
commit
4201e4610f
3 changed files with 7 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
PLUGIN_NAME= openconnect
|
||||
PLUGIN_VERSION= 1.3.3
|
||||
PLUGIN_VERSION= 1.4.0
|
||||
PLUGIN_COMMENT= OpenConnect Client
|
||||
PLUGIN_DEPENDS= openconnect
|
||||
PLUGIN_MAINTAINER= m.muenz@gmail.com
|
||||
|
|
|
|||
|
|
@ -6,6 +6,10 @@ the Juniper SSL VPN which is now known as Pulse Connect Secure.
|
|||
Plugin Changelog
|
||||
================
|
||||
|
||||
1.4.0
|
||||
|
||||
* Add "pin-sha256" certificate hash
|
||||
|
||||
1.3.3
|
||||
|
||||
* Enhance allowed characters in group name
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
</password>
|
||||
<servercert type="TextField">
|
||||
<Required>N</Required>
|
||||
<mask>/^[a-z0-9]{40,64}$/</mask>
|
||||
<mask>/^([a-zA-Z0-9\/\+\=]){40,64}$/u</mask>
|
||||
<ValidationMessage>Please provide a valid hash.</ValidationMessage>
|
||||
</servercert>
|
||||
<hash type="OptionField">
|
||||
|
|
@ -35,6 +35,7 @@
|
|||
<OptionValues>
|
||||
<sha256>SHA256</sha256>
|
||||
<sha1>SHA1</sha1>
|
||||
<pin-sha256>PIN-SHA256</pin-sha256>
|
||||
</OptionValues>
|
||||
</hash>
|
||||
<group type="TextField">
|
||||
|
|
|
|||
Loading…
Reference in a new issue