crackme 13 - acid burn

UI

it has a nag
image1
after the nag, you would see this UI
image2
click on serial/name button, you need to input seiral and name , click on serial button, you just need to input serial.
image3
and
image4

Debug

use ollydb to start the program, firstly figure out the memory address which hold username

image5
continue

image6
from above image, we can see the hardcoded serials

1
2
堆栈 ss:[0019FAC0]=09DA63A4, (ASCII "CW-9512-CRACKED")
eax=09DA63A4, (ASCII "CW-9512-CRACKED")

try with it, it works
image7

now we get the serial for the username. but we can also just input serial. so keep debugging
image8

I figure out the serial also hardcoded.

1
2
堆栈 ss:[0019F5F4]=09F18864, (ASCII "Hello Dude!")
edx=09F18864, (ASCII "Hello Dude!")

try the one, it also works.
image9

for this crackme , there is no keygen needed, all serials are hardcoded. so it is pretty easy!