summaryrefslogtreecommitdiffstats
path: root/src/util-ja3.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
commita0aa2307322cd47bbf416810ac0292925e03be87 (patch)
tree37076262a026c4b48c8a0e84f44ff9187556ca35 /src/util-ja3.c
parentInitial commit. (diff)
downloadsuricata-a0aa2307322cd47bbf416810ac0292925e03be87.tar.xz
suricata-a0aa2307322cd47bbf416810ac0292925e03be87.zip
Adding upstream version 1:7.0.3.upstream/1%7.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/util-ja3.c')
-rw-r--r--src/util-ja3.c302
1 files changed, 302 insertions, 0 deletions
diff --git a/src/util-ja3.c b/src/util-ja3.c
new file mode 100644
index 0000000..b361b3e
--- /dev/null
+++ b/src/util-ja3.c
@@ -0,0 +1,302 @@
+/* Copyright (C) 2007-2017 Open Information Security Foundation
+ *
+ * You can copy, redistribute or modify this Program under the terms of
+ * the GNU General Public License version 2 as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/**
+ * \file
+ *
+ * \author Mats Klepsland <mats.klepsland@gmail.com>
+ *
+ * Functions used to generate JA3 fingerprint.
+ */
+
+#include "suricata-common.h"
+#include "app-layer-ssl.h"
+#include "util-validate.h"
+#include "util-ja3.h"
+
+#include "detect-engine.h"
+
+/**
+ * \brief Allocate new buffer.
+ *
+ * \return pointer to buffer on success.
+ * \return NULL on failure.
+ */
+JA3Buffer *Ja3BufferInit(void)
+{
+ JA3Buffer *buffer = SCCalloc(1, sizeof(JA3Buffer));
+ if (buffer == NULL) {
+ return NULL;
+ }
+
+ return buffer;
+}
+
+/**
+ * \brief Free allocated buffer.
+ *
+ * \param buffer The buffer to free.
+ */
+void Ja3BufferFree(JA3Buffer **buffer)
+{
+ DEBUG_VALIDATE_BUG_ON(*buffer == NULL);
+
+ if ((*buffer)->data != NULL) {
+ SCFree((*buffer)->data);
+ (*buffer)->data = NULL;
+ }
+
+ SCFree(*buffer);
+ *buffer = NULL;
+}
+
+/**
+ * \internal
+ * \brief Resize buffer if it is full.
+ *
+ * \param buffer The buffer.
+ * \param len The length of the data that should fit into the buffer.
+ *
+ * \retval 0 on success.
+ * \retval -1 on failure.
+ */
+static int Ja3BufferResizeIfFull(JA3Buffer *buffer, uint32_t len)
+{
+ DEBUG_VALIDATE_BUG_ON(buffer == NULL);
+
+ while (buffer->used + len + 2 > buffer->size)
+ {
+ buffer->size *= 2;
+ char *tmp = SCRealloc(buffer->data, buffer->size);
+ if (tmp == NULL) {
+ SCLogError("Error resizing JA3 buffer");
+ return -1;
+ }
+ buffer->data = tmp;
+ }
+
+ return 0;
+}
+
+/**
+ * \brief Append buffer to buffer.
+ *
+ * Append the second buffer to the first and then free it.
+ *
+ * \param buffer1 The first buffer.
+ * \param buffer2 The second buffer.
+ *
+ * \retval 0 on success.
+ * \retval -1 on failure.
+ */
+int Ja3BufferAppendBuffer(JA3Buffer **buffer1, JA3Buffer **buffer2)
+{
+ if (*buffer1 == NULL || *buffer2 == NULL) {
+ SCLogError("Buffers should not be NULL");
+ return -1;
+ }
+
+ /* If buffer1 contains no data, then we just copy the second buffer
+ instead of appending its data. */
+ if ((*buffer1)->data == NULL) {
+ (*buffer1)->data = (*buffer2)->data;
+ (*buffer1)->used = (*buffer2)->used;
+ (*buffer1)->size = (*buffer2)->size;
+ SCFree(*buffer2);
+ return 0;
+ }
+
+ int rc = Ja3BufferResizeIfFull(*buffer1, (*buffer2)->used);
+ if (rc != 0) {
+ Ja3BufferFree(buffer1);
+ Ja3BufferFree(buffer2);
+ return -1;
+ }
+
+ if ((*buffer2)->used == 0) {
+ (*buffer1)->used += snprintf((*buffer1)->data + (*buffer1)->used,
+ (*buffer1)->size - (*buffer1)->used, ",");
+ } else {
+ (*buffer1)->used += snprintf((*buffer1)->data + (*buffer1)->used,
+ (*buffer1)->size - (*buffer1)->used, ",%s",
+ (*buffer2)->data);
+ }
+
+ Ja3BufferFree(buffer2);
+
+ return 0;
+}
+
+/**
+ * \internal
+ * \brief Return number of digits in number.
+ *
+ * \param num The number.
+ *
+ * \return digits Number of digits.
+ */
+static uint32_t NumberOfDigits(uint32_t num)
+{
+ if (num < 10) {
+ return 1;
+ }
+
+ return 1 + NumberOfDigits(num / 10);
+}
+
+/**
+ * \brief Add value to buffer.
+ *
+ * \param buffer The buffer.
+ * \param value The value.
+ *
+ * \retval 0 on success.
+ * \retval -1 on failure.
+ */
+int Ja3BufferAddValue(JA3Buffer **buffer, uint32_t value)
+{
+ if (*buffer == NULL) {
+ SCLogError("Buffer should not be NULL");
+ return -1;
+ }
+
+ if ((*buffer)->data == NULL) {
+ (*buffer)->data = SCMalloc(JA3_BUFFER_INITIAL_SIZE);
+ if ((*buffer)->data == NULL) {
+ SCLogError("Error allocating memory for JA3 data");
+ Ja3BufferFree(buffer);
+ return -1;
+ }
+ (*buffer)->size = JA3_BUFFER_INITIAL_SIZE;
+ }
+
+ uint32_t value_len = NumberOfDigits(value);
+
+ int rc = Ja3BufferResizeIfFull(*buffer, value_len);
+ if (rc != 0) {
+ Ja3BufferFree(buffer);
+ return -1;
+ }
+
+ if ((*buffer)->used == 0) {
+ (*buffer)->used += snprintf((*buffer)->data, (*buffer)->size, "%u", value);
+ }
+ else {
+ (*buffer)->used += snprintf(
+ (*buffer)->data + (*buffer)->used, (*buffer)->size - (*buffer)->used, "-%u", value);
+ }
+
+ return 0;
+}
+
+/**
+ * \brief Generate Ja3 hash string.
+ *
+ * \param buffer The Ja3 buffer.
+ *
+ * \retval pointer to hash string on success.
+ * \retval NULL on failure.
+ */
+char *Ja3GenerateHash(JA3Buffer *buffer)
+{
+ if (buffer == NULL) {
+ SCLogError("Buffer should not be NULL");
+ return NULL;
+ }
+
+ if (buffer->data == NULL) {
+ SCLogError("Buffer data should not be NULL");
+ return NULL;
+ }
+
+ char *ja3_hash = SCMalloc(SC_MD5_HEX_LEN + 1);
+ if (ja3_hash == NULL) {
+ SCLogError("Error allocating memory for JA3 hash");
+ return NULL;
+ }
+
+ SCMd5HashBufferToHex((unsigned char *)buffer->data, buffer->used, ja3_hash, SC_MD5_HEX_LEN + 1);
+ return ja3_hash;
+}
+
+/**
+ * \brief Check if JA3 is disabled.
+ *
+ * Issue warning if JA3 is disabled or if we are lacking support for JA3.
+ *
+ * \param type Type to add to warning.
+ *
+ * \retval 1 if disabled.
+ * \retval 0 otherwise.
+ */
+int Ja3IsDisabled(const char *type)
+{
+ bool is_enabled = SSLJA3IsEnabled();
+ if (is_enabled == 0) {
+ if (strcmp(type, "rule") != 0) {
+ SCLogWarning("JA3 is disabled, skipping %s", type);
+ }
+ return 1;
+ }
+
+ return 0;
+}
+
+InspectionBuffer *Ja3DetectGetHash(DetectEngineThreadCtx *det_ctx,
+ const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
+ const int list_id)
+{
+ InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
+ if (buffer->inspect == NULL) {
+ uint32_t b_len = 0;
+ const uint8_t *b = NULL;
+
+ if (rs_quic_tx_get_ja3(txv, &b, &b_len) != 1)
+ return NULL;
+ if (b == NULL || b_len == 0)
+ return NULL;
+
+ uint8_t ja3_hash[SC_MD5_HEX_LEN + 1];
+ // this adds a final zero
+ SCMd5HashBufferToHex(b, b_len, (char *)ja3_hash, SC_MD5_HEX_LEN + 1);
+
+ InspectionBufferSetup(det_ctx, list_id, buffer, NULL, 0);
+ InspectionBufferCopy(buffer, ja3_hash, SC_MD5_HEX_LEN);
+ InspectionBufferApplyTransforms(buffer, transforms);
+ }
+ return buffer;
+}
+
+InspectionBuffer *Ja3DetectGetString(DetectEngineThreadCtx *det_ctx,
+ const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
+ const int list_id)
+{
+ InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
+ if (buffer->inspect == NULL) {
+ uint32_t b_len = 0;
+ const uint8_t *b = NULL;
+
+ if (rs_quic_tx_get_ja3(txv, &b, &b_len) != 1)
+ return NULL;
+ if (b == NULL || b_len == 0)
+ return NULL;
+
+ InspectionBufferSetup(det_ctx, list_id, buffer, b, b_len);
+ InspectionBufferApplyTransforms(buffer, transforms);
+ }
+ return buffer;
+}