-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for yaml file with regex search
- Loading branch information
1 parent
b665abc
commit f9a5f9b
Showing
14 changed files
with
68 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dirname: BROWSER/CHROME | ||
files: | ||
- C:\\Users\\.+\\AppData\\Local\\Google\\Chrome\\User Data\\.*\\Bookmarks* | ||
- C:\\Users\\.+\\AppData\\Local\\Google\\Chrome\\User Data\\.*\\(Bookmarks|Cookies|Current Session|Current Tabs|DownloadMetadata|Extension Cookies|Favicons|History|Last Session|Last Tabs|Login Data|Media History|Network Action Predictor|Network Persistent State|Preferences|QuotaManager|Reporting and NEL|Shortcuts|Top Sites|Trust Tokens|Visited Links|Web Data)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dirname: BROWSER/EDGE | ||
files: | ||
- C:\\Users\\.+\\AppData\\Local\\Packages\\Microsoft\.MicrosoftEdge_8wekyb3d8bbwe\\.+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
dirname: BROWSER/FIREFOX | ||
files: | ||
- C:\\Users\\.+\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\.+\\addons\.sqlite* | ||
- C:\\Users\\.+\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\.+\\weave\\bookmarks\.sqlite* | ||
- C:\\Users\\.+\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\.+\\(cookies|firefox_cookies|downloads|favicons|formhistory|permissions|places|protections|search|signons|webappstore|storage-sync)\.sqlite* | ||
- C:\\Users\\.+\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\.+\\(extensions|logins)\.json* | ||
- C:\\Users\\.+\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\.+\\key*.+\.db | ||
- C:\\Users\\.+\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\.+\\prefs\.js$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
dirname: BROWSER/IE | ||
files: | ||
- C:\\Documents and Settings\\.+\\Local Settings\\History\\History\.IE5\\index\.dat$ | ||
- C:\\Documents and Settings\\.+\\Local Settings\\History\\History\.IE5\\.+\\index\.dat$ | ||
- C:\\Documents and Settings\\.+\\Cookies\\index\.dat$ | ||
- C:\\Users\\.+\\AppData\\Local\\Microsoft\\Windows\\History\\.+ | ||
- C:\\Users\\.+\\AppData\\Local\\Microsoft\\Windows\\Cookies\\.+ | ||
- C:\\Users\\.+\\AppData\\Local\\Microsoft\\Windows\\IEDownloadHistory\\.+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dirname: EVENTS | ||
files: | ||
- C:\\Windows\\System32\\config\\.+\.evt$ | ||
- C:\\Windows\\System32\\winevt\\Logs\\.+\.evtx$ | ||
- C:\\Windows.old\\System32\\winevt\\Logs\\.+\.evtx$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dirname: PREFETCH | ||
files: | ||
- C:\\Windows\\Prefetch\\.+\.pf$ | ||
- C:\\Windows.old\\Prefetch\\.+\.pf$ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
dirname: REGISTRY_SYSTEM | ||
files: | ||
- C:\\Windows\\System32\\config\\SAM* | ||
- C:\\Windows\\System32\\config\\SYSTEM* | ||
- C:\\Windows\\System32\\config\\SOFTWARE* | ||
- C:\\Windows\\System32\\config\\SECURITY* | ||
- C:\\Windows\\System32\\config\\DEFAULT* | ||
- C:\\Windows\\System32\\config\\systemprofile\\NTUSER\.DAT* | ||
- C:\\Windows\\ServiceProfiles\\LocalService\\NTUSER\.DAT* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dirname: REGISTRY_USER | ||
files: | ||
- C:\\Users\\.+\\AppData\\Local\\Microsoft\\Windows\\UsrClass\.dat* | ||
- C:\\Users\\.+\\NTUSER.DAT* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters