Previous in Forum: System Mechanic Pro Problem   Next in Forum: Anybody Understand Earthlink?
Close
Close
Close
37 comments
Rate Comments: Nested
Power-User
United States - Member - New Member Popular Science - Weaponology - New Member Hobbies - Automotive Performance - New Member

Join Date: Sep 2008
Location: Danbury, CT, USA
Posts: 103
Good Answers: 2

What Are Some Good Password Utilities?

08/19/2009 12:36 PM

I'm looking for a password maintenance utility, i.e. a utility that will remember the login ID and password for each site.

I'm currently using Norton 360. It does a good job but also overwrites all kinds of forms input, like my contact list. I haven't been able to control it other than to shut it off.

__________________
6 * 9 = 42 in base 13
Register to Reply
Interested in this topic? By joining CR4 you can "subscribe" to
this discussion and receive notification when new comments are added.
Guru
United States - Member - USA! Hobbies - Musician - Sound Man Engineering Fields - Mechanical Engineering - More than a Hobby Technical Fields - Technical Writing - New Member

Join Date: Oct 2008
Location: City of Roses.
Posts: 2056
Good Answers: 101
#1

Re: What are good password utilities?

08/19/2009 1:29 PM

I don't trust any computer to store my login/passwords... I do however trust my own mental capability to remember them all (for now).

__________________
Don't believe everything you read on the Internet!
Register to Reply
Guru
United States - Member - New Member Engineering Fields - Electrical Engineering - New Member

Join Date: Jul 2008
Posts: 1149
Good Answers: 36
#2

Re: What are good password utilities?

08/19/2009 1:40 PM

If the password remembering is for websites only, I use mozilla firefox to save the passwords. It automatically prompts you if you want to save passwords and you can choose between "Save", "Not Now", or "Never For This Site". You can always go into firefox settings and change which sites have remembered passwords, etc. I think there is also an add-on (I don't recall the name of it) that prompts you for a 'master' password before you can use the browser.

If you do use something to save your passwords on websites, make sure to clear all cookies. I do this after each time I close my browser (it is a setting on firefox that automatically does this for me).

Register to Reply
Guru
Engineering Fields - Electrical Engineering - New Member

Join Date: Sep 2006
Location: El Lago, Texas, USA
Posts: 2639
Good Answers: 65
#3

Re: What Are Good Password Utilities?

08/19/2009 1:53 PM

I keep mine handwritten on paper.

Register to Reply
Guru

Join Date: Sep 2006
Posts: 4513
Good Answers: 88
#4

Re: What Are Good Password Utilities?

08/19/2009 2:02 PM

Though not strictly a "password maintenance utility," the following open-source Perl script is a nice one for generating passwords:


#!/usr/bin/perl

## ***************************************************************************
#
# genpass v1.0 (06.2007) Password Generation Program
# Copyright (C) 2007 Jon Brown
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# To read the full text go to [url="http://www.gnu.org/licenses/gpl.txt"]http://www.gnu.org/licenses/gpl.txt[/url]
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
## ***************************************************************************

use strict;
use warnings;
use Getopt::Long;
Getopt::Long::Configure ("bundling");

## PARSE AND SET COMMAND-LINE OPTIONS
## -----------------------------------------------------
my %flags=('symbols', 0, 'numbers', 0, 'uppercase', 0, 'lowercase', 0, 'confusable', 0, 'help', 0, 'qty', 1, 'version', 0);

GetOptions( 's|S|symbols' => \$flags{symbols},
'n|N|numbers' => \$flags{numbers},
'u|U|uppercase' => \$flags{uppercase},
'l|L|lowercase' => \$flags{lowercase},
'c|C|confusable' => \$flags{confusable},
'q|Q:i' => \$flags{qty},
'help' => \$flags{help},
'ver|version' => \$flags{version} );

# Set password characters, excluding those flagged on the command-line
my $pwdchars = join( '', map {chr} ( 0x21 .. 0x7e ));
$pwdchars =~ s/\d+// if ( $flags{numbers} );
$pwdchars =~ s/[A-Z]+// if ( $flags{uppercase} );
$pwdchars =~ s/[a-z]+// if ( $flags{lowercase} );
$pwdchars =~ s/[_\W]+//g if ( $flags{symbols} );
$pwdchars =~ tr/1Il0O//d if ( $flags{confusable} );

# If user triggered the --help option flag, display and exit
if ($flags{help}) {
&DisplayUsage();
exit();
}
elsif ($flags{version}) {
&DisplayVersion();
exit();
}

## START VALIDATE INPUT
## -----------------------------------------------------
my $kill=0; # flag to stop the script if input is invalid (or --help is used)
my @errmsg; # error message descriptions

# If -q option was used to set a quantity of passwords, make sure it contains at
# least a value of 1 so that a password can be generated
if ($flags{qty} == 0 || $flags{qty} < 0) {
$flags{qty}=1;
}

# Check that user hasn't excluded all character-types, warn user, kill script
if ( length($pwdchars) == 0) {
push @errmsg, "** 0x1: At least 1 character-type must be included";
$kill=1;
}

# Check that user has passed only 1 argument (LENGTH) other than options flags, warn user, kill script
if ($#ARGV > 0 || $#ARGV < 0) {
push @errmsg, "** 0x2: Incorrect number of arguments passed";
$kill=1;
}

# Check for only numeric input in LENGTH argument, warn user, kill script
if ($ARGV[0] !~ /^[0-9]+$/) {
push @errmsg, "** 0x3: Invalid input. LENGTH argument must be a numeric value";
$kill=1;
}

# If any of the above validation tests triggered the $kill flag...
if ($kill == 1) {
print "\n** GENPASS ERROR ---------------------------------------------------------";
print "\n** ".@errmsg." Error(s) found"; # display number of errors
foreach my $err (@errmsg) { # display error messages
print "\n".$err;
}
print "\n**\n** Type genpass --help for command usage\n";
print "** -----------------------------------------------------------------------\n\n";
exit(); # exit script
}
## END VALIDATE INPUT

## START MAIN SCRIPT
## -----------------------------------------------------
# From 1 to qty

for ( 1..$flags{qty} ) {
print &GenPass( $ARGV[0] )."\n";
}
exit();

## END MAIN SCRIPT

## FUNCTION DEFINITIONS
## -----------------------------------------------------
sub GenPass() {
my ($pwdlen) = @_;
my $limit = length( $pwdchars );
my $pwd = '';

for ( 0..$pwdlen-1 ) {
$pwd .= substr( $pwdchars, rand( $limit ), 1 );
}

return $pwd;
}

# use Here-Documents to display usage text
sub DisplayUsage {
print <<"USAGE";

Usage: genpass [-snulcqX] LENGTH
Generate secure passwords LENGTH characters long.

-s, --symbols\tExclude symbols.
-n, --numbers\tExclude numbers.
-u, --uppercase\tExclude uppercase letters.
-l, --lowercase\tExclude lowercase letters.

-c, --confusable\tExclude confusable characters like: l,I,1,0,O

-qX\t\t\tCreate X number of passwords.

--help\t\tDisplay Usage information.
--ver, --version\tDisplay version and license information.

Report bugs, comments, and questions to jbrown_home\@yahoo.ca

USAGE
}

# use Here-Documents to display version text
sub DisplayVersion {
print <<"VER";
genpass v1.0 (06.2007) Copyright 2007 Jon Brown

This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

Written by Jon Scott Brown
VER
}
__END__

Register to Reply
Guru
Hobbies - Musician - Engineering Fields - Chemical Engineering - New Member Engineering Fields - Control Engineering - New Member Engineering Fields - Instrumentation Engineering - New Member

Join Date: Jan 2007
Location: Moses Lake, WA, USA, Thulcandra - The Silent Planet (C.S. Lewis)
Posts: 4216
Good Answers: 194
#5

Re: What Are Good Password Utilities?

08/19/2009 3:14 PM

Hi msm98lw,

All the sensitive ones I keep in my head like RVZ717.

For the seemingly countless web site registration passwords, I just use Notepad.

Mike

__________________
"Reason is not automatic. Those who deny it cannot be conquered by it. Do not count on them. Leave them alone." - Ayn Rand
Register to Reply
Associate

Join Date: Jan 2009
Location: Bangalore, India
Posts: 51
#6

Re: What Are Some Good Password Utilities?

08/19/2009 10:42 PM

I used to use and swear by Whisper but switched to KeyPass several months ago and like it.

__________________
Znago
Register to Reply
Power-User
Australia - Member - New Member

Join Date: Jul 2006
Posts: 267
Good Answers: 22
#7

Re: What Are Some Good Password Utilities?

08/19/2009 10:56 PM

I went through the same search... in the end I decided the best way was to keep a very heavily password-protected Microsoft word document (i.e. one with a ginormously long, difficult password) in which I have a table to store all my other passwords (4 colums... eg CR4 | www.etc | username | password).

Every time I register a pasword somewhere I open the document and add that to the list - takes a few seconds only and it doesn't require me to install yet another program to slow down my computer.

It doesn't help me when I'm not at home, although I could email the document to my web mail I suppose.

As far as I know Microsoft Word's password protected documents are secure - am I living in a fool's paradise?

Hope this helps...

Register to Reply
Guru
Hobbies - Musician - Engineering Fields - Chemical Engineering - New Member Engineering Fields - Control Engineering - New Member Engineering Fields - Instrumentation Engineering - New Member

Join Date: Jan 2007
Location: Moses Lake, WA, USA, Thulcandra - The Silent Planet (C.S. Lewis)
Posts: 4216
Good Answers: 194
#8
In reply to #7

Re: What Are Some Good Password Utilities?

08/19/2009 11:38 PM

Hi RobertOz,

As far as I know Microsoft Word's password protected documents are secure - am I living in a fool's paradise?

Uh, yea'ah!

Any phrase including "Microsoft" and "protected" is a contradiction in and of itself.

Mike

__________________
"Reason is not automatic. Those who deny it cannot be conquered by it. Do not count on them. Leave them alone." - Ayn Rand
Register to Reply
Power-User
Australia - Member - New Member

Join Date: Jul 2006
Posts: 267
Good Answers: 22
#13
In reply to #8

Re: What Are Some Good Password Utilities?

08/20/2009 6:35 AM

But I bet I could slip "is not very well" into that phrase and get something meaningful...

Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#9

Re: What Are Some Good Password Utilities?

08/20/2009 1:36 AM

Hello msm98lw,

Well where to start.............. I for one have used and will never use Norton 360 or any other norton app. It does over-write just about everything and produces endless files. However, if you want to keep this, and you may not have a choice anyway, as it is terribly difficult to get rid of.

Have you thought of a USB Personal ID TAG system. Your flash drive can read your finger print, system..........

» Brilliant, just brilliant. USB flash drive becomes personal ID Vault Brilliant, just brilliant. USB flash drive becomes personal ID Vault. ... Think of ID Vault as a personal digital safe to store your most important online ... www.getusb.info/usb-id-vault/

- Cached - Similar -

Coolspot Personal ID - Häufige Fragen Installation guidelines for the Personal ID USB Stick. Please do not plug in the PID USB Stick in your computer yet! Step 1: Please download the equivalent ...

www.personalid.de/?template=install_faqPID_EN&SID...

- Cached - Similar -

Coolspot Personal ID - Häufige Fragen - [ Translate this page ] Warum bin ich für den USB-Stick noch nicht freigeschaltet? Ist der USB-Stick auf andere Rechner übertragbar? Ich sehe ein Personal ID-Icon mit rotem Kreuz ... www.personalid.de/?template=support_faq

- Cached - Similar -

MedicTag USB Flash Drive Medical Alert, Medic ID, medi alert tag Medic Tag USB medical alert. Does your medi alert or medic ID bracelet have ... MedicTag is a digital USB personal medical alert and information device that ... www.medictag.com/

- Cached - Similar -

[PDF] Personal ID-Cert Renewal Process Can Now be Completed Fully Online File Format: PDF/Adobe Acrobat Personal ID-Cert. Note: As we will not deliver the Personal ID-Cert in USB thumb drive to you, please be reminded to keep the file of your renewed Personal ... www.dg-sign.com/document/20090429_NewsUpdate_eng.pdf

- Similar -

Fingerprint ID

www.m2sys.com

Industry Leader in Fingerprint Identification Technology. Search Results

Apple Patents Hint at Tactile Feedback, Fingerprint ID for Future ... 2 Jul 2009 ... Haptic Feedback, Fingerprint Identification, and RFID Tag Readers in ... I understand and agree that registration on or use of this site ... Your username and password will be sent to the e-mail address you provided us ...

www.wired.com/gadgetlab/2009/07/apple-patents/

- Cached - Similar -

Apple's Future iPhone Patents Show Fingerprint ID For Different ... 2 Jul 2009 ... The most interesting is the fingerprint ID directly on the screen so that the iPhone can see which finger you're using and ... Please enter a username. Please enter your password. ... Copy this whole post to another site ...

gizmodo.com/.../apples-future-iphone-patents-show-fingerprint-id-for- different-gestures-plus-more

- Similar -

Integrated Automated Fingerprint Identification System (FBI ... For a definition of "Integrated Automated Fingerprint Identification System (FBI ... Forgot your password? Login Cancel. "Email" is the e-mail address you used ... and share the full text with the readers of your Web site or blog post. ... www.britannica.com/.../Integrated-Automated-Fingerprint-Identification- System

- Cached - Similar -

Fingerprint ID means goodbye to passwords.(tech talk)(Brief ... Fingerprint ID means goodbye to passwords.(tech talk)(Brief Article) - A fingerprint authentication device promises to eliminate the need to ... www.encyclopedia.com/doc/1G1-108195827.html

- Cached - Similar -

Sony Biometric Fingerprint Id Corded Fingerprint Reader Reviews Sony Biometric Fingerprint Id Corded Fingerprint Reader. Password-protected Web sites and applications can now be accessed without having to remember a long ... www.photographyreview.com/.../PRD_400010_1755crx.aspx

- Cached - Similar -

Press Release: -COMPAQ: Compaq cures password headaches with ... M2 PRESSWIRE-8 July 1998-COMPAQ: Compaq cures password headaches with introduction of fingerprint identification technology (C)1994-98 M2 COMMUNICATIONS LTD ... www.highbeam.com/doc/1G1-50140251.html

- Cached - Similar -

Fingerprint I.D. Kit | ID Holders | Promotional Travel | Lifestyle ... If you continue to experience problems browsing our site please call 800.554. 0127 ... Custom Promotional Fingerprint I.D. Kit. Image Viewer ( Zoom) .... If you have forgotten your password please enter your email address above and click ... www.inkhead.com/.../id.../fingerprint-id-kit_pv-12346-0.html

- Cached - Similar -

Website Directory: Biometric Fingerprint ID Authentication - True ID True ID is an identity authentication and adult age verification system desgined to help prevent identity fraud through biometric verification. ... Password: Remember me: ... Site Name: Biometric Fingerprint ID Authentication - True ID ... www.thisisouryear.com/M119889417-Biometric-Fingerprint-ID- Authentication-True-ID

- Cached - Similar -

CNN - Intershop replaces passwords with fingerprint ID system ... Instead of making users sign onto protected sites with a password, the new technology will ... Compaq enters fingerprint ID market (Federal Computer Week) ... www.cnn.com/TECH/computing/9910/01/...idg/index.html

- Cached - Similar - Firm unveils fingerprint ID system - CNET News The biometric terminal, which includes a Fingerprint Identification Unit ... popularity of Internet commerce requires tighter control than simple passwords offer. ... If you believe this comment is offensive or violates the CNET's Site ... news.cnet.com/...fingerprint-ID.../2100-1040_3-221639.html - Cached - Similar - - Cached - Similar -

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Power-User

Join Date: Mar 2007
Location: Devon England
Posts: 214
Good Answers: 5
#10

Re: What Are Some Good Password Utilities?

08/20/2009 3:26 AM

I am of the coded reminder notes on physical paper persuasion for my passwords.

However, should the need arise to help someone who has lost or forgotten their passwords, I can recommend www.loginrecovery.com which will recover your lost passwords so long as you have access to the computer concerned, and a few minutes to load a recovery disc.

Hope this helps

__________________
Hugh Mattos Chartered Engineer...... :---------: Through helping others we give purpose to our time on this earth and take pleasure from it.
Register to Reply
Anonymous Poster
#11

Re: What Are Some Good Password Utilities?

08/20/2009 3:27 AM

OmniPass

Very secure. Operates with Bio (part of me...in my case, finger print) credentials...or not. For me it's replaced uncountable paste-its, and inestimable inconvenience/grief.

UG

Register to Reply
Active Contributor

Join Date: May 2008
Location: San Diego - Tijuana
Posts: 20
#12

Re: What Are Some Good Password Utilities?

08/20/2009 4:49 AM

Hello, I use RoboForm2go, I have it installed on a memory stick and have it set up to locked at all times and require a password to use. I just have to remember 1 password and it remembers the rest. The program encrypts the passwords, and you can set up an automatic lock, that way it will lock when you are not using it. I have mine sent to lock in 20 minutes of non use. It also locks when it is removed from the computer. It will even fill online forms for you. I love it, been using it for a few years now. I learned about it from Leo Laporte. http://www.roboform.com/

If you want to call me toll free click here:
https://me.vonage.com/mglatfelterjr
This is a toll free call.

Get computer help from Michael Glatfelter
download crossloop @ www.crossloop.com
http://www.crossloop.com/TestCrash

Register to Reply
Guru

Join Date: Oct 2006
Location: New Jersey U.S.A.
Posts: 1114
Good Answers: 38
#14

Re: What Are Some Good Password Utilities?

08/20/2009 7:32 AM

I just use ************* for all my passwords!

__________________
The last fight was my fault. My wife asked "What's on the TV?" I said "Dust!"
Register to Reply
Guru

Join Date: Sep 2006
Posts: 4513
Good Answers: 88
#17
In reply to #14

Re: What Are Some Good Password Utilities?

08/20/2009 1:06 PM

'obfuscate' works for me ...

Register to Reply Off Topic (Score 5)
Power-User
United States - Member - New Member Popular Science - Weaponology - New Member Hobbies - Automotive Performance - New Member

Join Date: Sep 2008
Location: Danbury, CT, USA
Posts: 103
Good Answers: 2
#15

Re: What Are Some Good Password Utilities?

08/20/2009 8:36 AM

Thanks all!

There are a lot of good ideas here. Some methods I didn't know about. I'll sort through it this weekend.

__________________
6 * 9 = 42 in base 13
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#16
In reply to #15

Re: What Are Some Good Password Utilities?

08/20/2009 10:33 AM

Hi msm,

Thanks for your appreciation!

Good luck.

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Guru
Popular Science - Weaponology - bwire Hobbies - Car Customizing - New Member

Join Date: Dec 2007
Location: Upper Mid-west USA
Posts: 7498
Good Answers: 97
#18

Re: What Are Some Good Password Utilities?

08/20/2009 1:28 PM

Transfer them into storage at your personal security ID guard site

__________________
If death came with a warning there would be a whole lot less of it.
Register to Reply
Guru
Popular Science - Cosmology - Let's keep knowledge expanding Engineering Fields - Retired Engineers / Mentors - Hobbies - HAM Radio - New Member

Join Date: Dec 2006
Location: North America, Earth
Posts: 4528
Good Answers: 106
#19

Re: What Are Some Good Password Utilities?

08/20/2009 7:26 PM

I am well pleased with KeePass. It can be downloaded here free.

__________________
“I would rather have questions that can't be answered than answers that can't be questioned.” - Richard Feynman
Register to Reply
Guru
United States - Member - USA! Hobbies - Musician - Sound Man Engineering Fields - Mechanical Engineering - More than a Hobby Technical Fields - Technical Writing - New Member

Join Date: Oct 2008
Location: City of Roses.
Posts: 2056
Good Answers: 101
#20

Re: What Are Some Good Password Utilities?

08/20/2009 7:35 PM

I'd just like to say that ANY software or website is hackable, nothing coded by a good man, is completely impenetrable by other code made by an evil man. So depending on the sensitivity of the passwords, hard copies are always the safest (with the exception being locked inside your own cranium).

__________________
Don't believe everything you read on the Internet!
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#21
In reply to #20

Re: What Are Some Good Password Utilities?

08/20/2009 7:54 PM

Hello RVZ717,

In reply in part to your post #20, This is precisely why I have never chosen to open a web bank account! ............................. TO RISKY!

I to go go hard copies and my mobile for some PW's. I never use my phone on-line just as a phone.

Take care.

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Power-User
United States - Member - New Member Popular Science - Weaponology - New Member Hobbies - Automotive Performance - New Member

Join Date: Sep 2008
Location: Danbury, CT, USA
Posts: 103
Good Answers: 2
#23
In reply to #20

Re: What Are Some Good Password Utilities?

08/21/2009 8:14 AM

(with the exception being locked inside your own cranium).

At my age the problem is finding the key.

__________________
6 * 9 = 42 in base 13
Register to Reply Off Topic (Score 5)
Power-User
Hobbies - Musician - New Member Engineering Fields - Manufacturing Engineering - New Member

Join Date: Sep 2007
Location: Endless Mountains of NE Pa, USA
Posts: 298
Good Answers: 20
#24
In reply to #20

Re: What Are Some Good Password Utilities?

08/21/2009 9:12 AM

That's why I use ROLODEX.......by rolodex. It sits here on my desk in its own happy little spot so my fingers can do the walking when needed. If need be I can lock it in a drawer or safe.

I will not store anything of importance on my computers. Confidential files are saved directly to other media. It's just too easy for the hacking scum (I'm being nice) to infiltrate.

If my brain worked a little better I'd store them in my head too. But alas.......I.....thoughts....es..cap...e....what was I saying?

__________________
Courage is not the absence of fear, but the inner resolve to rise above it....or the inane lapse in judgement brought on by copious imbibitions....Egre Flagrus
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#29
In reply to #24

Re: What Are Some Good Password Utilities?

08/21/2009 2:23 PM

Hello snygolfgs,

I apsolutely and totally agree with you and the way you work and use your computer with ref' to safety!!!!!

My family and friends know little about any safe ways of working and put a lot of faith in 'god', literally to keep them safe.

Well I am the one who decides what I enter and what I save on my computer, certainly no greater entity!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Take care my friend.

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Guru
Popular Science - Weaponology - bwire Hobbies - Car Customizing - New Member

Join Date: Dec 2007
Location: Upper Mid-west USA
Posts: 7498
Good Answers: 97
#25
In reply to #20

Re: What Are Some Good Password Utilities?

08/21/2009 11:35 AM

with the exception being locked inside your own cranium

Be careful that type memory can be perishable or develop dependability issues

__________________
If death came with a warning there would be a whole lot less of it.
Register to Reply
Guru
Popular Science - Cosmology - Let's keep knowledge expanding Engineering Fields - Retired Engineers / Mentors - Hobbies - HAM Radio - New Member

Join Date: Dec 2006
Location: North America, Earth
Posts: 4528
Good Answers: 106
#27
In reply to #20

Re: What Are Some Good Password Utilities?

08/21/2009 11:59 AM

"hard copies are always the safest"

I disagree. People can find your notebook. With KeePass, there is a password to open the program, and other passwords are not shown, but may be copied to applications to open them. My employer has approved it for use at work. I use it at home too.

-S

__________________
“I would rather have questions that can't be answered than answers that can't be questioned.” - Richard Feynman
Register to Reply
Guru
United States - Member - USA! Hobbies - Musician - Sound Man Engineering Fields - Mechanical Engineering - More than a Hobby Technical Fields - Technical Writing - New Member

Join Date: Oct 2008
Location: City of Roses.
Posts: 2056
Good Answers: 101
#28
In reply to #27

Re: What Are Some Good Password Utilities?

08/21/2009 12:03 PM

so.... you need a pasword to be able to remember your passwords?

Why does everyone need so many passwords?

__________________
Don't believe everything you read on the Internet!
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#32
In reply to #28

Re: What Are Some Good Password Utilities?

08/21/2009 4:12 PM

Hi RVZ,

You say "Why does everyone need so many passwords"? ......................

Why indeed. When they were hardly know ten years ago! I get really pis-ed when I ring my bank only to ask for my password. Why, They have my account numbers. I know it is all about safety, fine. ............... But, why not have>>> 'alphanumerical' <<< passwords? Just like the real world and real computers do.

It would give a very much more save environment to deal with. And instead of figuring out a 'password' which is in fact a 'pass number' made up from 10 digits 1-9 +0. Have a alphanumerical type of password and it can contain 36 digits!

As an instance look at the 'chip and pin' for credit and, debit cards, just 4 digits. How can they pretend this is safe? I am not saying have l-o-n-g-e-r passwords, just ones that have alphanumeric detail.

l I can remember names I cannot recall a list of numbers.

Take care

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Guru
Popular Science - Weaponology - bwire Hobbies - Car Customizing - New Member

Join Date: Dec 2007
Location: Upper Mid-west USA
Posts: 7498
Good Answers: 97
#34
In reply to #32

Re: What Are Some Good Password Utilities?

08/22/2009 3:24 AM

Why bother with alphanumerics when encryption is the answer

__________________
If death came with a warning there would be a whole lot less of it.
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#35
In reply to #34

Re: What Are Some Good Password Utilities?

08/22/2009 11:57 AM

Hi wire,

I agree with what you say. Trouble is they seem to treat the person (whose money makes them money) as a fool and we have to prove who we are before we can get any details about our account. As long as they have this 'chip and pin' system on cards why not enlarge it to include the alphabet.

What is more frustrating is, I know there is only one of me with my name, address, postcode etc, so why do I need to have to go through the password thing even when using my high street bank? It is a pi-s take first class!

Take care.

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#31
In reply to #27

Re: What Are Some Good Password Utilities?

08/21/2009 3:57 PM

Hi SG,

Please see my post 30. Take care.

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Anonymous Poster
#22

Re: What Are Some Good Password Utilities?

08/20/2009 10:58 PM

Have a look at SplashID (splashdata.com) -- simple to use, small footprint.

Register to Reply
Guru
Popular Science - Weaponology - bwire Hobbies - Car Customizing - New Member

Join Date: Dec 2007
Location: Upper Mid-west USA
Posts: 7498
Good Answers: 97
#26

Re: What Are Some Good Password Utilities?

08/21/2009 11:40 AM

I store my keys on a flash card.

The flash card R/W is stand alone.

__________________
If death came with a warning there would be a whole lot less of it.
Register to Reply
Guru
United Kingdom - Member - Not a new member!

Join Date: Jun 2008
Location: USA/Europe
Posts: 4547
Good Answers: 68
#30
In reply to #26

Re: What Are Some Good Password Utilities?

08/21/2009 3:54 PM

Hi wire,

Are you fine?

I store my keys on a flash card.

As far as I know.................. And that's 'pushing things! LOL ;=) ................ Each time you use your flash memory it produces a Temp' file, which may contain the 'get-a-table' (maybe) passwords? ................ Just a thought, and a reason for keeping an external hard copy of passwords.

Someone mention the >>> Rotofile <<< (I think it was) this seems ideal to me and email address' could be kept on the same files. They take hardly any room and there is no way they can be 'lost', and all pertinent details can be saved on these files in the event you get a new computer and or change your way of working?

Take care my friend.

__________________
Take it easy, bb. >"HEAR & you FORGET<>SEE & you REMEMBER<>DO & you UNDERSTAND"<=$=|O|=$=>"Common Sense is Genius dressed in its Working Clothes"<>[Ralph Waldo Emerson]
Register to Reply
Guru
Popular Science - Weaponology - bwire Hobbies - Car Customizing - New Member

Join Date: Dec 2007
Location: Upper Mid-west USA
Posts: 7498
Good Answers: 97
#33
In reply to #30

Re: What Are Some Good Password Utilities?

08/22/2009 3:20 AM

Defragging the flashcard rids of slack space...

__________________
If death came with a warning there would be a whole lot less of it.
Register to Reply
Guru

Join Date: Feb 2006
Posts: 1758
Good Answers: 6
#36

Re: What Are Some Good Password Utilities?

08/24/2009 10:21 PM

Regards.

Please check:

Password Recovery Utilities

It is famous for "Stand-Alone" Applications.

A lot more ...

Register to Reply
Guru
Hobbies - Musician - Tube Amps Only Please!

Join Date: Apr 2009
Location: Los Angeles, California USA
Posts: 553
Good Answers: 1
#37

Re: What Are Some Good Password Utilities?

10/27/2009 1:11 AM

Try this site free/shareware: http://www.majorgeeks.com/index.php

__________________
Regards, Maveric Manic - 'Knowledge is Power and Wisdom is knowing how to use it'
Register to Reply
Register to Reply 37 comments
Copy to Clipboard

Users who posted comments:

Anonymous Poster (2); babybear (8); bhankiii (1); bwire (5); charsley99 (1); Haajee (1); HughMattos (1); Jaxy (1); maveric_manic (1); mglatfelterjr (1); Mikerho (2); msm98lw (2); RobertOz (2); RVZ717 (3); snygolfgs (1); StandardsGuy (2); user-deleted-13 (2); Znago (1)

Previous in Forum: System Mechanic Pro Problem   Next in Forum: Anybody Understand Earthlink?

Advertisement