From 995322c55fb23c82a36ea3966219401b4fee6c77 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 17 Sep 2019 08:28:45 +0200 Subject: luci-proto-wireguard: fix preshared key validation Ensure that the preshared key option remains optional. Fixes: #3075 Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/protocol/wireguard.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'protocols/luci-proto-wireguard/htdocs') diff --git a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js index 6742f2ab99..ab76326eee 100644 --- a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js +++ b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js @@ -3,6 +3,9 @@ 'require network'; function validateBase64(section_id, value) { + if (value.length == 0) + return true; + if (value.length != 44 || !value.match(/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/)) return _('Invalid Base64 key string'); -- cgit v1.2.3