From 61295a968ef932cb7d9b0f0f9a3b742feee0b700 Mon Sep 17 00:00:00 2001 From: a3957273 <89583054+a3957273@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:01:48 +0000 Subject: [PATCH] Lower case 'hash' --- src/core/config/Categories.json | 2 +- src/core/operations/ExtractHashes.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index 2d7b30ff..cfbe99e0 100644 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -337,7 +337,7 @@ "Extract domains", "Extract file paths", "Extract dates", - "Extract Hashes", + "Extract hashes", "Regular expression", "XPath expression", "JPath expression", diff --git a/src/core/operations/ExtractHashes.mjs b/src/core/operations/ExtractHashes.mjs index ba31164f..abba0b54 100644 --- a/src/core/operations/ExtractHashes.mjs +++ b/src/core/operations/ExtractHashes.mjs @@ -18,7 +18,7 @@ class ExtractHashes extends Operation { constructor() { super(); - this.name = "Extract Hashes"; + this.name = "Extract hashes"; this.module = "Regex"; this.description = "Extracts potential hashes based on hash character length"; this.infoURL = "https://en.wikipedia.org/wiki/Comparison_of_cryptographic_hash_functions";