Skip to content

Commit

Permalink
Fixes #1713: ncm-ssh add ssh/sshd option GSSAPIKexAlgorithms to schem…
Browse files Browse the repository at this point in the history
…a.pan
  • Loading branch information
ulrich1919 committed Sep 13, 2024
1 parent 797d010 commit a650b16
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ncm-ssh/src/main/pan/components/ssh/schema.pan
Original file line number Diff line number Diff line change
Expand Up @@ -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" +
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a650b16

Please sign in to comment.