suricata
detect-ssh-hassh-server-string.c
Go to the documentation of this file.
1/* Copyright (C) 2007-2020 Open Information Security Foundation
2 *
3 * You can copy, redistribute or modify this Program under the terms of
4 * the GNU General Public License version 2 as published by the Free
5 * Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * version 2 along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 */
17
18/**
19 * \file
20 *
21 * \author Vadym Malakhatko <v.malakhatko@sirinsoftware.com>
22 */
23
24#include "suricata-common.h"
25#include "threads.h"
26#include "decode.h"
27
28#include "detect.h"
29#include "detect-parse.h"
30
31#include "detect-engine.h"
33#include "detect-engine-mpm.h"
34#include "detect-engine-state.h"
36
37#include "flow.h"
38#include "flow-var.h"
39#include "flow-util.h"
40#include "stream-tcp.h"
41#include "util-debug.h"
42#include "util-unittest.h"
44
45#include "app-layer.h"
46#include "app-layer-parser.h"
47#include "app-layer-ssh.h"
49#include "rust.h"
50
51
52#define KEYWORD_NAME "ssh.hassh.server.string"
53#define KEYWORD_ALIAS "ssh-hassh-server-string"
54#define KEYWORD_DOC "ssh-keywords.html#ssh.hassh.server.string"
55#define BUFFER_NAME "ssh.hassh.server.string"
56#define BUFFER_DESC "Ssh Client Key Exchange methods For ssh Servers"
57static int g_ssh_hassh_server_string_buffer_id = 0;
58
59
60static InspectionBuffer *GetSshData(DetectEngineThreadCtx *det_ctx,
61 const DetectEngineTransforms *transforms, Flow *_f,
62 const uint8_t flow_flags, void *txv, const int list_id)
63{
64
65 SCEnter();
66
67 InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
68
69 if (buffer->inspect == NULL) {
70 const uint8_t *hassh = NULL;
71 uint32_t b_len = 0;
72
73 if (SCSshTxGetHasshString(txv, &hassh, &b_len, flow_flags) != 1)
74 return NULL;
75 if (hassh == NULL || b_len == 0) {
76 SCLogDebug("SSH hassh string is not set");
77 return NULL;
78 }
79
80 InspectionBufferSetupAndApplyTransforms(det_ctx, list_id, buffer, hassh, b_len, transforms);
81 }
82
83 return buffer;
84}
85
86/**
87 * \brief this function setup the ssh.hassh.server.string modifier keyword used in the rule
88 *
89 * \param de_ctx Pointer to the Detection Engine Context
90 * \param s Pointer to the Signature to which the current keyword belongs
91 * \param str Should hold an empty string always
92 *
93 * \retval 0 On success
94 * \retval -1 On failure
95 * \retval -2 on failure that should be silent after the first
96 */
97static int DetectSshHasshServerStringSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
98{
99 if (SCDetectBufferSetActiveList(de_ctx, s, g_ssh_hassh_server_string_buffer_id) < 0)
100 return -1;
101
103 return -1;
104
105 /* try to enable Hassh */
106 SCSshEnableHassh();
107
108 /* Check if Hassh is disabled */
109 if (!RunmodeIsUnittests() && !SCSshHasshIsEnabled()) {
111 SCLogError("hassh support is not enabled");
112 }
113 return -2;
114 }
115
116 return 0;
117
118}
119
120/**
121 * \brief Registration function for hasshServer.string keyword.
122 */
@ ALPROTO_SSH
int SCDetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
void InspectionBufferSetupAndApplyTransforms(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len, const DetectEngineTransforms *transforms)
setup the buffer with our initial data
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
void DetectAppLayerMpmRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register an app layer keyword for mpm
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
@ DETECT_SSH_HASSH_SERVER_STRING
Data structures and function prototypes for keeping state for the detection engine.
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
uint8_t DetectEngineInspectBufferGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
int DetectBufferTypeGetByName(const char *name)
int SCDetectSignatureSetAppProto(Signature *s, AppProto alproto)
bool SigMatchSilentErrorEnabled(const DetectEngineCtx *de_ctx, const enum DetectKeywordId id)
SigTableElmt * sigmatch_table
void DetectSshHasshServerStringRegister(void)
Registration function for hasshServer.string keyword.
#define KEYWORD_ALIAS
#define SIGMATCH_NOOPT
Definition detect.h:1651
#define SIG_FLAG_TOCLIENT
Definition detect.h:272
#define SIGMATCH_INFO_STICKY_BUFFER
Definition detect.h:1676
DetectEngineCtx * de_ctx
main detection engine ctx
Definition detect.h:932
Flow data structure.
Definition flow.h:356
const char * url
Definition detect.h:1462
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition detect.h:1441
uint16_t flags
Definition detect.h:1450
const char * desc
Definition detect.h:1461
const char * alias
Definition detect.h:1460
const char * name
Definition detect.h:1459
Signature container.
Definition detect.h:668
int RunmodeIsUnittests(void)
Definition suricata.c:270
#define SCEnter(...)
Definition util-debug.h:277
#define SCLogDebug(...)
Definition util-debug.h:275
#define SCLogError(...)
Macro used to log ERROR messages.
Definition util-debug.h:267