| View previous topic :: View next topic |
| Author |
Message |
Hack-Addict Master Cheater
Reputation: 0
Joined: 20 Nov 2007 Posts: 287
|
Posted: Tue Dec 18, 2007 6:55 pm Post subject: Serial tutorial (Visual basic) |
|
|
Hey everyone!
Today's tutorial will teach you how to make a simple password for your program
Ok go here: http://youtube.com/watch?v=piPVjiJXR1E
I made the video, you can see the coding, don't worry
_________________
|
|
| Back to top |
|
 |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Tue Dec 18, 2007 7:12 pm Post subject: |
|
|
Lol, you hehe you sound like a girl
|
|
| Back to top |
|
 |
Hack-Addict Master Cheater
Reputation: 0
Joined: 20 Nov 2007 Posts: 287
|
Posted: Tue Dec 18, 2007 7:21 pm Post subject: |
|
|
| slippppppppp wrote: | Lol, you hehe you sound like a girl  |
Lol, Thats my mic, it screws me over every time... even my friends dad sounds like he's a girl, sep he sounds like a girl on crack...
Lol, Found your username xD
evelutionz
xD
_________________
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Tue Dec 18, 2007 7:25 pm Post subject: |
|
|
Hahaa,
That's pretty funny.
No offense, but if someone needed something like that, I'm sure that they could figure it out on their own.
Another thing, why'd you say "serial"? It's just a password and a simple check. Maybe like a REALLY noobish crack me.
_________________
|
|
| Back to top |
|
 |
Pepsiguy I post too much
Reputation: 0
Joined: 16 Aug 2007 Posts: 2016
|
Posted: Tue Dec 18, 2007 7:27 pm Post subject: |
|
|
use could always use tis code | Code: | 'Global Variables
Dim Username As String 'Username Variable
Dim Password As String 'Password Variable
Private Sub cmdLogin_Click()
Username = "Username" 'What the Username Variable is
Password = "Password" 'What the Password Variable is
'If Statement Starting Here
'It States that if the username is = to text box and password is = password text box, then it should login, else display error message!
If Username = Txtusername And Password = txtpassword Then
Form2.Show 'Shows the Login Success Form
Form1.Hide 'Hides the Login Screen
Else
'A Message box that displays you have entered the wrong username and password
MsgBox ("Try Again Leecher!")
End If
End Sub
Private Sub cmdClose_Click()
Unload Me 'Closes the program
End Sub |
_________________
|
|
| Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Tue Dec 18, 2007 7:32 pm Post subject: |
|
|
| pepsiguy_2 wrote: | use could always use tis code | Code: | 'Global Variables
Dim Username As String 'Username Variable
Dim Password As String 'Password Variable
Private Sub cmdLogin_Click()
Username = "Username" 'What the Username Variable is
Password = "Password" 'What the Password Variable is
'If Statement Starting Here
'It States that if the username is = to text box and password is = password text box, then it should login, else display error message!
If Username = Txtusername And Password = txtpassword Then
Form2.Show 'Shows the Login Success Form
Form1.Hide 'Hides the Login Screen
Else
'A Message box that displays you have entered the wrong username and password
MsgBox ("Try Again Leecher!")
End If
End Sub
Private Sub cmdClose_Click()
Unload Me 'Closes the program
End Sub |
|
This is another simple way too, very easy to crack.
You should add in more security and add obfuscation in it, or declare random words as strings and set their value to 1 letter of the password, then it would be annoying if someone were to crack it
_________________
|
|
| Back to top |
|
 |
Hack-Addict Master Cheater
Reputation: 0
Joined: 20 Nov 2007 Posts: 287
|
Posted: Tue Dec 18, 2007 7:36 pm Post subject: |
|
|
| pepsiguy_2 wrote: | use could always use tis code | Code: | 'Global Variables
Dim Username As String 'Username Variable
Dim Password As String 'Password Variable
Private Sub cmdLogin_Click()
Username = "Username" 'What the Username Variable is
Password = "Password" 'What the Password Variable is
'If Statement Starting Here
'It States that if the username is = to text box and password is = password text box, then it should login, else display error message!
If Username = Txtusername And Password = txtpassword Then
Form2.Show 'Shows the Login Success Form
Form1.Hide 'Hides the Login Screen
Else
'A Message box that displays you have entered the wrong username and password
MsgBox ("Try Again Leecher!")
End If
End Sub
Private Sub cmdClose_Click()
Unload Me 'Closes the program
End Sub |
|
Lol, Thatd be easy to crack in a hex editor...
_________________
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Tue Dec 18, 2007 7:38 pm Post subject: |
|
|
I would try something like, maybe store an ecrypted string in an obscure place in the registry, under some obscure name, like the following:
| Code: |
HKEY_Local_Machine\1uo381ae25w7b1y6aw9\1a8m8e847u2niqa8ll8\
|
Then make the value your encrypted string. Make it pre-encrypted so that the true password is never actually stored in your program.
Next, you take in their password, hash it or whatever (make sure you use SALT, if you don't know what that is, Google is your friend), then compare the two. If they don't match, then whatever.
If they do, let them into whatever they want.
_________________
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Tue Dec 18, 2007 8:19 pm Post subject: |
|
|
| samuri25404 wrote: | I would try something like, maybe store an ecrypted string in an obscure place in the registry, under some obscure name, like the following:
| Code: |
HKEY_Local_Machine\1uo381ae25w7b1y6aw9\1a8m8e847u2niqa8ll8\
|
|
and get instantly pwned when the cracker pulls out regmon.
_________________
|
|
| Back to top |
|
 |
Pepsiguy I post too much
Reputation: 0
Joined: 16 Aug 2007 Posts: 2016
|
Posted: Tue Dec 18, 2007 8:49 pm Post subject: |
|
|
Well i guess yours is better since its a simpler code
_________________
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Tue Dec 18, 2007 8:49 pm Post subject: |
|
|
Sounds like balls not dropped voice to me.
(hint: your own voice tends sounds different to yourself when you talk)
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Tue Dec 18, 2007 10:26 pm Post subject: |
|
|
| I was expecting an actual (simple) algorithm for checking serials based on the username.
|
|
| Back to top |
|
 |
pimpstonie Advanced Cheater
Reputation: 0
Joined: 27 Sep 2007 Posts: 70
|
Posted: Wed Dec 19, 2007 8:34 am Post subject: |
|
|
| Xenophobe wrote: | | I was expecting an actual (simple) algorithm for checking serials based on the username. |
Not with a newb thats just learning vb! I do say hes learning fast.
Hack, its time to learn API. >>>
|
|
| Back to top |
|
 |
h4ckz0r's twisted soul Grandmaster Cheater Supreme
Reputation: 1
Joined: 24 Oct 2007 Posts: 1181 Location: Paradise city, where the grass is green and the girls are somwhat pretty~
|
Posted: Wed Dec 19, 2007 8:50 am Post subject: |
|
|
Who would need that?
_________________
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
|
| Back to top |
|
 |
|