PDA

View Full Version : Simplest way to make trainer security



Mogh
01-13-2008, 07:24 AM
I don't program much with Visual Basic, But i post now here EASIEST way to make trainer security. This is easy to crack, but add in form million pictures, then is harder to crack. So, let's start.

First: Open vb6, start normal form, add TextBox1 and Command1 in Form1, then doubleclick Form1 and highlight and delete all text, then add this code:


Private Sub Command1_Click()
If Text1.Text = "password" Then
Form2.Show
Else
MsgBox "Wrong pass"
End If
End Sub


Creds: Me.

For that is many different versions but this is easiest way. :)

ZeaS
01-13-2008, 07:27 AM
lol to easy lol you can crack this in less then 5 sec :P

matthijs289
01-13-2008, 08:30 AM
what does this do?

wr194t
01-13-2008, 08:34 AM
what does this do?Password protects your hack.

Firesnipe
01-13-2008, 08:57 AM
lol to easy lol you can crack this in less then 5 sec :P

How can we crack this ?

ZeaS
01-13-2008, 09:48 AM
How can we crack this ?

decompiler or ollydbg

Wieter20
01-13-2008, 10:44 AM
I don't program much with Visual Basic, But i post now here EASIEST way to make trainer security. This is easy to crack, but add in form million pictures, then is harder to crack. So, let's start.

First: Open vb6, start normal form, add TextBox1 and Command1 in Form1, then doubleclick Form1 and highlight and delete all text, then add this code:


Private Sub Command1_Click()
If Text1.Text = "password" Then
Form2.Show
Else
MsgBox "Wrong pass"
End If
End Sub


Creds: Me.






For that is many different versions but this is easiest way. :)
thats almost right but i should be:



Private Sub Command1_Click()
If Text1.Text = "password" Then
Form2.Show
Else
password: blabla
MsgBox "Wrong pass"
End If
End Sub

Mogh
01-14-2008, 07:53 AM
You can crack it in >1min with notepad. If you add pictures in form, its harder.


And why it should be almost like your thing?

Use sourcesafe etc..