How to crack Filenamer http://www.download.com - search for FILENAMER Tools you will need--------------------------- SmartCheck (SMC) Brain ---------------------------------------------- First load the program in SMC and start it, then go to the register stuff and enter a name/serial and press the 'OK' button, then you should see alot of shit in SMC but this is the interesting part: CmdAbout_Click | ---FrmAbout.Show | ---CmdRegister_Click | ---FrmRegister.Show | ---cmdOK_Click | ---lots of calculations But it's here it's interesting: txtPassword.Text txtUserName.Text Trim txtPassword.Text Mid$ and it's here the serial calculation starts, and the next part is what i saw. Asc returns Integer:75 = 'K' mid$ Asc returns Integer:49 = '1' Chr and that means 75 XOR 49 = 122 (dec) and if we look further we will find out that it uses 50 (2) and 51 (3) too as a XOR value, so the calculation is like this: first_char XOR 49 second_char XOR 50 third_char XOR 51 fourth_char XOR 49 fifth_char XOR 50 sixth_char XOR 51 and so on, so now it's time for you to code a keygen =), but if you just want the serial for the entered name just go to the bottom of the shit and you'll see this: Chr Trim$ <-- the right serial for the entered name MsgBox returns Integer:1 txtPassword.SetFocus SendKeys that's all for now! /Klefz - Fallen, Massive