forked from EricZimmerman/KapeFiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request EricZimmerman#851 from Zawadidone/feature/add_wind…
…ows_modules_and_paths Add new Windows Targets and paths
- Loading branch information
Showing
11 changed files
with
138 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
Description: PowerShell Console Log File | ||
Author: Mike Cary | ||
Version: 1.0 | ||
Version: 1.1 | ||
Id: efa4332a-89eb-430c-ab61-006a9e6620d7 | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: PowerShell Console Log | ||
Category: PowerShellConsoleLog | ||
Path: C:\Users\%user%\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadline\ | ||
FileMask: ConsoleHost_history.txt | ||
FileMask: '*_history.txt' | ||
|
||
# Documentation | ||
# https://community.sophos.com/malware/b/blog/posts/powershell-command-history-forensics | ||
# https://darizotas.blogspot.com/2018/10/forensics-powershell-artifacts.html | ||
# https://digital-forensics.sans.org/media/DFPS_FOR508_v4.4_1-19.pdf | ||
# https://www.forensafe.com/blogs/powershell.html | ||
# https://learn.microsoft.com/en-us/powershell/module/psreadline/about/about_psreadline?view=powershell-7.3#command-history |
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,15 @@ | ||
Description: Windows Drivers | ||
Author: Zawadi Done | ||
Version: 1.0 | ||
Id: fc56e4eb-c9e6-481f-9f57-6b24ba8bcbfb | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: Drivers | ||
Category: Drivers | ||
Path: C:\Windows\system32\drivers\ | ||
FileMask: '*.sys' | ||
Recursive: true | ||
|
||
# Documentation | ||
# N/A |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Description: Windows Push Notification Service | ||
Author: Zawadi Done | ||
Version: 1.0 | ||
Id: 49545136-dddd-4255-a5b5-c977bb72fded | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: WNS | ||
Category: WNS | ||
Path: C:\Users\%user\AppData\Local\Microsoft\Windows\Notifications\ | ||
FileMask: appdb.dat | ||
- | ||
Name: WNS | ||
Category: WNS | ||
Path: C:\Users\%user\AppData\Local\Microsoft\Windows\Notifications\ | ||
FileMask: wpndatabase.db | ||
|
||
# Documentation | ||
# https://forensafe.com/blogs/winnotifications.html | ||
# https://learn.microsoft.com/en-us/windows/apps/design/shell/tiles-and-notifications/windows-push-notification-services--wns--overview |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Description: Windows Networks settings | ||
Author: Zawadi Done | ||
Version: 1.0 | ||
Id: aeacb435-8929-4414-b1ee-24d4f7273ea5 | ||
RecreateDirectories: true | ||
Targets: | ||
Name: Network setting files | ||
Category: Misc | ||
Path: C:\windows\system32\drivers\etc | ||
Recursive: true | ||
|
||
# Documentation | ||
# N/A |
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,27 @@ | ||
Description: Windows Server DNS and DHCP log files | ||
Author: Zawadi Done | ||
Version: 1.1 | ||
Id: 2f6dc2b4-cbdf-4a11-807d-da2f885daafd | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: DNS Netlogon files | ||
Category: DNS | ||
Path: C:\Windows\System32\config\ | ||
FileMask: 'netlogon.*' | ||
Recursive: true | ||
- | ||
Name: DNS files | ||
Category: DNS | ||
Path: C:\Windows\System32\dns\ | ||
Recursive: true | ||
- | ||
Name: DHCP files | ||
Category: DHCP | ||
Path: C:\Windows\System32\dhcp | ||
Recursive: true | ||
|
||
# Documentation | ||
# https://windowstechno.com/what-is-netlogon/ | ||
# https://learn.microsoft.com/en-us/troubleshoot/windows-server/networking/verify-srv-dns-records-have-been-created | ||
# https://www.oreilly.com/library/view/windows-server-2008/9780735624375/ch19s06.html |