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 branch 'EricZimmerman:master' into master
- Loading branch information
Showing
42 changed files
with
466 additions
and
101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ gkape.exe | |
*.cli | ||
.DS_Store | ||
*.swp | ||
*ConsoleLog.txt |
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,18 @@ | ||
Description: 'Ese2csv: Parsing SRUM Database' | ||
Category: SRUMDatabase | ||
Author: Max Ye | ||
Version: 1.0 | ||
Id: 852b64c1-fd0e-47ec-8aa4-0994dbf5d8d1 | ||
BinaryUrl: https://github.com/MarkBaggett/ese-analyst/archive/master.zip | ||
ExportFormat: csv | ||
Processors: | ||
- | ||
Executable: ese-analyst\ese2csv.exe | ||
CommandLine: -o %destinationDirectory% -p srudb_plugin --plugin-args "%sourceDirectory%\Windows\System32\config\SOFTWARE" -- "%sourceDirectory%\Windows\System32\sru\SRUDB.dat" | ||
ExportFormat: csv | ||
|
||
# Documentation | ||
# https://github.com/MarkBaggett/ese-analyst | ||
# Create a folder "ese-analyst" within the ".\KAPE\Modules\bin" folder | ||
# Place both files "ese2csv.exe" and "srudb_plugin.py" into ".\KAPE\Modules\bin\ese-analyst" | ||
# When using this Module, the Module source should be set to OS drive root directory (e.g. C:\), because parameters use absolute paths |
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,21 @@ | ||
Description: 'Mplog-Parser: parses Microsoft Protection log files into CSV files' | ||
Category: Antivirus | ||
Author: Thomas DIOT (Qazeer) | ||
Version: 1.0 | ||
Id: 6084c8ab-2059-41a4-89f4-dba2cfdb4bb4 | ||
BinaryUrl: https://github.com/Qazeer/mplog_parser-compiled/releases/download/v1.0/mplog_parser.exe | ||
ExportFormat: csv | ||
Processors: | ||
- | ||
Executable: mplog_parser.exe | ||
CommandLine: -d "%SourceDirectory%\ProgramData\Microsoft\Windows Defender\Support" -o "%destinationDirectory%" | ||
ExportFormat: csv | ||
|
||
# Documentation | ||
# Mplog-Parser parses Microsoft Protection log files into a number of CSV files. | ||
# mplog_parser source: https://github.com/Intrinsec/mplog_parser | ||
# Compiled version: https://github.com/Qazeer/mplog_parser-compiled | ||
# Information on Windows Defender MPLog: | ||
# https://www.crowdstrike.com/blog/how-to-use-microsoft-protection-logging-for-forensic-investigations/ | ||
# https://www.intrinsec.com/hunt-mplogs/ | ||
# https://artefacts.help/windows_defender_support_logs.html |
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
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
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
14 changes: 14 additions & 0 deletions
14
Modules/Windows/Powershell_Wireless_Network_Connections.mkape
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,14 @@ | ||
Description: Extract Wireless Network Connections details via powershell | ||
Category: LiveResponse | ||
Author: Vito Alfano | ||
Version: 1.0 | ||
Id: 5021953e-b8b8-482d-8d23-a0f901dff84d | ||
ExportFormat: txt | ||
Processors: | ||
- | ||
Executable: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe | ||
CommandLine: -Command "(netsh wlan show profiles) | Select-String “\:(.+)$” | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | % {(netsh wlan show profile name=”$name” key=clear)} | Select-String “Key Content\W+\:(.+)$” | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ SSID=$name;PASSWORD=$pass }} | Format-Table -AutoSize > %destinationDirectory%\Wireless_Network.txt" | ||
ExportFormat: txt | ||
|
||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Description: MegaSync Data Collection | ||
Author: Vito Alfano | ||
Version: 1.0 | ||
Id: a6c7f66e-b37c-4895-98c3-4eb9775623cf | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: MegaSync Folder | ||
Category: ApplicationLogs | ||
Path: C:\Users\%user%\AppData\Local\Mega Limited\MEGAsync\ | ||
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,54 @@ | ||
Description: Net Monitor for Employees Pro | ||
Author: Tristan PINCEAUX - CERT CWATCH - ALMOND | ||
Version: 1.0 | ||
Id: f944d8e5-e7c6-49ac-9c26-b1360fa518cc | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: Net Monitor Server Logs | ||
Category: ApplicationLogs | ||
Path: C:\ProgramData\Net Monitor for Employees Pro\log\%user%\ | ||
Recursive: true | ||
Comment: "Contains Net Monitor server logs" | ||
|
||
- | ||
Name: Net Monitor Server Data | ||
Category: Communication | ||
Path: C:\ProgramData\Net Monitor for Employees Pro\data\ | ||
Recursive: true | ||
Comment: "Contains Net Monitor server data - Indicates what have been seen as the attacker" | ||
|
||
- | ||
Name: Net Monitor Server Config | ||
Category: Apps | ||
Path: C:\ProgramData\Net Monitor for Employees Pro\config\ | ||
Recursive: true | ||
Comment: "Contains Net Monitor server config" | ||
|
||
- | ||
Name: Net Monitor Server Temp Folder | ||
Category: Apps | ||
Path: C:\ProgramData\Net Monitor for Employees Pro\tmp\ | ||
Recursive: true | ||
|
||
- | ||
Name: Net Monitor Client Logs | ||
Category: ApplicationLogs | ||
Path: C:\Program Files*\Net Monitor for Employees Pro\log\ | ||
Recursive: true | ||
Comment: "Contains Net Monitor client logs" | ||
|
||
- | ||
Name: Net Monitor Client Config | ||
Category: ApplicationLogs | ||
Path: C:\Program Files*\Net Monitor for Employees Pro\config\ | ||
Recursive: true | ||
Comment: "Contains Net Monitor client config" | ||
|
||
# Documentation | ||
# https://networklookout.com/ | ||
# https://networklookout.com/doc/NetMonitorForEmployees.pdf | ||
# Net Monitor for employees is a monitoring software for office, that allows live screen monitoring and employee activity tracking. | ||
# It can be used as remote access tool, to control applications and processes, to fetch and drop files on target, and to deploy further malicious binaries. | ||
# It can also be used as a keylogger to collect further credentials on compromised targets. | ||
# We have seen this tool used in financial scam and data theft. |
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,24 @@ | ||
Description: Notion Note-Taking App | ||
Author: Thomas Burnette | ||
Version: 1.0 | ||
Id: 95afe81f-6301-4a7f-996b-c69443e7c2d9 | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: Notion Local Storage | ||
Category: App | ||
Path: C:\Users\%user%\AppData\Roaming\Notion | ||
FileMask: 'notion.db' | ||
Comment: "Local storage file containing all pages, databases, users, etc." | ||
- | ||
Name: Notion Custom Dictionary | ||
Category: App | ||
Path: C:\Users\%user%\AppData\Roaming\Notion\Partitions\notion | ||
FileMask: 'Custom Dictionary.txt' | ||
|
||
# Documentation | ||
# https://www.notion.so/ | ||
# Notion is a freemium productivity and note-taking app. It includes organizational tools such as task management, project tracking, to-do lists, and bookmarking. | ||
# When using the Notion app for Windows, Notion stores all pages, users, databases, etc. in a SQLite database, notion.db. | ||
# This includes creation and modification timestamps for all entries. | ||
# Additionally, Notion stores the user's Custom Dictionary in a text 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,17 @@ | ||
Description: Rclone config file | ||
Author: Eric Capuano | ||
Version: 1.0 | ||
Id: 639f9e55-1ee1-4af4-be7c-e6303ffb4b0c | ||
RecreateDirectories: true | ||
Targets: | ||
- | ||
Name: Rclone Config | ||
Category: Apps | ||
Path: C:\ | ||
FileMask: 'rclone.conf' | ||
Recursive: true | ||
|
||
# Documentation | ||
# Rclone is a popular exfil tool that supports many cloud storage services | ||
# | ||
# https://research.nccgroup.com/2021/05/27/detecting-rclone-an-effective-tool-for-exfiltration/ |
Oops, something went wrong.