Teddy on 7:49 PM 11/17/2021: Is there a better way to solve this than looking with an debugger for the result of the addition?
Blepperton on 5:16 AM 11/19/2021: Program gets stuck in infinite loop when typing "a".
Blepperton on 5:19 AM 11/19/2021: Using random numbers in a crackme is really not that great. You should give a time window where the number stays the same or something. Cheers.
Blepperton on 5:24 AM 11/19/2021: We take back whatever I said ^^^^^ there. Your implementation modulos the random number. nice crackme.
Slava on 3:57 AM 11/23/2021: you have to look at the debugger to get the values, since you are using random numbers, even though you modulus it to 10000 there's still no "fixed" solution
spoo on 5:43 AM 11/23/2021: To prevent confusion for future comment readers: There is a fixed solution. Pseudo-random is NOT random.
Sidd_Tim on 1:36 PM 11/26/2021: 8510
TrollZik on 7:48 PM 11/26/2021: That was a huge hint. I have just noticed that your rand calls produce, after manipulation, the numbers 2A and 2114. Added them with win calc.
th3h3d on 2:54 AM 11/27/2021: it generates random number for each time but it is not a really random number so if you enter fist time, your password is 8510, if you type something wrong, you need to find out second generated number and if you still type it wrong, now num is changed again and you need find third generated number and it goes like that...
th3h3d on 3:01 AM 11/27/2021: some generated nums:
1. entering: 8510
2. entering: 12836
3. entering: 14895
4. entering: 10838
5. entering: 11428
etc..
R3tr0BS on 12:49 PM 12/01/2021: i really liked that you added 69420 option, easy, and learning experience. :)
NoMercy on 5:50 PM 12/13/2021: password: 8510
KiwiBot on 8:17 AM 01/05/2022: I make every combination correct by modifying 0x00007FF614E6B028
KiwiBot on 8:18 AM 01/05/2022: I made every combination correct by modifying 0x00007FF614E6B028
sickfunk on 6:42 AM 02/16/2022: PW: 8510
2347832947284792374824 on 1:29 AM 04/07/2022: what is the rar password?
Kutch on 5:36 AM 04/30/2022: Because there is no seed provided for the random number generation, the number is always the same. You can easily just write a script which gets two random numbers modulos 10000 + 1 and adds them together and there you have the result.
jinzi0113@163.com on 8:41 AM 10/18/2022: The sum of two random numbers up to 10,000
jinzi0113@163.com on 8:42 AM 10/18/2022: Because there is no random seed, the random value is fixed,The Number is 8510