问题: 1.该密码用于输入不超过5位的密码。当仅保留1,2,3,4语言时,我可以测试1,2,3,4数字。 但是使用5位数密码无法正常工作。 2.我也想使用该代码一次测试不超过5位数字的密码,但我不知道该如何实现?
else
{
string hash = argv[1];
string alphabet = "abcdefghijklmnopqrestuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
// salt is the first two letter of hash
// same key and same salt will come to the same hash
char salt[2];
salt[0] = hash[0];
salt[1] = hash[1];
char key[5];
int i,m,n,p,s;
for (i=0; i<strlen(alphabet); i++)
{
for (m=0; m<strlen(alphabet); m++)
{
for (n=0; n<strlen(alphabet);n++)
{
for (p=0; p<strlen(alphabet); p++)
{
for( s=0; s<strlen(alphabet);s++)
{
key[0]=alphabet[i];
key[1]=alphabet[m];
key[2]=alphabet[n];
key[3]=alphabet[p];
key[4]=alphabet[s];
if (strcmp(crypt(key,salt),hash) == 0)
{
printf("%s\n",key);
return 0;
}
}
}
}
}
}
}
printf("\n");
}