IOLI 0x05

    the check() function:

    1. /* r2dec pseudo code output */
    2. /* ./crackme0x05 @ 0x80484c8 */
    3. #include <stdint.h>
    4. int32_t check (char * s) {
    5. char * var_dh;
    6. uint32_t var_ch;
    7. uint32_t var_8h;
    8. int32_t var_4h;
    9. char * format;
    10. int32_t var_sp_8h;
    11. var_8h = 0;
    12. var_ch = 0;
    13. do {
    14. eax = s;
    15. eax = strlen (eax);
    16. if (var_ch >= eax) {
    17. goto label_0;
    18. }
    19. eax = var_ch;
    20. eax += s;
    21. eax = *(eax);
    22. var_dh = al;
    23. eax = &var_dh;
    24. sscanf (eax, eax, 0x8048668); // 0x8048668 is %d
    25. edx = var_4h;
    26. eax = &var_8h;
    27. *(eax) += edx;
    28. if (var_8h == 0x10) {
    29. eax = s;
    30. parell (eax);
    31. }
    32. eax = &var_ch;
    33. *(eax)++;
    34. } while (1);
    35. label_0:
    36. printf ("Password Incorrect!\n");
    37. return eax;
    38. }

    The same, we can write our own C-like pseudo code.

    1. [0x08048484]> s sym.parell
    2. [0x08048484]> pdd@sym.parell
    3. /* r2dec pseudo code output */
    4. /* ./crackme0x05 @ 0x8048484 */
    5. #include <stdint.h>
    6. uint32_t parell (char * s) {
    7. char * format;
    8. int32_t var_8h;
    9. eax = &var_4h;
    10. eax = s;
    11. sscanf (eax, eax, 0x8048668);
    12. eax = var_4h;
    13. eax &= 1;
    14. if (eax == 0) {
    15. printf ("Password OK!\n");
    16. exit (0);
    17. }
    18. return eax;
    19. }

    the decompiled code looks well except the sscanf() function. It can be easily corrected by checking the assembly code.

    The mov dword [esp], eax is the nearest instruction to sscanf (and it’s equivalent to a push instruction). It stores the string ‘s’ to the stack top (arg1). mov dword [var_sp_4h], 0x8048668 push ‘%d’ as arg2 into stack. var_8h (esp + 0x8) which keeps the address of var_4h is the arg3.

    1. uint32_t parell (char * s) {
    2. sscanf (s, %d, &var_4h);
    3. if ((var_4h & 1) == 0) {
    4. printf ("Password OK!\n");
    5. exit(0);
    6. }
    7. }

    Now there are 2 constraints:

    • Digit Sum is 16 (0x10)
    • Must be an odd number (1 & number == 0)

    The password is at our fingertips now.