Leon on 2019-07-04 11:18:
Good one.
That portuguese has taken me by surprise, though...
nutcake on 2019-09-22 02:47:
Yeah, sorry about the portuguese, sometimes I just forget
i-dereference-null-pointers on 2022-04-22 12:02:
This was really cool! I has to think for quite a while to work this one out :)
2ourc3 on 2022-12-08 12:14:
Quality should be - 1.0 - 2.0
valdtaniem on 2024-07-02 22:46:
i got it on my 1th gues (;
Elephant on 2025-07-02 15:22:
[Click to reveal]FLAG:"3"
004011c9 if (divs.dp.d(sx.q(int_14 + int_100 * 3), int_100) != userInput)
so ((100*3)+14)=314\100=3.14 but it compares it as an int. so no decimals. resulting in 3. then compares that to the user input.
SirWardrake on 2026-05-29 00:11:
There is a bug.
Because the calculation is performed using integers only, "3" is also accepted as a solution.
vodeff on 2026-06-11 21:49:
[Click to reveal]Switching the magic number from int to float will do the trick! Right now the solution is not 3.14 but 3, and all kinds of inputs like 3.982 or 3.2 will work. It is a very fun crackme tho =)