From: Mats Klepsland Date: Tue, 16 Oct 2018 20:00:07 +0000 (+0200) Subject: detect-ssh-proto-version: add description and url to keyword X-Git-Tag: suricata-4.1.0~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4da3050f2ba98ec290f6830a61d8918a69ec8ec;p=thirdparty%2Fsuricata.git detect-ssh-proto-version: add description and url to keyword --- 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;