Skip to content

Commit 4e11faa

Browse files
author
=
committed
join Tenda, NOVA, NOVE and BrosTrend candidates
1 parent 6ff4bfb commit 4e11faa

File tree

2 files changed

+9
-52
lines changed

2 files changed

+9
-52
lines changed

hcxpsktool.c

+1-43
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ static bool eudateflag;
4040
static bool hb5flag;
4141
static bool maconlyflag;
4242
static bool netgearflag;
43-
static bool novaflag;
4443
static bool noessidcombinationflag;
4544
static bool phomeflag;
4645
static bool podaflag;
@@ -287,39 +286,6 @@ for(ca = 0; ca < (sizeof(firstword) / sizeof(char *)); ca++)
287286
return;
288287
}
289288
/*===========================================================================*/
290-
static void keywritenova(FILE *fhout)
291-
{
292-
static size_t ca;
293-
static int cn;
294-
295-
static const char *firstword[] =
296-
{
297-
"above",
298-
"cafe", "calm", "cash", "child", "come",
299-
"dark", "down", "duck",
300-
"face", "feed", "feel",
301-
"green", "group",
302-
"hair", "have", "hike", "horse", "house",
303-
"jade", "jazz", "juice",
304-
"labor", "lack", "lake", "like", "live", "lock",
305-
"math", "milk",
306-
"nine",
307-
"occur", "ocean", "over",
308-
"pace", "pain", "path", "photo", "piece",
309-
"quest",
310-
"road",
311-
"soup",
312-
"tall", "test",
313-
"water", "what"
314-
};
315-
316-
for(ca = 0; ca < (sizeof(firstword) / sizeof(char *)); ca++)
317-
{
318-
for (cn = 0; cn < 10000; cn++) fprintf(fhout,"%s%04d\n", firstword[ca], cn);
319-
}
320-
return;
321-
}
322-
/*===========================================================================*/
323289
static void keywritespectrum(FILE *fhout)
324290
{
325291
static size_t ca, cs;
@@ -2527,7 +2493,6 @@ if(eeupperflag == true) keywriteee(fhout, true);
25272493
if(egnflag == true) keywriteegn(fhout);
25282494
if(eudateflag == true) keywriteeudate(fhout);
25292495
if(netgearflag == true) keywritenetgear(fhout);
2530-
if(novaflag == true) keywritenova(fhout);
25312496
if(phomeflag == true) keywritephome(fhout);
25322497
if(simpleflag == true) keywritesimple(fhout);
25332498
if(spectrumflag == true) keywritespectrum(fhout);
@@ -2890,14 +2855,13 @@ fprintf(stdout, "%s %s (C) %s ZeroBeat\n"
28902855
"--maconly : print only candidates based on ACCESS POINT MAC\n"
28912856
"--noessidcombination: exclude ESSID combinations\n"
28922857
"--netgear : include weak NETGEAR / ORBI / NTGR_VMB / ARLO_VMB / FoxtelHub candidates\n"
2893-
"--nova : include weak NOVA candidates\n"
28942858
"--spectrum : include weak MySpectrumWiFi / SpectrumSetup / MyCharterWiFi candidates\n"
28952859
" list will be > 2.2GB\n"
28962860
"--digit10 : include weak 10 digit candidates (INFINITUM, ALHN, INEA, VodafoneNet, VIVACOM)\n"
28972861
" list will be > 1GB\n"
28982862
"--phome : include weak PEGATRON / Vantiva candidates (CBCI, HOME, [SP/XF]SETUP)\n"
28992863
" list will be > 2.9GB\n"
2900-
"--tenda : include weak TENDA candidates\n"
2864+
"--tenda : include weak Tenda / NOVA / NOVE / BrosTrend candidates\n"
29012865
"--ee : include weak 5GHz-EE / BrightBox / EE / EE-BrightBox candidates\n"
29022866
" list will be > 1.3GB\n"
29032867
"--eeupper : include weak EE-Hub candidates\n"
@@ -2952,7 +2916,6 @@ eudateflag = false;
29522916
hb5flag = false;
29532917
maconlyflag = false;
29542918
netgearflag = false;
2955-
novaflag = false;
29562919
noessidcombinationflag = false;
29572920
phomeflag = false;
29582921
podaflag = false;
@@ -2977,7 +2940,6 @@ static const struct option long_options[] =
29772940
{"eudate", no_argument, NULL, HCXD_EUDATE},
29782941
{"maconly", no_argument, NULL, HCXD_MACONLY},
29792942
{"netgear", no_argument, NULL, HCXD_NETGEAR},
2980-
{"nova", no_argument, NULL, HCXD_NOVA},
29812943
{"noessidcombination", no_argument, NULL, HCXD_NOESSIDCOMBINATION},
29822944
{"phome", no_argument, NULL, HCXD_PHOME},
29832945
{"simple", no_argument, NULL, HCXD_SIMPLE},
@@ -3007,10 +2969,6 @@ while((auswahl = getopt_long (argc, argv, short_options, long_options, &index))
30072969
netgearflag = true;
30082970
break;
30092971

3010-
case HCXD_NOVA:
3011-
novaflag = true;
3012-
break;
3013-
30142972
case HCXD_SPECTRUM:
30152973
spectrumflag = true;
30162974
break;

include/hcxpsktool.h

+8-9
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@
1313
#define HCXD_EUDATE 7
1414
#define HCXD_MACONLY 8
1515
#define HCXD_NETGEAR 9
16-
#define HCXD_NOVA 10
17-
#define HCXD_NOESSIDCOMBINATION 11
18-
#define HCXD_PHOME 12
19-
#define HCXD_SIMPLE 13
20-
#define HCXD_SPECTRUM 14
21-
#define HCXD_TENDA 15
22-
#define HCXD_USDATE 16
23-
#define HCXD_WEAKPASS 17
24-
#define HCXD_WPSKEYS 18
16+
#define HCXD_NOESSIDCOMBINATION 10
17+
#define HCXD_PHOME 11
18+
#define HCXD_SIMPLE 12
19+
#define HCXD_SPECTRUM 13
20+
#define HCXD_TENDA 14
21+
#define HCXD_USDATE 15
22+
#define HCXD_WEAKPASS 16
23+
#define HCXD_WPSKEYS 17
2524
#define HCXD_HELP 'h'
2625
#define HCXD_VERSION 'v'
2726

0 commit comments

Comments
 (0)