Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dorian-bucaille committed Feb 20, 2022
1 parent 693393e commit d8db556
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/common/online.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,17 +363,17 @@ int main(int argc, char *argv[]) {

if (argc < 5) {
printf("Error: not enough arguments given.\nUsage: 'online startpath endpath -p password', where:"
"\n - startpath is ABSOLUTE path to the start points file."
"\n - endpath is ABSOLUTE path to the end points file."
"\n - startpath is the path to the start points file."
"\n - endpath is the path to the end points file."
"\n - password is the plain text password you're looking to crack. The program will thus hash it first, then try to crack it."
"\nOther usage: 'online startpath endpath -h hash', where hash is the NTLM hash you're looking to crack.\n\n");
exit(1);
}

if (argc > 5) {
printf("Error: too many arguments given.\nUsage: 'online startpath endpath -p password', where:"
"\n - startpath is ABSOLUTE path to the start points file."
"\n - endpath is ABSOLUTE path to the end points file."
"\n - startpath is the path to the start points file."
"\n - endpath is the path to the end points file."
"\n - password is the plain text password you're looking to crack. The program will thus hash it first, then try to crack it."
"\nOther usage: 'online startpath endpath -h hash', where hash is the NTLM hash you're looking to crack.\n\n");
exit(1);
Expand Down

0 comments on commit d8db556

Please sign in to comment.