Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Altice/Optimum candidates and add 2 new patterns #350

Merged
merged 1 commit into from
Jan 22, 2025
Merged
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: 6 additions & 5 deletions hcxpsktool.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,11 +803,12 @@ static const char *word[] =
"lavender", "lemon", "lime", "linen",
"magenta", "maroon", "mauve",
"navy",
"olive", "orange", "orchid",
"ochre", "olive", "orange", "orchid",
"peach", "periwinkle", "pewter", "pink", "plum", "purple",
"rose",
"sage", "sepia", "sienna", "silver", "slate",
"taupe", "teal", "turquoise"
"taupe", "teal", "turquoise",
"umber"
};

for (i = 0; i < 1000000; i++)
Expand All @@ -816,7 +817,7 @@ for (i = 0; i < 1000000; i++)
for (w = 0; w < (sizeof(word) / sizeof(char *)); w++ )
{
// 2-4
//fprintf(fhout, "%s-%.2s-%.4s\n", word[w], si, si+2);
fprintf(fhout, "%s-%.2s-%.4s\n", word[w], si, si+2);
fprintf(fhout, "%.2s-%s-%.4s\n", si, word[w], si+2);
fprintf(fhout, "%.2s-%.4s-%s\n", si, si+2, word[w]);
// 3-3
Expand All @@ -826,7 +827,7 @@ for (i = 0; i < 1000000; i++)
// 4-2
fprintf(fhout, "%s-%.4s-%.2s\n", word[w], si, si+4);
fprintf(fhout, "%.4s-%s-%.2s\n", si, word[w], si+4);
//fprintf(fhout, "%.4s-%.2s-%s\n", si, si+4, word[w]);
fprintf(fhout, "%.4s-%.2s-%s\n", si, si+4, word[w]);
}
}

Expand Down Expand Up @@ -2870,7 +2871,7 @@ fprintf(stdout, "%s %s (C) %s ZeroBeat\n"
"--eeupper : include weak EE-Hub candidates\n"
" list will be > 3.8GB\n"
"--alticeoptimum : include weak Altice/Optimum candidates (MyAltice, MyOptimum)\n"
" list will be > 4.6GB\n"
" list will be > 6.3GB\n"
"--asus : include weak ASUS RT-AC candidates (ASUS_XX, RT-AC)\n"
"--weakpass : include weak password candidates\n"
"--eudate : include complete european dates\n"
Expand Down
Loading