Skip to content

Commit e8f62d2

Browse files
committed
Hide non admins in --verbose
1 parent 655c272 commit e8f62d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nxc/modules/presence.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ def print_grouped_results(self, context, admin_users):
244244
for user in scheduled_tasks_users:
245245
context.log.highlight(f"{user['username']} ({', '.join(user['group'])})")
246246
if self.non_admins:
247-
context.log.success(f"Found {len(self.non_admins)} non-admin scheduled tasks with passwords stored in dpapi:")
247+
context.log.info(f"Found {len(self.non_admins)} non-admin scheduled tasks:")
248248
for sid in self.non_admins:
249-
context.log.highlight(sid)
249+
context.log.info(sid)
250250

251251
# Making this less verbose to better scan large ranges
252252
if not dir_users and not tasklist_users:

0 commit comments

Comments
 (0)