-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpwcheck.c
414 lines (304 loc) · 10 KB
/
pwcheck.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/*
@name 1. Projekt IZP - overovani sily hesel (prace s textem)
@author Jan Kopecký ([email protected])
*/
#include <stdio.h>
#include <stdlib.h>
//! odstranena nevyuzita knihovna <math.h>
//pro funkci minLengthOfPassword()
//"globalni" promena pro minimalni delku hesla, vzdy obsahuje minimalni delku
int min_length_password = 0;
//pro funkci allChars()
//kazdy index bude obsahovat 1 nebo 0 (pokud se ASCII znak nachazi)
int ascii_table[93];
//vsechny 1 sectene z pole ascii_table
int unique_chars = 0;
//pro funkci handlePasswords()
double count_password = 0, length_of_passwords;
/*
zkontroluje retezec zda obsahuje urcite znaky
@param type typ kontroly
@param str retezec pro kontrolu
@return 1 pokud retezec obsahuje minimalne jeden znak z urcite skupiny (type)
type 0 => lowercase
type 1 => uppercase
type 2 => numbers
*/
int isSomething(int type, char str[]){
int condition = 0, max,min;
//zvoli se maximalni a minimalni pozadavky pro kontrolu
switch(type){
case 0:
min = 'a';
max = 'z';
break;
case 1:
min = 'A';
max = 'Z';
break;
case 2:
min = '0';
max = '9';
break;
}
//cyklus pro kontrolu retezce
for(int i = 0; str[i] != '\0'; i++){
if(str[i] >= min && str[i] <= max){
condition = 1;
break;
}
}
return (condition)? 1 : 0;
}
/*
zkontroluje retezec zda obsahuje specialni znaky
@param str retezec pro kontrolu
@return 1 pokud retezec obsahuje minimalne jeden specialni znak
*/
int isSpecialChars(char str[]){
int special_chars = 0;
//cyklus pro kontrolu retezce
for(int i = 0; str[i] != '\0'; i++){
if( (str[i] >= ' ' && str[i] < '0') || (str[i] > '9' && str[i] < 'A') || (str[i] > 'Z' && str[i] < 'a') || (str[i] > 'z' && str[i] <= '~') ){
special_chars = 1;
break;
}
}
return (special_chars)? 1 : 0;
}
/*
zjisti delku retezce
@param str retezec pro zjisteni
@return delka retezce
*/
int stringLength(char str[]){
int i;
for(i = 0; str[i] != '\0'; i++){
//silence is gold
}
return i;
}
/*
porovna delky hesel mezi sebou a ziska nejmensi delku hesla
@param length delka hesla
*/
void minLengthOfPassword(int length){
//nejdriv se musi nastavit min_length_password na delku (pri prvni kontrole hesla), pote se porovna heslo s kterym se pracuje a min_length_password
if(min_length_password == 0 || length < min_length_password){
min_length_password = length;
}
}
/*
zjisti vsechny znaky ze vsech hesel
@param length delka hesla
*/
void allChars(char str[]){
int i;
for(i = 0; str[i] != '\0'; i++){
for(int z = 0; z < 94; z++){
if(str[i] == z+32){
ascii_table[z] = 1;
}
}
}
}
/*
zkontroluje pokud se 2 retezec rovnaji
@param str1 prvni retezec pro kontrolu
@param str2 prvni retezec pro kontrolu
*/
int stringCompare(char str1[], char str2[])
{
int i = 0;
//dokud se charakter ze str1 rovna charakteru ze str2 cyklus pracuje
while(str1[i] == str2[i])
{
//jestli se jeden z charakteru rovna konec radku => ukonci se cyklus a vrati se chybne hlasky
if(str1[i] == '\0' || str2[i] == '\0'){
break;
}
i++;
}
//pokud se oba charaktery rovnaji konec radku
if(str1[i] == '\0' && str2[i] == '\0'){
return 1;
}
return 0;
}
/*
hlavni funkce pro praci s heslama
@param str retezec hesla
@param needed_level potrebny level (argument z cmd)
@param needed_param potrebny parametr (argument z cmd)
*/
int handlePasswords(char str[], int needed_level, int needed_param){
int level = 0, param = 0, needed_lvl2_param = needed_param, c = 0;
//pricte ze se pracuje s heslem
count_password++;
//pricte k celkove delce hesel delku aktualniho hesla, s kterym pracujeme
length_of_passwords += stringLength(str);
//zjisti jake heslo ma nejmene znaku
minLengthOfPassword(stringLength(str));
//zjisti jake znaky se v hesle nachazi
allChars(str);
//prvni level - obsahuje alespon 1 velke a male pismeno
if(isSomething(0, str) && isSomething(1, str)){
level++;
}
//druhy level - prace s parametrama
if(needed_level > 1){
//pokud je param vetsi, nastavi maximalni param pro level 2 na 4
if(needed_param > 4){
needed_lvl2_param = 4;
}
//lowercase
if(isSomething(0, str)){
param++;
}
//uppercase
if(isSomething(1, str)){
param++;
}
//number
if(isSomething(2, str)){
param++;
}
if(isSpecialChars(str)){
param++;
}
//pokud byly vsechny potrebne podminky splneny, splni se level
if(param >= needed_lvl2_param){
level++;
}
}
//treti level
if(needed_level > 2){
c = 0;
//projede charakter po charakteru
for(int i = 0; str[i] != '\0'; i++){
//zjisti pocet stejnych pismen vedle sebe
// stejnych pismen vedle sebe je o + 1 (zapomene se pricist prvni pismeno)
if(str[i] == str[i+1]){
c++;
}
}
//o+1 = pocet stejnych pismen vedle sebe
//pokud je pocet stejnych pismen vedle sebe mensi nez param, pricte se level
if(c+1 < needed_param){
level++;
}
}
//ctvrty level
if(needed_level > 3){
c = 0;
//projede charakter po charakteru
for(int i = 0; str[i] != '\0'; i++){
//zjisti zda se charakter s indexem i rovna jako charakter s indexem i+param
if(str[i] == str[i+needed_param]){
c++;
}
}
//c = pocet stejnych pismenek i a i+param
//pokud je pocet stejnych pismenek i a i+param mensi jako potrebny parametr, pricte se level
if(c < needed_param){
level++;
}
}
//pokud je potrebny level stejny jako levely, ktere prosly, funkce se vyhodnoti jako uspesna
if(needed_level == level){
return 1;
}
return 0;
}
int main(int argc, char* argv[])
{
//prvni a druhy argument programu
int level, param, is_stats = 0; //!pridana promena is_stats
// //pomocne promene pro kontrolu zda jsou argumenty ve tvaru string nebo int
char *endptr, *endptr1;
//pro zjisteni tretiho argumentu, zda se jedna o "--stats"
char *stats;
//! prehozeni podminek (argc > 3) a (argc < 3)
//kontrola parametru => jestli nechybi level/param
if(argc < 3){
printf("[CHYBA] :: Musite zadat vsechny argumenty!\n");
printf(" ./pwcheck (LEVEL <1,4>) (PARAM <1, ..>) [--stats] \n");
return EXIT_FAILURE;
}
//pokud prikaz obsahuje vice jak 3 argumenty vytvori se string z toho tretiho pro kontrolu na vypsani statistik
if(argc > 3){
strtoul(argv[3], &stats, 10);
is_stats = 1; //! pridano nastaveni na is_stats
}
//prevede prvni argument na int
level = strtoul(argv[1], &endptr, 11);
//! odstranena podminka na kontrolu argumentu
//!pokud neni konec cisla vypise chybu
//! if(endptr[0] != '\0'){
//! printf("[CHYBA] :: Argument LEVEL ve spatnem tvaru!\n");
//! printf(" [0-9] \n");
//! return EXIT_FAILURE;
//! }
//!pokud neni konec cisla vypise chybu
//! if(endptr1[0] != '\0'){
//! printf("[CHYBA] :: Argument PARAM ve spatnem tvaru!\n");
//! printf(" [0-9] \n");
//! return EXIT_FAILURE;
//! }
//prevede druhy argument na int
param = strtoul(argv[2], &endptr1, 12);
//kontrola parametru LEVEL => musi byt v intervalu <1,4>
if(level < 1 || level > 4){
printf("[CHYBA] :: Chybne zadany argument LEVEL!\n");
printf(" (LEVEL <1,4>) \n");
return EXIT_FAILURE;
}
//kontrola parametru PARAM => musi byt cele kladne cislo
if(param < 1){
printf("[CHYBA] :: Chybne zadany argument PARAM!\n");
printf(" (PARAM <1, ..>) \n");
return EXIT_FAILURE;
}
//c = chars z funkce getchar()
int c, i;
//samostatne heslo ze vstupu, 104 => kdyby heslo bylo delsi jak 100 znaku, vypise se chyba
char password[104];
//postupne nacita charakter za charakterem dokud nedorazi na konec souboru
while ((c = getchar()) != EOF) {
//pokud je konec radku
if(c == '\n'){
//kontrola pro heslo, zda je delsi jako 100 znaku
if(stringLength(password) > 100){
printf("[CHYBA] :: Heslo je delsi nez 100 znaku!\n");
continue;
}
//nastavi posledni cast retezce password na konec retezce
//! password[i] = '\0'; odstraneno - whitespace na konci hesel
//zjisti zda heslo odpovida podminkam, pokud ano, vypise heslo
if(handlePasswords(password, level, param)){
printf("%s \n", password);
}
//nastavi i na 0 coz znamena ze vymazene puvodni heslo
i=0;
//preskoci pridani \n do promene password
continue;
}
//nacita heslo po charakteru do promene password
password[i] = c;
i++;
}
//secteni vsech 1 v poli ascii_table => zjisteni vsech ruznych znaku v heslech
for(i = 0; i < 94; i++){
if(ascii_table[i] == 1){
unique_chars++;
}
}
//porovna treti argument programu s retezcem "--stats", pokud se rovna, vypise statistiku
if(is_stats == 1 && stringCompare(stats, "--stats")){ //! pridana podminka is_stats == 1
printf("\nStatistika:");
printf("\nRuznych znaku: %d", unique_chars);
printf("\nMinimalni delka: %d", min_length_password);
printf("\nPrumerna delka: %.1f\n", length_of_passwords/count_password);
}
return EXIT_SUCCESS;
}