suricata
detect-tls-ja3-hash.c
Go to the documentation of this file.
1 /* Copyright (C) 2017 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 Mats Klepsland <mats.klepsland@gmail.com>
22  *
23  * Implements support for ja3.hash keyword.
24  */
25 
26 #include "suricata-common.h"
27 #include "threads.h"
28 #include "decode.h"
29 #include "detect.h"
30 
31 #include "detect-parse.h"
32 #include "detect-engine.h"
33 #include "detect-engine-buffer.h"
34 #include "detect-engine-mpm.h"
36 #include "detect-content.h"
37 #include "detect-pcre.h"
38 #include "detect-tls-ja3-hash.h"
39 
40 #include "flow.h"
41 #include "flow-util.h"
42 #include "flow-var.h"
43 
44 #include "conf.h"
45 #include "conf-yaml-loader.h"
46 
47 #include "util-debug.h"
48 #include "util-spm.h"
49 #include "util-print.h"
50 #include "util-ja3.h"
51 
52 #include "stream-tcp.h"
53 
54 #include "app-layer.h"
55 #include "app-layer-ssl.h"
56 
57 #include "util-unittest.h"
58 #include "util-unittest-helper.h"
59 
60 #ifndef HAVE_JA3
61 static int DetectJA3SetupNoSupport(DetectEngineCtx *a, Signature *b, const char *c)
62 {
63  SCLogError("no JA3 support built in");
64  return -1;
65 }
66 #endif
67 
68 #ifdef HAVE_JA3
69 static int DetectTlsJa3HashSetup(DetectEngineCtx *, Signature *, const char *);
70 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
71  const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv,
72  const int list_id);
73 static int g_tls_ja3_hash_buffer_id = 0;
74 #endif
75 
76 /**
77  * \brief Registration function for keyword: ja3_hash
78  */
80 {
83  sigmatch_table[DETECT_TLS_JA3_HASH].desc = "sticky buffer to match the JA3 hash buffer";
84  sigmatch_table[DETECT_TLS_JA3_HASH].url = "/rules/ja3-keywords.html#ja3-hash";
85 #ifdef HAVE_JA3
86  sigmatch_table[DETECT_TLS_JA3_HASH].Setup = DetectTlsJa3HashSetup;
87 #else /* HAVE_JA3 */
88  sigmatch_table[DETECT_TLS_JA3_HASH].Setup = DetectJA3SetupNoSupport;
89 #endif /* HAVE_JA3 */
92 
93 #ifdef HAVE_JA3
96 
99 
101  Ja3DetectGetHash, ALPROTO_QUIC, 1);
102 
104  DetectEngineInspectBufferGeneric, Ja3DetectGetHash);
105 
106  DetectBufferTypeSetDescriptionByName("ja3.hash", "TLS JA3 hash");
107 
109 
111 
112  g_tls_ja3_hash_buffer_id = DetectBufferTypeGetByName("ja3.hash");
113 #endif /* HAVE_JA3 */
114 }
115 
116 #ifdef HAVE_JA3
117 /**
118  * \brief this function setup the ja3.hash modifier keyword used in the rule
119  *
120  * \param de_ctx Pointer to the Detection Engine Context
121  * \param s Pointer to the Signature to which the current keyword belongs
122  * \param str Should hold an empty string always
123  *
124  * \retval 0 On success
125  * \retval -1 On failure
126  * \retval -2 on failure that should be silent after the first
127  */
128 static int DetectTlsJa3HashSetup(DetectEngineCtx *de_ctx, Signature *s, const char *str)
129 {
130  if (SCDetectBufferSetActiveList(de_ctx, s, g_tls_ja3_hash_buffer_id) < 0)
131  return -1;
132 
134  if (DetectSignatureSetMultiAppProto(s, alprotos) < 0) {
135  SCLogError("rule contains conflicting protocols.");
136  return -1;
137  }
138 
139  /* try to enable JA3 */
140  SSLEnableJA3();
141 
142  /* Check if JA3 is disabled */
143  if (!RunmodeIsUnittests() && Ja3IsDisabled("rule")) {
145  SCLogError("ja3 support is not enabled");
146  }
147  return -2;
148  }
149 
150  return 0;
151 }
152 
153 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
154  const DetectEngineTransforms *transforms, Flow *f,
155  const uint8_t flow_flags, void *txv, const int list_id)
156 {
157  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
158  if (buffer->inspect == NULL) {
159  const SSLState *ssl_state = (SSLState *)f->alstate;
160 
161  if (ssl_state->client_connp.ja3_hash == NULL) {
162  return NULL;
163  }
164 
165  const uint32_t data_len = (uint32_t)strlen(ssl_state->client_connp.ja3_hash);
166  const uint8_t *data = (uint8_t *)ssl_state->client_connp.ja3_hash;
167 
169  det_ctx, list_id, buffer, data, data_len, transforms);
170  }
171 
172  return buffer;
173 }
174 #endif
SigTableElmt_::url
const char * url
Definition: detect.h:1461
SSLState_
SSLv[2.0|3.[0|1|2|3]] state structure.
Definition: app-layer-ssl.h:237
detect-content.h
DetectTlsJa3HashRegister
void DetectTlsJa3HashRegister(void)
Registration function for keyword: ja3_hash.
Definition: detect-tls-ja3-hash.c:79
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1675
DetectBufferTypeRegisterSetupCallback
void DetectBufferTypeRegisterSetupCallback(const char *name, void(*SetupCallback)(const DetectEngineCtx *, Signature *, const DetectBufferType *))
Definition: detect-engine.c:1463
SigTableElmt_::desc
const char * desc
Definition: detect.h:1460
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:79
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:2049
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1458
stream-tcp.h
DetectEngineTransforms
Definition: detect.h:390
SSLState_::client_connp
SSLStateConnp client_connp
Definition: app-layer-ssl.h:258
DetectSignatureSetMultiAppProto
int DetectSignatureSetMultiAppProto(Signature *s, const AppProto *alprotos)
this function is used to set multiple possible app-layer protos
Definition: detect-parse.c:2157
SigTableElmt_::flags
uint32_t flags
Definition: detect.h:1449
ALPROTO_TLS
@ ALPROTO_TLS
Definition: app-layer-protos.h:39
AppProto
uint16_t AppProto
Definition: app-layer-protos.h:86
ALPROTO_QUIC
@ ALPROTO_QUIC
Definition: app-layer-protos.h:57
SSLStateConnp_::ja3_hash
char * ja3_hash
Definition: app-layer-ssl.h:219
InspectionBuffer
Definition: detect-engine-inspect-buffer.h:34
threads.h
Flow_
Flow data structure.
Definition: flow.h:347
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:933
DetectBufferTypeRegisterValidateCallback
void DetectBufferTypeRegisterValidateCallback(const char *name, bool(*ValidateCallback)(const Signature *, const char **sigerror, const DetectBufferType *))
Definition: detect-engine.c:1481
util-ja3.h
SCDetectBufferSetActiveList
int SCDetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine-buffer.c:29
DetectMd5ValidateCallback
bool DetectMd5ValidateCallback(const Signature *s, const char **sigerror, const DetectBufferType *map)
Definition: detect-engine.c:5079
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine-inspect-buffer.c:56
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1440
detect-pcre.h
detect-engine-prefilter.h
util-unittest.h
util-unittest-helper.h
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1278
Ja3IsDisabled
int Ja3IsDisabled(const char *type)
Definition: util-ja3.c:324
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:270
decode.h
util-debug.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:19
DetectEngineThreadCtx_
Definition: detect.h:1245
TLS_STATE_CLIENT_HELLO_DONE
@ TLS_STATE_CLIENT_HELLO_DONE
Definition: app-layer-ssl.h:80
util-print.h
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:1577
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:152
conf-yaml-loader.h
conf.h
SSLEnableJA3
void SSLEnableJA3(void)
if not explicitly disabled in config, enable ja3 support
Definition: app-layer-ssl.c:3318
RunmodeIsUnittests
int RunmodeIsUnittests(void)
Definition: suricata.c:274
DETECT_TLS_JA3_HASH
@ DETECT_TLS_JA3_HASH
Definition: detect-engine-register.h:245
SCSigMatchSilentErrorEnabled
bool SCSigMatchSilentErrorEnabled(const DetectEngineCtx *de_ctx, uint16_t id)
Definition: detect-parse.c:330
SigTableElmt_::alias
const char * alias
Definition: detect.h:1459
suricata-common.h
util-spm.h
detect-engine-buffer.h
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect-engine-inspect-buffer.h:35
str
#define str(s)
Definition: suricata-common.h:308
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:274
Flow_::alstate
void * alstate
Definition: flow.h:472
detect-parse.h
Signature_
Signature container.
Definition: detect.h:668
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-inspect-buffer.c:197
ALPROTO_UNKNOWN
@ ALPROTO_UNKNOWN
Definition: app-layer-protos.h:29
detect-tls-ja3-hash.h
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1650
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:273
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1375
flow.h
flow-var.h
DetectLowerSetupCallback
void DetectLowerSetupCallback(const DetectEngineCtx *de_ctx, Signature *s, const DetectBufferType *map)
Definition: detect-engine.c:5120
app-layer-ssl.h
app-layer.h