| View previous topic :: View next topic |
| Author |
Message |
sangeli Master Cheater
Reputation: 0
Joined: 07 Dec 2006 Posts: 406
|
Posted: Wed Jan 09, 2008 11:49 pm Post subject: VB6 Login Help |
|
|
Can someone help me find a code that will make a user access the features on a vb6 form? I want it to have 1 set username and password, not a user registration form and then log in with their own account. Just one main account. I was thinking I could do a if...then statement, I just dont know exactly what to do with it. I have everything hidden at first until the log in works, then everything becomes visible.
any pointers/links are welcome.
_________________
| Dark Byte wrote: | | ce can certainly damage hardware let's say you have a robotarm attached to your computer, and the software limits usually block it from ripping out it's own cpu. If you remove that limit and then issue the command to rip out the cpu, sure, say goodbye to your hardware |
|
|
| Back to top |
|
 |
killar456 Master Cheater
Reputation: 0
Joined: 30 Mar 2007 Posts: 415
|
Posted: Thu Jan 10, 2008 10:47 am Post subject: |
|
|
| uh, what about this?
|
|
| Back to top |
|
 |
sangeli Master Cheater
Reputation: 0
Joined: 07 Dec 2006 Posts: 406
|
Posted: Thu Jan 10, 2008 9:10 pm Post subject: |
|
|
| killar456 wrote: | | uh, what about this? |
indeed, what about this?
thanks!
_________________
| Dark Byte wrote: | | ce can certainly damage hardware let's say you have a robotarm attached to your computer, and the software limits usually block it from ripping out it's own cpu. If you remove that limit and then issue the command to rip out the cpu, sure, say goodbye to your hardware |
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Fri Jan 11, 2008 3:41 am Post subject: |
|
|
This style of protection is worthless. A simple breakpoint on __vbastrcmp and the user will be able to tell what the username and password that are needed to access the form.
_________________
- Retired. |
|
| Back to top |
|
 |
Trow Grandmaster Cheater
Reputation: 2
Joined: 17 Aug 2006 Posts: 957
|
Posted: Fri Jan 11, 2008 9:18 pm Post subject: |
|
|
| Wiccaan wrote: | | This style of protection is worthless. A simple breakpoint on __vbastrcmp and the user will be able to tell what the username and password that are needed to access the form. |
fortunately not everyone has a debugger on their desktops and far fewer of those who have can actually use the tool...
maybe simple protection scheme against "reading strings from notepad" can do for most cases
_________________
Get kidnapped often. |
|
| Back to top |
|
 |
sangeli Master Cheater
Reputation: 0
Joined: 07 Dec 2006 Posts: 406
|
Posted: Sat Jan 12, 2008 3:39 pm Post subject: |
|
|
well, I want this protection so that an experienced hacker, or a moderate one at that, could break in. I just dont want leechers and noob hackers to be able to get in. Noobs usually dont have a debugger, let along know how to use it. All experienced hackers know how to use a debugger so I cant, at my skill level, make a layer of security so strong experienced hackers cant get in. Also, my program is freeware, its just got 1 little obsticle.
_________________
| Dark Byte wrote: | | ce can certainly damage hardware let's say you have a robotarm attached to your computer, and the software limits usually block it from ripping out it's own cpu. If you remove that limit and then issue the command to rip out the cpu, sure, say goodbye to your hardware |
|
|
| Back to top |
|
 |
NINTENDO Grandmaster Cheater Supreme
Reputation: 0
Joined: 02 Nov 2007 Posts: 1371
|
Posted: Wed Jan 16, 2008 2:55 am Post subject: |
|
|
| sangeli wrote: | | well, I want this protection so that an experienced hacker, or a moderate one at that, could break in. I just dont want leechers and noob hackers to be able to get in. Noobs usually dont have a debugger, let along know how to use it. All experienced hackers know how to use a debugger so I cant, at my skill level, make a layer of security so strong experienced hackers cant get in. Also, my program is freeware, its just got 1 little obsticle. |
What does the $ do?
and try this
if text1.Text = "fuckyou" then
_________________
Intel over amd yes. |
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Wed Jan 16, 2008 10:04 am Post subject: |
|
|
| Naablet wrote: | | sangeli wrote: | | well, I want this protection so that an experienced hacker, or a moderate one at that, could break in. I just dont want leechers and noob hackers to be able to get in. Noobs usually dont have a debugger, let along know how to use it. All experienced hackers know how to use a debugger so I cant, at my skill level, make a layer of security so strong experienced hackers cant get in. Also, my program is freeware, its just got 1 little obsticle. |
What does the $ do?
and try this
if text1.Text = "fuckyou" then |
The $ is a short way of saying 'As String', there are multiple symbols you can use for declare types:
$ = String (Dim x$)(Dim x As String)
% = Integer (Dim x%)(Dim x As Integer)
! = Single (Dim x!)(Dim x As Single)
# = Double (Dim x#)(Dim x As Double)
@ = Currency (Dim x@)(Dim x As Currency)
_________________
- Retired. |
|
| Back to top |
|
 |
|