bundyxc Posted October 29, 2009 Posted October 29, 2009 I need an easy way to manage user login data on a computer, any ideas? I'm currently trying to manage all user data in an INI file, but passwords might be a little touchy with some people... Any ideas? Global $arr[2] $arr[0]="hip" $arr[1]="hip" ;^^ hip hip array. ^^
NoHAX Posted October 29, 2009 Posted October 29, 2009 Hmmm maybe in windows Vista you can see users by their folders on "C:\Users" and try write folder names to .ini but if you wanna get pw then give up I am sure there is easier way to get list of users. I think you dont have admin rights? xd
bundyxc Posted October 29, 2009 Author Posted October 29, 2009 Uhh, what? Maybe I didn't explain myself. I'm trying to keep track of sensitive data, and need a way to store it. That's all. I'm looking at the _StringEncrypt() function though, so unless anybody has a better idea... Global $arr[2] $arr[0]="hip" $arr[1]="hip" ;^^ hip hip array. ^^
Juvigy Posted October 29, 2009 Posted October 29, 2009 _StringEncrypt() is easily reversed as it is 2 way encryption. You need something better like: SHA1,MD5,RC4,BASE64,CRC32 There is a UDF available around here.Search for it.
bundyxc Posted October 29, 2009 Author Posted October 29, 2009 _StringEncrypt() is easily reversed as it is 2 way encryption. You need something better like:SHA1,MD5,RC4,BASE64,CRC32There is a UDF available around here.Search for it.I'm storing these sensitive passwords to be retrieved later. Is there a better way to do this, other than INI files? If I encrypted them with a secure, 1-way encryption.. it wouldn't be of any use, as I wouldn't be able to retrieve it later. Global $arr[2] $arr[0]="hip" $arr[1]="hip" ;^^ hip hip array. ^^
Juvigy Posted October 29, 2009 Posted October 29, 2009 In that case you should make your own 2 way encryption script that would encrypt the data. Another thing is to RAR the INI file with password.
99ojo Posted October 29, 2009 Posted October 29, 2009 (edited) In that case you should make your own 2 way encryption script that would encrypt the data.Another thing is to RAR the INI file with password.Hi,just have a look at the freewaretool KeePass. You can store for every user a lot of information and save the information file with a password. This should be then a very strong one.;-))Stefan Edited October 29, 2009 by 99ojo
monoceres Posted October 29, 2009 Posted October 29, 2009 I'm storing these sensitive passwords to be retrieved later. Is there a better way to do this, other than INI files? If I encrypted them with a secure, 1-way encryption.. it wouldn't be of any use, as I wouldn't be able to retrieve it later.If you download the latest beta you'll notice there are now several algorithms available for encrypting/decrypting.However keep in mind that you need to keep the encryption key safe because if that key is compromised then the whole thing fails (maybe not if the users are very trivial users).One one would be if the users are standard users, then you could save the encryption key in a place the standard users have no permissions then running your program as admin. Broken link? PM me and I'll send you the file!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now