Skip to content

Instantly share code, notes, and snippets.

@Catsquotl
Last active June 7, 2019 01:17
Show Gist options
  • Save Catsquotl/cbffb1dab0caf718c9686f628713641d to your computer and use it in GitHub Desktop.
Save Catsquotl/cbffb1dab0caf718c9686f628713641d to your computer and use it in GitHub Desktop.
string word = "LOp";
string check = crypt(word, salt);
for(int i = 0;i<5;i++)
{
if (strcmp(check, argv[1])==0)
{
result = true;
break;
}
else
{
printf("%s\n", word);
word = "LOL";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment