Skip to content

Commit

Permalink
chg: [tools] fix the date input from the sigma rules generator
Browse files Browse the repository at this point in the history
  • Loading branch information
adulau committed Aug 20, 2024
1 parent 06368b5 commit 916e9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/sigma/sigma-to-galaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def create_cluster_json(galaxyCluster):
This function finally creates the sigma-cluster.json file with all the information.
"""
with open("sigma-cluster.json", "w") as f:
json.dump(galaxyCluster, f)
json.dump(galaxyCluster, f, default=str)


def parseYaml(inputPath, yamlFile):
Expand Down

0 comments on commit 916e9e3

Please sign in to comment.