forked from Velocidex/velociraptor
-
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.
- Artifacts can now express many tables, each with their own name and description. - Descriptions can be formatted using go templates. It is possible to express additional queries of the same artifact within the description. This allows the text description to present highlights of the main artifact collected.
- Loading branch information
Showing
32 changed files
with
1,059 additions
and
398 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Windows.Packs.Persistence | ||
description: | | ||
This artifact pack collects various persistence mechanisms in Windows. | ||
precondition: | ||
SELECT OS from info() where OS = "windows" | ||
|
||
sources: | ||
- name: WMI Event Filters | ||
description: | | ||
{{ DocFrom "Windows.Persistence.PermanentWMIEvents" }} | ||
queries: | ||
- SELECT * FROM Artifact.Windows.Persistence.PermanentWMIEvents() | ||
|
||
- name: Startup Items | ||
description: | | ||
{{ DocFrom "Windows.Sys.StartupItems" }} | ||
queries: | ||
- SELECT * FROM Artifact.Windows.Sys.StartupItems() | ||
|
||
- name: Debug Bootstraping | ||
description: | | ||
{{ DocFrom "Windows.Persistence.Debug" }} | ||
If there are any rows in the table below then executing the | ||
program will also launch the program listed under the Debugger | ||
column. | ||
{{ Query "SELECT Program, Debugger FROM Rows" }} | ||
queries: | ||
- SELECT * FROM Artifact.Windows.Persistence.Debug() |
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
Oops, something went wrong.