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.
Updated starl VQL plugins. (Velocidex#1114)
- Loading branch information
Showing
6 changed files
with
246 additions
and
238 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"000/000 Starlark Module Materialized: LET X\u003c=starl(code=StarCode)": null, | ||
"000/001 Starlark Module Materialized: SELECT X.Foo(X=2), X.SomeInt, X.Foo, X.SomeInt(X=1) FROM scope()": [ | ||
{ | ||
"X.Foo(X=2)": 4, | ||
"X.SomeInt": 2, | ||
"X.Foo": null, | ||
"X.SomeInt(X=1)": null | ||
} | ||
], | ||
"001/000 Starlark Module: LET X=starl(code=StarCode)": null, | ||
"001/001 Starlark Module: SELECT X.Foo(X=2), X.SomeInt, X.Foo, X.SomeInt(X=1) FROM scope()": [ | ||
{ | ||
"X.Foo(X=2)": 4, | ||
"X.SomeInt": 2, | ||
"X.Foo": null, | ||
"X.SomeInt(X=1)": null | ||
} | ||
], | ||
"002/000 Starlark types: LET X=starl(code=StarCode)": null, | ||
"002/001 Starlark types: SELECT X.Foo(X=2, Y=\"String\", Z= [2, 3]) FROM scope()": [ | ||
{ | ||
"X.Foo(X=2, Y=\"String\", Z= [2, 3])": [ | ||
4, | ||
"StringA", | ||
[ | ||
1, | ||
2, | ||
3 | ||
] | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.