suricata
detect-tls-cert-fingerprint.c
Go to the documentation of this file.
1/* Copyright (C) 2017-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 Mats Klepsland <mats.klepsland@gmail.com>
22 *
23 * Implements support for tls_cert_fingerprint 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 "util-debug.h"
45#include "util-spm.h"
46#include "util-print.h"
47
48#include "stream-tcp.h"
49
50#include "app-layer.h"
51#include "app-layer-ssl.h"
52
53#include "util-unittest.h"
55
56static int DetectTlsFingerprintSetup(DetectEngineCtx *, Signature *, const char *);
57#ifdef UNITTESTS
58static void DetectTlsFingerprintRegisterTests(void);
59#endif
60static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
61 const DetectEngineTransforms *transforms,
62 Flow *f, const uint8_t flow_flags,
63 void *txv, const int list_id);
64static void DetectTlsFingerprintSetupCallback(const DetectEngineCtx *de_ctx,
65 Signature *s);
66static bool DetectTlsFingerprintValidateCallback(
67 const Signature *s, const char **sigerror, const DetectBufferType *dbt);
68static int g_tls_cert_fingerprint_buffer_id = 0;
69
70/**
71 * \brief Registration function for keyword: tls.cert_fingerprint
72 */
74{
75 sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].name = "tls.cert_fingerprint";
76 sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].alias = "tls_cert_fingerprint";
78 "sticky buffer to match the TLS cert fingerprint buffer";
80 "/rules/tls-keywords.html#tls-cert-fingerprint";
81 sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].Setup = DetectTlsFingerprintSetup;
82#ifdef UNITTESTS
83 sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].RegisterTests = DetectTlsFingerprintRegisterTests;
84#endif
87
90
91 DetectAppLayerMpmRegister("tls.cert_fingerprint", SIG_FLAG_TOCLIENT, 2,
93
96
97 DetectAppLayerMpmRegister("tls.cert_fingerprint", SIG_FLAG_TOSERVER, 2,
99
100 DetectBufferTypeSetDescriptionByName("tls.cert_fingerprint",
101 "TLS certificate fingerprint");
102
103 DetectBufferTypeRegisterSetupCallback("tls.cert_fingerprint",
104 DetectTlsFingerprintSetupCallback);
105
106 DetectBufferTypeRegisterValidateCallback("tls.cert_fingerprint",
107 DetectTlsFingerprintValidateCallback);
108
109 g_tls_cert_fingerprint_buffer_id = DetectBufferTypeGetByName("tls.cert_fingerprint");
110}
111
112/**
113 * \brief this function setup the tls_cert_fingerprint modifier keyword used in the rule
114 *
115 * \param de_ctx Pointer to the Detection Engine Context
116 * \param s Pointer to the Signature to which the current keyword belongs
117 * \param str Should hold an empty string always
118 *
119 * \retval 0 On success
120 * \retval -1 On failure
121 */
122static int DetectTlsFingerprintSetup(DetectEngineCtx *de_ctx, Signature *s,
123 const char *str)
124{
125 if (SCDetectBufferSetActiveList(de_ctx, s, g_tls_cert_fingerprint_buffer_id) < 0)
126 return -1;
127
129 return -1;
130
131 return 0;
132}
133
134static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
135 const DetectEngineTransforms *transforms, Flow *f,
136 const uint8_t flow_flags, void *txv, const int list_id)
137{
138 InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
139 if (buffer->inspect == NULL) {
140 const SSLState *ssl_state = (SSLState *)f->alstate;
141 const SSLStateConnp *connp;
142
143 if (flow_flags & STREAM_TOSERVER) {
144 connp = &ssl_state->client_connp;
145 } else {
146 connp = &ssl_state->server_connp;
147 }
148
149 if (connp->cert0_fingerprint == NULL) {
150 return NULL;
151 }
152
153 const uint32_t data_len = (uint32_t)strlen(connp->cert0_fingerprint);
154 const uint8_t *data = (uint8_t *)connp->cert0_fingerprint;
155
157 det_ctx, list_id, buffer, data, data_len, transforms);
158 }
159
160 return buffer;
161}
162
163static bool DetectTlsFingerprintValidateCallback(
164 const Signature *s, const char **sigerror, const DetectBufferType *dbt)
165{
166 for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
167 if (s->init_data->buffers[x].id != (uint32_t)dbt->id)
168 continue;
169 const SigMatch *sm = s->init_data->buffers[x].head;
170 for (; sm != NULL; sm = sm->next) {
171 if (sm->type != DETECT_CONTENT)
172 continue;
173
174 const DetectContentData *cd = (DetectContentData *)sm->ctx;
175
176 if (cd->content_len != 59) {
177 *sigerror = "Invalid length of the specified fingerprint. "
178 "This rule will therefore never match.";
179 SCLogWarning("rule %u: %s", s->id, *sigerror);
180 return false;
181 }
182
183 bool have_delimiters = false;
184 uint32_t u;
185 for (u = 0; u < cd->content_len; u++) {
186 if (cd->content[u] == ':') {
187 have_delimiters = true;
188 break;
189 }
190 }
191
192 if (!have_delimiters) {
193 *sigerror = "No colon delimiters ':' detected in content after "
194 "tls.cert_fingerprint. This rule will therefore "
195 "never match.";
196 SCLogWarning("rule %u: %s", s->id, *sigerror);
197 return false;
198 }
199
200 if (cd->flags & DETECT_CONTENT_NOCASE) {
201 *sigerror = "tls.cert_fingerprint should not be used together "
202 "with nocase, since the rule is automatically "
203 "lowercased anyway which makes nocase redundant.";
204 SCLogWarning("rule %u: %s", s->id, *sigerror);
205 }
206 }
207 }
208 return true;
209}
210
211static void DetectTlsFingerprintSetupCallback(const DetectEngineCtx *de_ctx,
212 Signature *s)
213{
214 for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
215 if (s->init_data->buffers[x].id != (uint32_t)g_tls_cert_fingerprint_buffer_id)
216 continue;
217 SigMatch *sm = s->init_data->buffers[x].head;
218 for (; sm != NULL; sm = sm->next) {
219 if (sm->type != DETECT_CONTENT)
220 continue;
221
223
224 bool changed = false;
225 uint32_t u;
226 for (u = 0; u < cd->content_len; u++) {
227 if (isupper(cd->content[u])) {
228 cd->content[u] = u8_tolower(cd->content[u]);
229 changed = true;
230 }
231 }
232
233 /* recreate the context if changes were made */
234 if (changed) {
235 SpmDestroyCtx(cd->spm_ctx);
236 cd->spm_ctx =
237 SpmInitCtx(cd->content, cd->content_len, 1, de_ctx->spm_global_thread_ctx);
238 }
239 }
240 }
241}
242
243#ifdef UNITTESTS
244#include "detect-engine-alert.h"
246#endif
@ ALPROTO_TLS
@ TLS_STATE_CLIENT_CERT_DONE
@ TLS_STATE_SERVER_CERT_DONE
#define DETECT_CONTENT_NOCASE
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_CERT_FINGERPRINT
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.
void DetectBufferTypeRegisterValidateCallback(const char *name, bool(*ValidateCallback)(const Signature *, const char **sigerror, const DetectBufferType *))
int DetectBufferTypeGetByName(const char *name)
int SCDetectSignatureSetAppProto(Signature *s, AppProto alproto)
SigTableElmt * sigmatch_table
void DetectTlsFingerprintRegister(void)
Registration function for keyword: tls.cert_fingerprint.
#define SIGMATCH_NOOPT
Definition detect.h:1651
#define SIG_FLAG_TOCLIENT
Definition detect.h:272
#define SIGMATCH_INFO_STICKY_BUFFER
Definition detect.h:1676
#define SIG_FLAG_TOSERVER
Definition detect.h:271
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
char * cert0_fingerprint
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
void(* RegisterTests)(void)
Definition detect.h:1448
const char * alias
Definition detect.h:1460
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
uint32_t id
Definition detect.h:713
#define u8_tolower(c)
#define str(s)
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition util-debug.h:255
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