AutoHotkey Community

It is currently May 27th, 2012, 4:27 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 76 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

Switch to Rajats Blowfish?
Yes
Stay at RC4
You may select 1 option

View results
Author Message
 Post subject:
PostPosted: July 10th, 2009, 10:42 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Im really pushing to get releases out.

v2.6,

Updater Function, can check if new updates are available and gives you a link to download.

Improved security on Rename function

Slimmer message of the day box


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 13th, 2009, 8:24 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Ok, all previos security holes have been fixed.

Password Guard is safer than ever!
_________________________________

Im thinking of removing username, and having a simple masterpassword, 8 chars minimum. Then adding seans AES, if someone could give a good tutorial, because I really think its confusing


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 16th, 2009, 2:27 am 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Im most likely going to add AES, but its WAY slower than RC4, anythoughts?


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

Joined: July 17th, 2008, 9:46 am
Posts: 225
What the f***
I downloaded your Tool and started it...
I clicked "continue" and what should i insert ?
I don't have an account :)
WHAT ?
Greets & thx,
DHMH


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 16th, 2009, 4:04 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
It should forward you to account creation, if not, its a problem on your end.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 16th, 2009, 4:09 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Im thinking though to continue on with this, but since there is not much user interest, im not so sure.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 20th, 2009, 5:02 am 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
After a break from development, an waited feature is here, multiple databases, and the ability to use thumbdrivers.

2.7b!

To people using this script, and not knowing where the database is,
%A_Appdatacommon%\Book.dll is the place. Simply drag it to the directory of your Password Guard and select it as the current database.

~Fry


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 26th, 2010, 9:05 am 
Offline

Joined: November 29th, 2009, 7:53 am
Posts: 46
Location: Queensland
i have just learnt about binary and logical and
could you, to make the data more secure createa mask in which the data is obscured if opened externally
i relise that this would invovle serious work
i am willing to help where i can

plz reply what you think
remember this would increase security


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 26th, 2010, 4:07 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
If the password data is opened externally, it is encrypted. There is NO way to get the password data, unless the correct password is known.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 26th, 2010, 6:07 pm 
Offline

Joined: April 8th, 2009, 8:23 pm
Posts: 3036
Location: Rio de Janeiro - RJ - Brasil
Hey Fry, nice job.
I'm currently not using your program, but I checked the source and I have noticed a few parts that can be improved:

--------------------------------------------------------------------------
Here is the original first part of the checkstr label:
Code:
checkstr:
Gui,submit,nohide
If (User1 = "" && Pass1 = "" )
    {
    GuiControl,,ShowSTR,
    GuiControl,,STR, 0
    return
    }
If (User1 = "")
    {
    GuiControl,,ShowSTR,
    GuiControl,,STR, 0
    return
    }
If (Pass1 = "")
    {
    GuiControl,,ShowSTR,
    GuiControl,,STR, 0
    return
    }
If (User1 = "Username" && Pass1 = "Password" )
       {
    GuiControl,,ShowSTR,
    GuiControl,,STR, 0
    return
    }
Else
; ... ... ...

Here is the modified one, which does the same:
Code:
checkstr:
Gui,submit,nohide
If (User1 = "") OR (Pass1 = "") OR (User1 = "Username" AND Pass1 = "Password")
       {
    GuiControl,,ShowSTR,
    GuiControl,,STR, 0
    return
    }
Else
; ... ... ...

--------------------------------------------------------------------------
Here is the original Retrieve label:
Code:
Retrieve:
Gui,Submit,Nohide
If A_GuiEvent = DoubleClick
   {
    If PassList = Passwords:
        return
    Else
    {
    Menu, DelM, Show
    return
    }
   }
Else
{
If PassList = Passwords:
    return
Else
{
ToUser =
ToPass =
; ... ... ...
GuiControl,, Misc1, %ToMisc1%
GuiControl,, Misc2, %ToMisc2%
}
}
return

Here is the modified one, which does the same:
Code:
Retrieve:
Gui,Submit,Nohide
If (A_GuiEvent = "DoubleClick") OR (PassList = "Passwords:")
   {
    If PassList <> Passwords:
        Menu, DelM, Show
    Return
   }
ToUser =
ToPass =
; ... ... ...
GuiControl,, Misc1, %ToMisc1%
GuiControl,, Misc2, %ToMisc2%
return

--------------------------------------------------------------------------
Here is the original LoginM label:
Code:
LoginM:
Gui, Submit,NoHide
If PassList = Passwords:
    return
If SelectM = Yahoo
    {
    MailURL = https://login.yahoo.com/config/mail?.intl=us
    gosub Mail
    return
    }
If SelectM = G-Mail
    {
    MailURL = www.gmail.com/?M=A
    gosub Mail
    return
    }
If SelectM = Hotmail
    {
    MailURL = http:\\www.mail.live.com
    gosub Mail
    return
    }
If SelectM = AIM Mail
    {
    MailURL = http:\\mail.aim.com
    gosub Mail
    return
    }

Here is the modified one, which does the same:
Code:
LoginM:
Gui, Submit,NoHide
If PassList = Passwords:
    return
If SelectM = Yahoo
    MailURL = https://login.yahoo.com/config/mail?.intl=us
Else If SelectM = G-Mail
    MailURL = www.gmail.com/?M=A
Else If SelectM = Hotmail
    MailURL = http:\\www.mail.live.com
Else If SelectM = AIM Mail
    MailURL = http:\\mail.aim.com
If MailURL ; <-- probably you want this line, but I'm not really sure
  gosub Mail
return


:)

_________________
"Read the manual. Read it again. Search the forum.
Try something before asking. Show what you've tried.
"
Image
Antonio França
My stuff: Google Profile


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 27th, 2010, 1:30 am 
Offline

Joined: November 29th, 2009, 7:53 am
Posts: 46
Location: Queensland
i just thought that using a mask might have been a little more secure
glad to see that you have thought this through so seriously


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 27th, 2010, 3:36 pm 
Offline

Joined: November 1st, 2007, 10:03 pm
Posts: 885
Thanks MasterFocus.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 30th, 2010, 8:59 am 
Offline

Joined: March 18th, 2010, 9:12 am
Posts: 72
I also can't create database.
After continue it comes to:
"Welcome to Password Guard!
Enter your username and password to continue"

I have never tryed this script before, so what is wrong?

I have been looking for a password keeper/saver so hope this is it :-)

Thanks
Benny


Report this post
Top
 Profile  
Reply with quote  
 Post subject: AES/Blowfish/RC4
PostPosted: July 2nd, 2010, 9:40 am 
Offline

Joined: February 24th, 2010, 10:17 am
Posts: 42
AES/Blowfish/RC4/lots of others.

Why can't I have all of them built in and be able to choose my favourite encryption for myself :?: :!: 8)

You can't please everyone all of the time, you can't even please some of the people half of the time, so make it configurable and let the user decide for him/her-self. I realise it's more work, but in the end, you will have a program/script that more people will use because it supports their favourite encryption.

My 2c :D
Tal


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 26th, 2010, 12:00 pm 
Offline

Joined: February 16th, 2010, 4:01 am
Posts: 60
fedtegreve wrote:
I also can't create database.
After continue it comes to:
"Welcome to Password Guard!
Enter your username and password to continue"

I have never tryed this script before, so what is wrong?

I have been looking for a password keeper/saver so hope this is it :-)

Thanks
Benny

Ditto. I cannot access the tool as a first-time user.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 76 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Yahoo [Bot] and 7 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