We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c966728 commit fae1430Copy full SHA for fae1430
core/schemas/indicators/yara.py
@@ -312,7 +312,7 @@ def apply_overlays_plyara(
312
item[key] = metadata_overlay[key]
313
remaining.remove(key)
314
315
- for key in remaining:
+ for key in sorted(remaining):
316
parsed_rule_meta.append({key: metadata_overlay[key]})
317
self.pattern = plyara.utils.rebuild_yara_rule(parsed_rule)
318
0 commit comments