View previous topic :: View next topic |
Author |
Message |
Golden Wing Grandmaster Cheater
Reputation: 0
Joined: 29 Aug 2007 Posts: 905
|
Posted: Sat Nov 03, 2007 10:43 am Post subject: i need help |
|
|
language = VB6
how to link link the txtPassword and txtUserName to my notepads that is filled with the pass and users so if people scan it they wont be able to see your pass it will be stored in my notepad
_________________
|
|
Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sat Nov 03, 2007 12:34 pm Post subject: |
|
|
VB and security don't mix
_________________
|
|
Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Sat Nov 03, 2007 12:40 pm Post subject: |
|
|
eww?
you means a password on a notepad and user on another one.., so theys are checked?
_________________
|
|
Back to top |
|
 |
AdamWest Master Cheater
Reputation: 0
Joined: 05 Jul 2007 Posts: 354 Location: Quahog, Rhode Island
|
Posted: Sat Nov 03, 2007 12:44 pm Post subject: |
|
|
appalsap wrote: | VB and security don't mix |
_________________
"I myself am made entirely of flaws, stitched together with good intentions." - Augusten Burroughs |
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8585 Location: 127.0.0.1
|
Posted: Sat Nov 03, 2007 2:22 pm Post subject: Re: i need help |
|
|
xDemonRobbiex wrote: | language = VB6
how to link link the txtPassword and txtUserName to my notepads that is filled with the pass and users so if people scan it they wont be able to see your pass it will be stored in my notepad |
Use something other then storing the values normally like:
Code: | Dim strUsername As String
strUsername = "UserNameHere" |
Unless you pack/encrypt the exe and such you wont get that hidden. Instead, use your own methods of protection. You wont find a 100% hack-proof method as anything can be reversed. Think outside the box when you need to deal with security, don't keep yourself centered into standard methods and such.
_________________
- Retired. |
|
Back to top |
|
 |
|