From 7edc618603627441efc3f19257c63fd56b86fdcc Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Mon, 29 Dec 2025 17:32:17 +0000 Subject: [PATCH 1/7] Delete Minibuf Files to allow cloning repo on Windows --- docs/content/docs/rules/ *Minibuf-1* | 1 - docs/content/docs/rules/# *Minibuf-1*# | 1 - 2 files changed, 2 deletions(-) delete mode 100644 docs/content/docs/rules/ *Minibuf-1* delete mode 100644 docs/content/docs/rules/# *Minibuf-1*# diff --git a/docs/content/docs/rules/ *Minibuf-1* b/docs/content/docs/rules/ *Minibuf-1* deleted file mode 100644 index ee5657d..0000000 --- a/docs/content/docs/rules/ *Minibuf-1* +++ /dev/null @@ -1 +0,0 @@ -Directory ‘/home/mic/projects/registry-hunter/docs/content/rules/’ does not exist; create? (y or n) \ No newline at end of file diff --git a/docs/content/docs/rules/# *Minibuf-1*# b/docs/content/docs/rules/# *Minibuf-1*# deleted file mode 100644 index ee5657d..0000000 --- a/docs/content/docs/rules/# *Minibuf-1*# +++ /dev/null @@ -1 +0,0 @@ -Directory ‘/home/mic/projects/registry-hunter/docs/content/rules/’ does not exist; create? (y or n) \ No newline at end of file From b52558836c8118836e6e39347d0e749c8b5c8344 Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Mon, 29 Dec 2025 17:47:17 +0000 Subject: [PATCH 2/7] Fix Firefox Dev Profiles and add Chromium macOS. Spelling Fixes --- bin/config.yaml | 3 ++- compile/template.yaml | 4 ++-- definitions/Firefox_Bookmarks.yaml | 2 +- definitions/Firefox_Cookies.yaml | 2 +- definitions/Firefox_Downloads.yaml | 2 +- definitions/Firefox_Favicons.yaml | 2 +- definitions/Firefox_FormHistory.yaml | 2 +- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/bin/config.yaml b/bin/config.yaml index 3cc4df8..02a785e 100644 --- a/bin/config.yaml +++ b/bin/config.yaml @@ -13,10 +13,11 @@ Globs: - /Users/*/Library/Application Support/BraveSoftware/Brave*/ - /Users/*/Library/Application Support/Google/Chrome/ - /Users/*/Library/Application Support/Microsoft Edge/ + - /Users/*/Library/Application Support/Chromium/ WindowsFirefoxProfiles: - C:\Users\*\AppData\{Roaming,Local}\Mozilla\Firefox\Profiles LinuxFirefoxProfiles: - /home/*/.mozilla/firefox/*.default* - /home/*/snap/firefox/common/.mozilla/firefox/*.default* MacOSFirefoxProfiles: - - /Users/*/Library/Application Support/Firefox/Profiles/*.default* + - /Users/*/Library/Application Support/Firefox/Profiles diff --git a/compile/template.yaml b/compile/template.yaml index cdfef08..c1c12d8 100644 --- a/compile/template.yaml +++ b/compile/template.yaml @@ -93,7 +93,7 @@ parameters: - name: MatchFilename description: | If set we use the filename to detect the type of sqlite file. - When unset we use heristics (slower) + When unset we use heuristics (slower) type: bool default: Y @@ -116,7 +116,7 @@ parameters: default: . - name: All - description: Select all tagrgets + description: Select all targets type: bool default: Y diff --git a/definitions/Firefox_Bookmarks.yaml b/definitions/Firefox_Bookmarks.yaml index b5705f6..64dff46 100644 --- a/definitions/Firefox_Bookmarks.yaml +++ b/definitions/Firefox_Bookmarks.yaml @@ -17,7 +17,7 @@ FilenameRegex: "places.sqlite" Globs: - "{{WindowsFirefoxProfiles}}/*/places.sqlite" - "{{LinuxFirefoxProfiles}}/places.sqlite" - - "{{MacOSFirefoxProfiles}}/places.sqlite" + - "{{MacOSFirefoxProfiles}}/*/places.sqlite" Sources: - Preamble: | diff --git a/definitions/Firefox_Cookies.yaml b/definitions/Firefox_Cookies.yaml index 178f2d7..c76d90a 100644 --- a/definitions/Firefox_Cookies.yaml +++ b/definitions/Firefox_Cookies.yaml @@ -16,7 +16,7 @@ FilenameRegex: "cookies.sqlite" Globs: - "{{WindowsFirefoxProfiles}}/*/cookies.sqlite" - "{{LinuxFirefoxProfiles}}/cookies.sqlite" - - "{{MacOSFirefoxProfiles}}/cookies.sqlite" + - "{{MacOSFirefoxProfiles}}/*/cookies.sqlite" Sources: - VQL: | diff --git a/definitions/Firefox_Downloads.yaml b/definitions/Firefox_Downloads.yaml index 5fdb28c..0bbcb73 100644 --- a/definitions/Firefox_Downloads.yaml +++ b/definitions/Firefox_Downloads.yaml @@ -16,7 +16,7 @@ FilenameRegex: "downloads.sqlite" Globs: - "{{WindowsFirefoxProfiles}}/*/downloads.sqlite" - "{{LinuxFirefoxProfiles}}/downloads.sqlite" - - "{{MacOSFirefoxProfiles}}/downloads.sqlite" + - "{{MacOSFirefoxProfiles}}/*/downloads.sqlite" Sources: - VQL: | diff --git a/definitions/Firefox_Favicons.yaml b/definitions/Firefox_Favicons.yaml index a9fdb01..0ed9a7a 100644 --- a/definitions/Firefox_Favicons.yaml +++ b/definitions/Firefox_Favicons.yaml @@ -16,7 +16,7 @@ FilenameRegex: "favicons.sqlite" Globs: - "{{WindowsFirefoxProfiles}}/*/favicons.sqlite" - "{{LinuxFirefoxProfiles}}/favicons.sqlite" - - "{{MacOSFirefoxProfiles}}/favicons.sqlite" + - "{{MacOSFirefoxProfiles}}/*/favicons.sqlite" Sources: - VQL: | diff --git a/definitions/Firefox_FormHistory.yaml b/definitions/Firefox_FormHistory.yaml index 8e68769..0f1497e 100644 --- a/definitions/Firefox_FormHistory.yaml +++ b/definitions/Firefox_FormHistory.yaml @@ -17,7 +17,7 @@ FilenameRegex: "formhistory.sqlite" Globs: - "{{WindowsFirefoxProfiles}}/*/formhistory.sqlite" - "{{LinuxFirefoxProfiles}}/formhistory.sqlite" - - "{{MacOSFirefoxProfiles}}/formhistory.sqlite" + - "{{MacOSFirefoxProfiles}}/*/formhistory.sqlite" Sources: - VQL: | From b2fa9968b513bfcd13c82c9483314ad0122fda3f Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Mon, 29 Dec 2025 18:58:59 +0000 Subject: [PATCH 3/7] Add Edge Beta, Canary and Dev macOS --- bin/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/config.yaml b/bin/config.yaml index 02a785e..cf9adc6 100644 --- a/bin/config.yaml +++ b/bin/config.yaml @@ -13,6 +13,9 @@ Globs: - /Users/*/Library/Application Support/BraveSoftware/Brave*/ - /Users/*/Library/Application Support/Google/Chrome/ - /Users/*/Library/Application Support/Microsoft Edge/ + - /Users/*/Library/Application Support/Microsoft Edge Beta/ + - /Users/*/Library/Application Support/Microsoft Edge Canary/ + - /Users/*/Library/Application Support/Microsoft Edge Dev/ - /Users/*/Library/Application Support/Chromium/ WindowsFirefoxProfiles: - C:\Users\*\AppData\{Roaming,Local}\Mozilla\Firefox\Profiles From f3440c16b5cac88260a93980f7d109025c4b9967 Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Mon, 29 Dec 2025 19:29:03 +0000 Subject: [PATCH 4/7] Add Chrome Beta, Canary and Dev macOS --- bin/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/config.yaml b/bin/config.yaml index cf9adc6..2b126f7 100644 --- a/bin/config.yaml +++ b/bin/config.yaml @@ -12,6 +12,9 @@ Globs: MacOSChromeProfiles: - /Users/*/Library/Application Support/BraveSoftware/Brave*/ - /Users/*/Library/Application Support/Google/Chrome/ + - /Users/*/Library/Application Support/Google/Chrome Beta/ + - /Users/*/Library/Application Support/Google/Chrome Canary/ + - /Users/*/Library/Application Support/Google/Chrome Dev/ - /Users/*/Library/Application Support/Microsoft Edge/ - /Users/*/Library/Application Support/Microsoft Edge Beta/ - /Users/*/Library/Application Support/Microsoft Edge Canary/ From ae5786d0427412f783d0f7793bb0077cd51b838e Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Tue, 30 Dec 2025 11:52:48 +0000 Subject: [PATCH 5/7] Add Edge Beta, Canary and Dev Windows --- bin/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/config.yaml b/bin/config.yaml index 2b126f7..4d3ed46 100644 --- a/bin/config.yaml +++ b/bin/config.yaml @@ -8,6 +8,9 @@ Globs: - C:\Users\*\AppData\{Roaming,Local}/BraveSoftware/Brave*/User Data - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge/User Data + - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge SxS/User Data + - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge Beta/User Data + - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge Dev/User Data - C:\Users\*\AppData\{Roaming,Local}\Opera Software\Opera Stable\ MacOSChromeProfiles: - /Users/*/Library/Application Support/BraveSoftware/Brave*/ From f108fd007e481ec5d59fceb67a28ec14369f8fac Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:33:17 +0000 Subject: [PATCH 6/7] Add Chrome Beta, Canary and Dev Windows --- bin/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/config.yaml b/bin/config.yaml index 4d3ed46..6d85d2e 100644 --- a/bin/config.yaml +++ b/bin/config.yaml @@ -7,6 +7,9 @@ Globs: WindowsChromeProfiles: - C:\Users\*\AppData\{Roaming,Local}/BraveSoftware/Brave*/User Data - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome/User Data + - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome SxS/User Data + - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome Beta/User Data + - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome Dev/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge SxS/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge Beta/User Data From 132a687947d24573367ea76e291a80da46d04d09 Mon Sep 17 00:00:00 2001 From: reece394 <31659691+reece394@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:47:04 +0000 Subject: [PATCH 7/7] Add Chromium Windows --- bin/config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/config.yaml b/bin/config.yaml index 6d85d2e..2804ec3 100644 --- a/bin/config.yaml +++ b/bin/config.yaml @@ -10,6 +10,7 @@ Globs: - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome SxS/User Data - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome Beta/User Data - C:\Users\*\AppData\{Roaming,Local}/Google/Chrome Dev/User Data + - C:\Users\*\AppData\{Roaming,Local}/Chromium/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge SxS/User Data - C:\Users\*\AppData\{Roaming,Local}/Microsoft/Edge Beta/User Data