October 17, 200915 yr Author Difficulty - EasyRules - No reflactor, No IDA proLanguage - VB.NETI am completely newbie for reversing world... Edited October 17, 200915 yr by SYKO
October 17, 200915 yr public string check(string user, string pass){ string str2; user = this.txtuser.get_Text(); pass = this.txtpass.get_Text(); int num2 = user.get_Length(); for (int i = 1; i <= num2; i++) { str2 = Conversions.ToString(Conversions.ToDouble(str2) + Strings.Asc(user)); } if ((Operators.CompareString(pass, "", false) == 0) | (Operators.CompareString(user, "", false) == 0)) { MessageBox.Show("Please Enter Valid UserName And Key to Register.", "ERROR", 5, 0x30); return str2; } if (Operators.CompareString(pass, Conversions.ToString(Conversions.ToDouble(str2) + 5.0) + user + str2 + Conversions.ToString(Strings.Asc(user)), false) == 0) { Interaction.MsgBox("Thanks!! Your Key is now Registered.", 0, "Registered."); this.Close(); return str2; } Interaction.MsgBox("Invalid UserName And Key. Try Again.", 0, "Invalid"); this.Close(); return str2;}
October 17, 200915 yr Author public string check(string user, string pass){ string str2; user = this.txtuser.get_Text(); pass = this.txtpass.get_Text(); int num2 = user.get_Length(); for (int i = 1; i <= num2; i++) { str2 = Conversions.ToString(Conversions.ToDouble(str2) + Strings.Asc(user)); } if ((Operators.CompareString(pass, "", false) == 0) | (Operators.CompareString(user, "", false) == 0)) { MessageBox.Show("Please Enter Valid UserName And Key to Register.", "ERROR", 5, 0x30); return str2; } if (Operators.CompareString(pass, Conversions.ToString(Conversions.ToDouble(str2) + 5.0) + user + str2 + Conversions.ToString(Strings.Asc(user)), false) == 0) { Interaction.MsgBox("Thanks!! Your Key is now Registered.", 0, "Registered."); this.Close(); return str2; } Interaction.MsgBox("Invalid UserName And Key. Try Again.", 0, "Invalid"); this.Close(); return str2;}don't use reflector.I think you use it.Don't mind if I'm wrong.
October 17, 200915 yr The [keygenme] tag has been added to your topic title. Please remember to follow and adhere to the topic title format - thankyou! [This is an automated reply]
Create an account or sign in to comment