| Keypad |
Is there a way to pass this without patching? |
2021-07-30 10:31 |
| Keypad |
Some random password... Not worth it. |
2021-07-30 00:33 |
| UltimateKeyGenMe |
Code did not copy over correctly
|
2021-07-29 15:44 |
| UltimateKeyGenMe |
Key Gen Code:
#include
char password;
char user_letter;
int main(int argc, char *argv[]) {
printf("%s", "KEY GEN \n");
printf("%s", "Enter a letter an get your key. \n");
scanf("%c", &user_letter);
if ((0x80 (user_letter & 0xf));
printf("Letter %c: Password is: %d",user_letter,password);
}
else {
password = user_letter & user_letter |
2021-07-29 15:44 |
| Forest |
leet speak on the flag. Fun little crackme. |
2021-07-20 19:46 |
| Super Random Guessing | Yariza Crackme 3 |
Thanks for the vid. I actually ended up just using ltrace and watching the calls to rand(). Was able to construct the password from there as well.
|
2021-07-11 14:50 |
| Super Random Guessing | Yariza Crackme 3 |
I just ended up patching this one. Is there a different way?
xray@ubuntu:~/Desktop$ ./random_guessing_game
[*] Password: test
[*] Checking your password..
[+] Good Job!
|
2021-07-11 12:44 |