-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This allows a sigma rule to call arbitrary VQL
- Loading branch information
Showing
9 changed files
with
322 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Server.Import.UpdatedBuiltin | ||
description: | | ||
This artifact allows importing updated versions of some common built | ||
in artifacts. If you do not want to wait for the next full release | ||
you can use this artifact to import a more recent version of some | ||
select artifacts which might include later feature. | ||
NOTE: There is no guarantees that the updated artifact will work on | ||
an older version. Make sure to test properly. | ||
type: SERVER | ||
|
||
required_permissions: | ||
- SERVER_ADMIN | ||
|
||
parameters: | ||
- name: PackageName | ||
type: choices | ||
default: Windows.KapeFiles.Targets | ||
choices: | ||
- Windows.KapeFiles.Targets | ||
- Generic.Forensic.SQLiteHunter | ||
|
||
- name: Prefix | ||
description: Add artifacts with this prefix | ||
default: Updated. | ||
|
||
sources: | ||
- query: | | ||
LET URLlookup = dict( | ||
`Windows.KapeFiles.Targets`="https://raw.githubusercontent.com/Velocidex/velociraptor/master/artifacts/definitions/Windows/KapeFiles/Targets.yaml", | ||
`Generic.Forensic.SQLiteHunter`="https://raw.githubusercontent.com/Velocidex/SQLiteHunter/main/output/SQLiteHunter.yaml" | ||
) | ||
SELECT artifact_set(definition=Content, prefix="Updated.") AS Artifact | ||
FROM http_client(url=get(item=URLlookup, field=PackageName)) | ||
WHERE Response = 200 |
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.