-
Notifications
You must be signed in to change notification settings - Fork 0
/
strog pass_weak pass.c
76 lines (66 loc) · 1.63 KB
/
strog pass_weak pass.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
#include <stdio.h>
#include <string.h>
int main()
{
char firstName[100];
char lastName[100];
char password[100];
char special[] = {'@', '#','!','~','$','%','^',
'&','*','(',',','-','+','/',
':','.',',','<','>','?','|'};
char number[] = { '1', '2', '3', '4', '5', '6', '7', '8', '9', '0' };
int i, j, hasFirst=0, hasLast=0;
printf("First name: ");
gets(firstName);
fflush(stdin);
printf("Last name: ");
gets(lastName);
fflush(stdin);
printf("Pass: ");
gets(password);
fflush(stdin);
int first = strlen(firstName);
int last = strlen(lastName);
int pass = strlen(password);
if((strstr(password, firstName))!=NULL){
printf("Weak password");
return 0;
}
if((strstr(password, lastName))!=NULL){
printf("Weak password");
return 0;
}
if((strstr(password, strcat(firstName, lastName)))!=NULL){
printf("Weak password");
return 0;
}
for(i = 0; i<pass; i++){
for(j = 0; j<strlen(special); j++){
if(password[i] == special[j]){
hasFirst = 1;
break;
}
}
if(hasFirst){
break;
}
}
for(i = 0; i<pass; i++){
for(j = 0; j<strlen(number); j++){
if(password[i] == number[j]){
hasLast = 1;
break;
}
}
if(hasLast){
break;
}
}
if(hasFirst == 1 && hasLast == 1){
printf("\nStrong Password");
}
else{
printf("\nWeak password");
}
return 0;
}