We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2505be4 commit 1865d42Copy full SHA for 1865d42
1 file changed
nxc/protocols/smb.py
@@ -1094,7 +1094,7 @@ def format_row(procInfo):
1094
# If args.tasklist is not True then a process name was supplied
1095
if self.args.tasklist is not True:
1096
# So we look for it and print its information if found
1097
- if self.args.tasklist.lower() == procInfo["ImageName"].lower():
+ if self.args.tasklist.lower() in procInfo["ImageName"].lower():
1098
found_task = True
1099
self.logger.highlight(format_row(procInfo))
1100
# Else, no process was supplied, we print the entire list of remote processes
0 commit comments