From f4da3050f2ba98ec290f6830a61d8918a69ec8ec Mon Sep 17 00:00:00 2001 From: Mats Klepsland Date: Tue, 16 Oct 2018 22:00:07 +0200 Subject: [PATCH] detect-ssh-proto-version: add description and url to keyword --- src/detect-ssh-proto-version.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/detect-ssh-proto-version.c b/src/detect-ssh-proto-version.c index 13a6b69111..978a63d7d8 100644 --- a/src/detect-ssh-proto-version.c +++ b/src/detect-ssh-proto-version.c @@ -76,6 +76,8 @@ static int g_ssh_banner_list_id = 0; void DetectSshVersionRegister(void) { sigmatch_table[DETECT_AL_SSH_PROTOVERSION].name = "ssh.protoversion"; + sigmatch_table[DETECT_AL_SSH_PROTOVERSION].desc = "match SSH protocol version"; + sigmatch_table[DETECT_AL_SSH_PROTOVERSION].url = DOC_URL DOC_VERSION "/rules/ssh-keywords.html#ssh-protoversion"; sigmatch_table[DETECT_AL_SSH_PROTOVERSION].AppLayerTxMatch = DetectSshVersionMatch; sigmatch_table[DETECT_AL_SSH_PROTOVERSION].Setup = DetectSshVersionSetup; sigmatch_table[DETECT_AL_SSH_PROTOVERSION].Free = DetectSshVersionFree;