Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions credmaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,15 @@ def Execute(self, args):
if self.userenum:
notify.notify_update("Info: Starting Userenum.", self.notify_obj)
else:
notify.notify_update(f"Info: Starting Spray.\nPass: {password}", self.notify_obj)

if self.notify_obj['exclude_password']:
notify.notify_update(f"Info: Starting Spray ({self.passwordfile or self.userpassfile}).\nPassword #: {time_count} of {len(passwords)}", self.notify_obj)
else:
notify.notify_update(f"Info: Starting Spray.\nPass: {password}", self.notify_obj)
else:
notify.notify_update(f"Info: Spray Continuing.\nPass: {password}", self.notify_obj)
if self.notify_obj['exclude_password']:
notify.notify_update(f"Info: Spray Continuing ({self.passwordfile or self.userpassfile}).\nPassword #: {time_count} of {len(passwords)}", self.notify_obj)
else:
notify.notify_update(f"Info: Spray Continuing.\nPass: {password}", self.notify_obj)

if self.weekdaywarrior is not None:
spray_days = {
Expand Down