suricata
detect-ssh-software.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2016 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  * \ingroup sshlayer
20  *
21  * @{
22  */
23 
24 
25 /**
26  * \file
27  *
28  * \author Victor Julien <victor@inliniac.net>
29  *
30  * Implements support ssh_software sticky buffer
31  */
32 
33 #include "suricata-common.h"
34 #include "threads.h"
35 #include "decode.h"
36 
37 #include "detect.h"
38 #include "detect-parse.h"
39 #include "detect-engine.h"
40 #include "detect-engine-mpm.h"
41 #include "detect-engine-state.h"
44 
45 #include "app-layer.h"
46 #include "app-layer-parser.h"
47 #include "app-layer-ssh.h"
48 #include "detect-ssh-software.h"
49 #include "rust.h"
50 
51 #define KEYWORD_NAME "ssh.software"
52 #define KEYWORD_NAME_LEGACY "ssh_software"
53 #define KEYWORD_DOC "ssh-keywords.html#ssh-software"
54 #define BUFFER_NAME "ssh_software"
55 #define BUFFER_DESC "ssh software field"
56 static int g_buffer_id = 0;
57 
58 static InspectionBuffer *GetSshData(DetectEngineThreadCtx *det_ctx,
59  const DetectEngineTransforms *transforms, Flow *_f,
60  const uint8_t flow_flags, void *txv, const int list_id)
61 {
62  SCEnter();
63 
64  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
65 
66  if (buffer->inspect == NULL) {
67  const uint8_t *software = NULL;
68  uint32_t b_len = 0;
69 
70  if (rs_ssh_tx_get_software(txv, &software, &b_len, flow_flags) != 1)
71  return NULL;
72  if (software == NULL || b_len == 0) {
73  SCLogDebug("SSH software version not set");
74  return NULL;
75  }
76 
77  InspectionBufferSetup(det_ctx, list_id, buffer, software, b_len);
78  InspectionBufferApplyTransforms(buffer, transforms);
79  }
80 
81  return buffer;
82 }
83 
84 static int DetectSshSoftwareSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
85 {
86  if (DetectBufferSetActiveList(de_ctx, s, g_buffer_id) < 0)
87  return -1;
88 
90  return -1;
91 
92  return 0;
93 }
94 
95 
97 {
102  sigmatch_table[DETECT_AL_SSH_SOFTWARE].Setup = DetectSshSoftwareSetup;
104 
106  GetSshData, ALPROTO_SSH, SshStateBannerDone),
108  PrefilterGenericMpmRegister, GetSshData, ALPROTO_SSH, SshStateBannerDone),
109 
111  SshStateBannerDone, DetectEngineInspectBufferGeneric, GetSshData);
113  SshStateBannerDone, DetectEngineInspectBufferGeneric, GetSshData);
114 
116 
117  g_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
118 }
SigTableElmt_::url
const char * url
Definition: detect.h:1296
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1753
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1497
app-layer-ssh.h
SigTableElmt_::desc
const char * desc
Definition: detect.h:1295
DetectEngineInspectBufferGeneric
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.
Definition: detect-engine.c:2169
SigTableElmt_::name
const char * name
Definition: detect.h:1293
DetectEngineTransforms
Definition: detect.h:406
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
detect-ssh-software.h
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1382
InspectionBuffer
Definition: detect.h:371
threads.h
KEYWORD_DOC
#define KEYWORD_DOC
Definition: detect-ssh-software.c:53
Flow_
Flow data structure.
Definition: flow.h:350
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1287
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:836
rust.h
ALPROTO_SSH
@ ALPROTO_SSH
Definition: app-layer-protos.h:34
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:264
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1278
detect-engine-prefilter.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1526
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1119
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:263
decode.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1092
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
detect.h
DETECT_AL_SSH_SOFTWARE
@ DETECT_AL_SSH_SOFTWARE
Definition: detect-engine-register.h:176
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:745
DetectAppLayerMpmRegister
void DetectAppLayerMpmRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register a MPM engine
Definition: detect-engine-mpm.c:89
app-layer-parser.h
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
DetectSshSoftwareRegister
void DetectSshSoftwareRegister(void)
Definition: detect-ssh-software.c:96
detect-engine-content-inspection.h
BUFFER_NAME
#define BUFFER_NAME
Definition: detect-ssh-software.c:54
SigTableElmt_::alias
const char * alias
Definition: detect.h:1294
suricata-common.h
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1725
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-ssh-software.c:51
KEYWORD_NAME_LEGACY
#define KEYWORD_NAME_LEGACY
Definition: detect-ssh-software.c:52
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:372
InspectionBufferSetup
void InspectionBufferSetup(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1621
detect-parse.h
Signature_
Signature container.
Definition: detect.h:593
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1473
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
register inspect engine at start up time
Definition: detect-engine.c:216
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1216
app-layer.h
BUFFER_DESC
#define BUFFER_DESC
Definition: detect-ssh-software.c:55