suricata
detect-smb-ntlmssp.c
Go to the documentation of this file.
1 /* Copyright (C) 2022 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 Eric Leblond <el@stamus-networks.com>
22  *
23  */
24 
25 #include "detect-engine-register.h"
26 #include "suricata-common.h"
27 
28 #include "detect.h"
29 #include "detect-parse.h"
30 
31 #include "detect-engine.h"
32 #include "detect-engine-mpm.h"
33 #include "detect-engine-state.h"
36 
37 #include "detect-smb-ntlmssp.h"
38 #include "rust.h"
39 
40 #define BUFFER_NAME "smb_ntlmssp_user"
41 #define KEYWORD_NAME "smb.ntlmssp_user"
42 #define KEYWORD_ID DETECT_SMB_NTLMSSP_USER
43 
44 static int g_smb_nltmssp_user_buffer_id = 0;
45 
46 static int DetectSmbNtlmsspUserSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
47 {
48  if (DetectBufferSetActiveList(de_ctx, s, g_smb_nltmssp_user_buffer_id) < 0)
49  return -1;
50 
52  return -1;
53 
54  return 0;
55 }
56 
57 static InspectionBuffer *GetNtlmsspUserData(DetectEngineThreadCtx *det_ctx,
58  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
59  const int list_id)
60 {
61  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
62  if (buffer->inspect == NULL) {
63  uint32_t b_len = 0;
64  const uint8_t *b = NULL;
65 
66  if (rs_smb_tx_get_ntlmssp_user(txv, &b, &b_len) != 1)
67  return NULL;
68  if (b == NULL || b_len == 0)
69  return NULL;
70 
71  InspectionBufferSetupAndApplyTransforms(det_ctx, list_id, buffer, b, b_len, transforms);
72  }
73  return buffer;
74 }
75 
77 {
79  sigmatch_table[KEYWORD_ID].Setup = DetectSmbNtlmsspUserSetup;
81  sigmatch_table[KEYWORD_ID].desc = "sticky buffer to match on SMB ntlmssp user in session setup";
82 
84  GetNtlmsspUserData, ALPROTO_SMB, 1);
85 
87  DetectEngineInspectBufferGeneric, GetNtlmsspUserData);
88 
89  g_smb_nltmssp_user_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
90 }
91 
92 #undef BUFFER_NAME
93 #undef KEYWORD_NAME
94 #undef KEYWORD_ID
95 
96 #define BUFFER_NAME "smb_ntlmssp_domain"
97 #define KEYWORD_NAME "smb.ntlmssp_domain"
98 #define KEYWORD_ID DETECT_SMB_NTLMSSP_DOMAIN
99 
100 static int g_smb_nltmssp_domain_buffer_id = 0;
101 
102 static int DetectSmbNtlmsspDomainSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
103 {
104  if (DetectBufferSetActiveList(de_ctx, s, g_smb_nltmssp_domain_buffer_id) < 0)
105  return -1;
106 
108  return -1;
109 
110  return 0;
111 }
112 
113 static InspectionBuffer *GetNtlmsspDomainData(DetectEngineThreadCtx *det_ctx,
114  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
115  const int list_id)
116 {
117  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
118  if (buffer->inspect == NULL) {
119  uint32_t b_len = 0;
120  const uint8_t *b = NULL;
121 
122  if (rs_smb_tx_get_ntlmssp_domain(txv, &b, &b_len) != 1)
123  return NULL;
124  if (b == NULL || b_len == 0)
125  return NULL;
126 
127  InspectionBufferSetupAndApplyTransforms(det_ctx, list_id, buffer, b, b_len, transforms);
128  }
129  return buffer;
130 }
131 
133 {
135  sigmatch_table[KEYWORD_ID].Setup = DetectSmbNtlmsspDomainSetup;
138  "sticky buffer to match on SMB ntlmssp domain in session setup";
139 
141  GetNtlmsspDomainData, ALPROTO_SMB, 1);
142 
144  DetectEngineInspectBufferGeneric, GetNtlmsspDomainData);
145 
146  g_smb_nltmssp_domain_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
147 }
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1782
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1528
SigTableElmt_::desc
const char * desc
Definition: detect.h:1322
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:153
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:2195
SigTableElmt_::name
const char * name
Definition: detect.h:1320
InspectionBufferSetupAndApplyTransforms
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
Definition: detect-engine.c:1662
DetectEngineTransforms
Definition: detect.h:410
DetectSmbNtlmsspDomainRegister
void DetectSmbNtlmsspDomainRegister(void)
Definition: detect-smb-ntlmssp.c:132
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1377
InspectionBuffer
Definition: detect.h:375
detect-smb-ntlmssp.h
Flow_
Flow data structure.
Definition: flow.h:354
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1314
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:855
detect-engine-register.h
rust.h
BUFFER_NAME
#define BUFFER_NAME
Definition: detect-smb-ntlmssp.c:96
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1305
detect-engine-prefilter.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1521
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1114
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:269
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:18
DetectEngineThreadCtx_
Definition: detect.h:1110
detect-engine-mpm.h
detect.h
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:750
DetectAppLayerMpmRegister
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
Definition: detect-engine-mpm.c:151
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
detect-engine-content-inspection.h
DetectSmbNtlmsspUserRegister
void DetectSmbNtlmsspUserRegister(void)
Definition: detect-smb-ntlmssp.c:76
suricata-common.h
KEYWORD_ID
#define KEYWORD_ID
Definition: detect-smb-ntlmssp.c:98
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-smb-ntlmssp.c:97
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:376
detect-parse.h
Signature_
Signature container.
Definition: detect.h:614
ALPROTO_SMB
@ ALPROTO_SMB
Definition: app-layer-protos.h:43
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1504
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
Definition: detect-engine.c:245