AutoHotkey Community

It is currently May 26th, 2012, 5:55 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 9 posts ] 
Author Message
PostPosted: May 1st, 2009, 8:32 am 
Offline

Joined: April 29th, 2009, 12:08 pm
Posts: 45
a password manager, thanks to the help of Klaus, an anonymous Guest, and dmatch

features:
-integrated Password storer and Password file opener
-neat GUI, thanks to the smart GUI maker
-the neat GUI ensures ease of use

passwords saved are stored to a directory called "Passwords" in this programs root directory

screenshots:
Image
Note: password files displayed in this screeny are examples only



Image


the code:
Code:
#SingleInstance,Force
#NoEnv

applicationname=PasswordStorer

loop, Passwords\*.*
{
If (StrLen(allfiles) = 0)
allfiles=%A_LoopFileName%
else
allfiles=%allfiles%|%A_LoopFileName%
}

Gui, Add, Tab, x-4 y0 w360 h370 , Storer|Finder
Gui, Tab, Storer
Gui, Add, Button, x366 y10 w100 h30 , Exit
Gui, Add, Text, x6 y40 w70 h20 , Website:
Gui, Add, Text, x6 y80 w70 h20 , User:
Gui, Add, Text, x6 y120 w70 h20 , Password:
Gui, Add, Edit,vEdit1 x86 y30 w100 h30
Gui, Add, Edit,vEdit2 x86 y70 w100 h30
Gui, Add, Edit,vEdit3 x86 y110 w100 h30
Gui, Add, Button, x6 y160 w100 h30 , Store
Gui, Tab, Finder
Gui, Add, Listbox, vMyListBox x6 y30 w220 h340
GuiControl,, myListBox, %allfiles%
Gui, Add, Button, x236 y330 w100 h30 , Open
Gui, Add, Button, x366 y10 w100 h30 , Exit
; Generated using SmartGUI Creator 4.0
Gui, Show, x131 y91 h377 w477, New GUI Window
gui,color,00FFFF
Return

applicationname=PasswordStorerFinder

ButtonStore:
FileCreateDir,Passwords
ControlGetText, WWW, Edit1
ControlGetText, Usernamee, Edit2
Controlgettext, Pss, Edit3
FileAppend,Username: %Usernamee%`nPassword: %Pss%, Passwords\%www%.txt
Msgbox,Success! saved details as follows:`nWebsite: %WWW%`nUsername: %Usernamee%`nPassword: %pss%
;Msgbox,%WWW%, %Usernamee%, %Pss%
Return

ButtonOpen:
gui,submit,nohide
Run,Passwords\%MyListBox%
return

ButtonExit:
ExitApp

GuiClose:
ExitApp


where to download:
http://www.mediafire.com/?sharekey=a1f5 ... 49b5870170

enjoy ;)

_________________
frosty the snowman

Ex-AutoIt user

class: intermediate


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 1st, 2009, 8:46 am 
Offline

Joined: February 22nd, 2009, 7:51 pm
Posts: 47
Location: Poland
Is there any encryption or is it just plain text?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 1st, 2009, 9:05 am 
Offline

Joined: April 29th, 2009, 12:08 pm
Posts: 45
just plain text at the moment,

thought of this as an easier way to store passwords, where they can be moved anywhere in the case of when a reformat is needed :)

_________________
frosty the snowman

Ex-AutoIt user

class: intermediate


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 1st, 2009, 1:12 pm 
Offline

Joined: August 20th, 2008, 4:25 pm
Posts: 256
You should try and look into Dra_Gon's encryption function, it's good enough.

_________________
-Chavez.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 4th, 2009, 9:33 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Check this out fro - http://www.autohotkey.com/forum/viewtopic.php?t=36927&postdays=0&postorder=asc&start=0


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 11th, 2009, 1:25 pm 
Offline

Joined: April 29th, 2009, 12:08 pm
Posts: 45
added: Search Function, find your password by typing the name of the site and click Search, u must click refresh after each search or you might get a whole heap of unrelated passwords

screenshot:
Image

where to get it:
http://www.mediafire.com/?sharekey=a1f5b413f2aeec7ad956df2962098fcb3a3b75f7086587755be6ba49b5870170

also includes the source code ahk file

Search Function Thanks to Hubert's help

its late and i ran out of time to add a visual thanks to the program and source so stay tuned, it will be in the next release :)

will work on encryption for the next release, current ver: 3.2

version table:
1. the skeleton/outline
2. filling it in, completing main functions (first release)
3. extra functions
x.1 getting the outline of the function(s) ready and getting it to work (the need help ver)
x.2 finding and fixing bugs or improving (beta)
x.3 the release (final, until i add another function then it begins all over again hehe ;))

x=the version number example: Version 3.x (sub ver)

hopefully that made sense, its late and im tired, tell me what you think guys, also report any possible improvements you may have found could be made to the code :)

i will make sure that your contribution is known, one way or another ;)

_________________
frosty the snowman

Ex-AutoIt user

class: intermediate


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 11th, 2009, 5:15 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Your kinda recreating the wheel here, but Good work nonetheless


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 22nd, 2009, 6:51 pm 
Offline

Joined: August 18th, 2009, 12:07 pm
Posts: 375
Location: holland
I'm glad he re-created the wheel, I like its simplicity, its a keeper for me.

_________________
"Choose your parents wisely"


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 23rd, 2009, 5:34 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Well, its very unsecure, anyone can search your pc for the files.

If you want security and more functions, but keeping simplicity,

Try my Password Guard

http://www.autohotkey.com/forum/viewtopic.php?t=36927&highlight=password+guard


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 9 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher and 13 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group