Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BatchExamples/DFIRBatch.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Example entry, please follow this format:
| 2.15 | 2025-07-12 | Added Initial User.dat Windows Store UWP and WinSCP Windows Store Artifacts |
| 2.16 | 2025-07-18 | Added More User.dat Windows Store UWP Artifacts - Network Share and WordPad |
| 2.17 | 2025-07-20 | Added ApplicationAssociationToasts and More Office MRU Artifacts |
| 2.18 | 2025-09-01 | Added ConsentStore Artifacts |

# Documentation

Expand Down
108 changes: 107 additions & 1 deletion BatchExamples/DFIRBatch.reb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Description: DFIR RECmd Batch File
Author: Andrew Rathbun
Version: 2.17
Version: 2.18
Id: 6e68cc0b-c945-428b-ab91-c02d91c877b8
Keys:
#
Expand Down Expand Up @@ -2464,6 +2464,112 @@ Keys:
# https://www.cyberfox.blog/tag/rdp-mru/
# https://ir3e.com/chapter-14-other-applications/

# User Activity -> ConsentStore (Global)

-
Description: ConsentStore (Global)
HiveType: SOFTWARE
Category: User Activity
KeyPath: Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*
ValueName: Value
Recursive: true
Comment: "Displays Permissions Set For Applications to Access. Allow, Deny and Prompt"
-
Description: ConsentStore (Global)
HiveType: SOFTWARE
Category: User Activity
KeyPath: Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\*
ValueName: LastUsedTimeStart
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays timestamp of when a permission started being used with a given application"
-
Description: ConsentStore (Global)
HiveType: SOFTWARE
Category: User Activity
KeyPath: Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\NonPackaged\*
ValueName: LastUsedTimeStart
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays timestamp of when a permission started being used with a given application"
-
Description: ConsentStore (Global)
HiveType: SOFTWARE
Category: User Activity
KeyPath: Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\*
ValueName: LastUsedTimeStop
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays the timestamp of when a permission stopped being used with a given application"
-
Description: ConsentStore (Global)
HiveType: SOFTWARE
Category: User Activity
KeyPath: Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\NonPackaged\*
ValueName: LastUsedTimeStop
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays the timestamp of when a permission stopped being used with a given application"

# https://www.cyberengage.org/post/registry-system-configiuration-tracking-microphone-and-camera-usage-in-windows-program-execution

# User Activity -> ConsentStore (User)

-
Description: ConsentStore (User)
HiveType: NTUSER
Category: User Activity
KeyPath: Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*
ValueName: Value
Recursive: true
Comment: "Displays Permissions Set For Applications to Access. Allow, Deny and Prompt"
-
Description: ConsentStore (User)
HiveType: NTUSER
Category: User Activity
KeyPath: Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\*
ValueName: LastUsedTimeStart
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays timestamp of when a permission started being used with a given application"
-
Description: ConsentStore (User)
HiveType: NTUSER
Category: User Activity
KeyPath: Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\NonPackaged\*
ValueName: LastUsedTimeStart
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays timestamp of when a permission started being used with a given application"
-
Description: ConsentStore (User)
HiveType: NTUSER
Category: User Activity
KeyPath: Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\*
ValueName: LastUsedTimeStop
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays the timestamp of when a permission stopped being used with a given application"
-
Description: ConsentStore (User)
HiveType: NTUSER
Category: User Activity
KeyPath: Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\*\NonPackaged\*
ValueName: LastUsedTimeStop
IncludeBinary: true
BinaryConvert: FILETIME
Recursive: false
Comment: "Displays the timestamp of when a permission stopped being used with a given application"

# https://www.cyberengage.org/post/registry-system-configiuration-tracking-microphone-and-camera-usage-in-windows-program-execution

# --------------------
# AUTORUNS
# --------------------
Expand Down
Loading