From 683124f841ed4fdd742692efd01ccbde3e31dc82 Mon Sep 17 00:00:00 2001 From: ulrich1919 Date: Thu, 12 Sep 2024 08:05:22 +0000 Subject: [PATCH] Fixes #1713: ncm-ssh add ssh/sshd option GSSAPIKexAlgorithms to schema.pan --- ncm-ssh/src/main/pan/components/ssh/schema.pan | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ncm-ssh/src/main/pan/components/ssh/schema.pan b/ncm-ssh/src/main/pan/components/ssh/schema.pan index 04f1b3e86b..5e1f58f3b8 100644 --- a/ncm-ssh/src/main/pan/components/ssh/schema.pan +++ b/ncm-ssh/src/main/pan/components/ssh/schema.pan @@ -24,6 +24,15 @@ type ssh_kbdinteractivedevices = string with match (SELF, "^(bsdauth|pam|skey)$" type ssh_kexalgorithms = string with match (SELF, "^(diffie-hellman-group-exchange-sha256|" + "ecdh-sha2-nistp(256|384|521)|curve25519-sha256@libssh.org)$"); type ssh_MACs = string with is_valid_ssh_MAC(SELF); +type ssh_gssapikexalgorithms = choice( + 'gss-gex-sha1-', + 'gss-group1-sha1-', + 'gss-group14-sha1-', + 'gss-group14-sha256-', + 'gss-group16-sha512-', + 'gss-nistp256-sha256-', + 'gss-curve25519-sha256-' + ); function is_valid_ssh_MAC = { match(ARGV[0], "^(hmac-(sha2-256|sha2-512|ripemd160)|(hmac-ripemd160|umac-64|umac-128|hmac-sha2-256-etm" + @@ -73,6 +82,7 @@ type ssh_core_options_type = { "Compression" ? string with match (SELF, '^(yes|delayed|no)$') "GSSAPIAuthentication" ? legacy_binary_affirmation_string "GSSAPICleanupCredentials" ? legacy_binary_affirmation_string + "GSSAPIKexAlgorithms" ? ssh_gssapikexalgorithms[1..] "GSSAPIKeyExchange" ? legacy_binary_affirmation_string "GatewayPorts" ? legacy_binary_affirmation_string "HostbasedAuthentication" ? legacy_binary_affirmation_string