We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca8fa1b commit 586c79fCopy full SHA for 586c79f
1 file changed
osquery/table_plugin.py
@@ -39,7 +39,7 @@ def call(self, context):
39
if context["action"] == "generate":
40
ctx = {}
41
if "context" in context:
42
- ctx = json.dumps(context["context"])
+ ctx = json.loads(context["context"])
43
rows = self.generate(ctx)
44
for i, row in enumerate(rows):
45
for key, value in row.items():
0 commit comments