suricata
detect-tls-ja3s-hash.c
Go to the documentation of this file.
1/* Copyright (C) 2019 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 ja3s.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"
34#include "detect-engine-mpm.h"
36#include "detect-content.h"
37#include "detect-pcre.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"
59
60#ifndef HAVE_JA3
61static int DetectJA3SetupNoSupport(DetectEngineCtx *a, Signature *b, const char *c)
62{
63 SCLogError("no JA3 support built in");
64 return -1;
65}
66#endif /* HAVE_JA3 */
67
68#ifdef HAVE_JA3
69static int DetectTlsJa3SHashSetup(DetectEngineCtx *, Signature *, const char *);
70static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
71 const DetectEngineTransforms *transforms,
72 Flow *f, const uint8_t flow_flags,
73 void *txv, const int list_id);
74static void DetectTlsJa3SHashSetupCallback(const DetectEngineCtx *de_ctx, Signature *s);
75static int g_tls_ja3s_hash_buffer_id = 0;
76#endif
77
78/**
79 * \brief Registration function for keyword: ja3s.hash
80 */
82{
84 sigmatch_table[DETECT_TLS_JA3S_HASH].desc = "sticky buffer to match the JA3S hash buffer";
85 sigmatch_table[DETECT_TLS_JA3S_HASH].url = "/rules/ja3-keywords.html#ja3s-hash";
86#ifdef HAVE_JA3
87 sigmatch_table[DETECT_TLS_JA3S_HASH].Setup = DetectTlsJa3SHashSetup;
88#else /* HAVE_JA3 */
89 sigmatch_table[DETECT_TLS_JA3S_HASH].Setup = DetectJA3SetupNoSupport;
90#endif /* HAVE_JA3 */
93
94#ifdef HAVE_JA3
97
100
102 Ja3DetectGetHash, ALPROTO_QUIC, 1);
103
105 DetectEngineInspectBufferGeneric, Ja3DetectGetHash);
106
107 DetectBufferTypeSetDescriptionByName("ja3s.hash", "TLS JA3S hash");
108
110 DetectTlsJa3SHashSetupCallback);
111
113
114 g_tls_ja3s_hash_buffer_id = DetectBufferTypeGetByName("ja3s.hash");
115#endif /* HAVE_JA3 */
116}
117
118#ifdef HAVE_JA3
119/**
120 * \brief this function setup the ja3s.hash modifier keyword used in the rule
121 *
122 * \param de_ctx Pointer to the Detection Engine Context
123 * \param s Pointer to the Signature to which the current keyword belongs
124 * \param str Should hold an empty string always
125 *
126 * \retval 0 On success
127 * \retval -1 On failure
128 */
129static int DetectTlsJa3SHashSetup(DetectEngineCtx *de_ctx, Signature *s, const char *str)
130{
131 if (SCDetectBufferSetActiveList(de_ctx, s, g_tls_ja3s_hash_buffer_id) < 0)
132 return -1;
133
135 if (DetectSignatureSetMultiAppProto(s, alprotos) < 0) {
136 SCLogError("rule contains conflicting protocols.");
137 return -1;
138 }
139
140 /* try to enable JA3 */
141 SSLEnableJA3();
142
143 /* Check if JA3 is disabled */
144 if (!RunmodeIsUnittests() && Ja3IsDisabled("rule")) {
146 SCLogError("ja3(s) support is not enabled");
147 }
148 return -2;
149 }
150
151 return 0;
152}
153
154static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
155 const DetectEngineTransforms *transforms, Flow *f,
156 const uint8_t flow_flags, void *txv, const int list_id)
157{
158 InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
159 if (buffer->inspect == NULL) {
160 const SSLState *ssl_state = (SSLState *)f->alstate;
161
162 if (ssl_state->server_connp.ja3_hash == NULL) {
163 return NULL;
164 }
165
166 const uint32_t data_len = (uint32_t)strlen(ssl_state->server_connp.ja3_hash);
167 const uint8_t *data = (uint8_t *)ssl_state->server_connp.ja3_hash;
168
170 det_ctx, list_id, buffer, data, data_len, transforms);
171 }
172
173 return buffer;
174}
175
176static void DetectTlsJa3SHashSetupCallback(const DetectEngineCtx *de_ctx,
177 Signature *s)
178{
179 for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
180 if (s->init_data->buffers[x].id != (uint32_t)g_tls_ja3s_hash_buffer_id)
181 continue;
182 SigMatch *sm = s->init_data->buffers[x].head;
183 for (; sm != NULL; sm = sm->next) {
184 if (sm->type != DETECT_CONTENT)
185 continue;
186
188
189 bool changed = false;
190 uint32_t u;
191 for (u = 0; u < cd->content_len; u++) {
192 if (isupper(cd->content[u])) {
193 cd->content[u] = u8_tolower(cd->content[u]);
194 changed = true;
195 }
196 }
197
198 /* recreate the context if changes were made */
199 if (changed) {
200 SpmDestroyCtx(cd->spm_ctx);
201 cd->spm_ctx =
202 SpmInitCtx(cd->content, cd->content_len, 1, de_ctx->spm_global_thread_ctx);
203 }
204 }
205 }
206}
207#endif
uint16_t AppProto
@ ALPROTO_TLS
@ ALPROTO_UNKNOWN
@ ALPROTO_QUIC
void SSLEnableJA3(void)
if not explicitly disabled in config, enable ja3 support
@ TLS_STATE_SERVER_HELLO
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_TLS_JA3S_HASH
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
void DetectBufferTypeRegisterSetupCallback(const char *name, void(*SetupCallback)(const DetectEngineCtx *, Signature *))
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.
bool DetectMd5ValidateCallback(const Signature *s, const char **sigerror, const DetectBufferType *map)
void DetectBufferTypeRegisterValidateCallback(const char *name, bool(*ValidateCallback)(const Signature *, const char **sigerror, const DetectBufferType *))
int DetectBufferTypeGetByName(const char *name)
int DetectSignatureSetMultiAppProto(Signature *s, const AppProto *alprotos)
this function is used to set multiple possible app-layer protos
bool SigMatchSilentErrorEnabled(const DetectEngineCtx *de_ctx, const enum DetectKeywordId id)
SigTableElmt * sigmatch_table
void DetectTlsJa3SHashRegister(void)
Registration function for keyword: ja3s.hash.
#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
SpmGlobalThreadCtx * spm_global_thread_ctx
Definition detect.h:986
Flow data structure.
Definition flow.h:356
void * alstate
Definition flow.h:479
SSLv[2.0|3.[0|1|2|3]] state structure.
a single match condition for a signature
Definition detect.h:356
uint16_t type
Definition detect.h:357
struct SigMatch_ * next
Definition detect.h:360
SigMatchCtx * ctx
Definition detect.h:359
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 * name
Definition detect.h:1459
SignatureInitDataBuffer * buffers
Definition detect.h:647
uint32_t buffer_index
Definition detect.h:648
Signature container.
Definition detect.h:668
SignatureInitData * init_data
Definition detect.h:747
#define u8_tolower(c)
#define str(s)
int RunmodeIsUnittests(void)
Definition suricata.c:270
#define SCLogError(...)
Macro used to log ERROR messages.
Definition util-debug.h:267
int Ja3IsDisabled(const char *type)
Definition util-ja3.c:324
SpmCtx * SpmInitCtx(const uint8_t *needle, uint16_t needle_len, int nocase, SpmGlobalThreadCtx *global_thread_ctx)
Definition util-spm.c:173
void SpmDestroyCtx(SpmCtx *ctx)
Definition util-spm.c:183