We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81984f2 commit 87c2702Copy full SHA for 87c2702
1 file changed
samples/threat_graph/threat_finder.py
@@ -399,7 +399,7 @@ def display_findings(self) -> None:
399
if proc.get('details'):
400
d = proc['details']
401
print(f"\n\t\t\tProcess: {d.get('image_file', 'Unknown')}")
402
- print(f"\t\t\t\tCommand Line: {d.get('command_line', 'N/A')[:50] + "..."}")
+ print(f"\t\t\t\tCommand Line: {d.get('command_line', 'N/A')[:50] + '...'}")
403
print(f"\t\t\t\tUser SID: {d.get('user_sid', 'N/A')}")
404
print(f"\t\t\t\tStart Time: {d.get('start_time', 'N/A')}")
405
print(f"\t\t\t\tSHA256: {d.get('sha256', 'N/A')}")
0 commit comments