|
Related Topics:
| How to Create Website with "Member Login"? - Hi, I am trying to create a website with an area that is for paid who pay an annual fee. I'd prefer that each is assigned a user id and password. I would greatly some pointers on what is needed to get..
how to prevent password sharing login website ? - Is there a way to prevent password sharing by members of a webportal from a small sports club. IP address is not possible as members have not a fixed IP address. Is there a way to check the harddisk serial from the member when he loggs inn?..
Software to allow users to draw on a website? - I have been searching for days, which might just mean I am stupid, but does anyone know of any software that would allow users to logon to a website then create graphic on a prepared I am talking simple things like lines and circles. Any..
Remembering website (registered) users - what is best prac.. - Hi Anyone got strong views on the user? What is best practice? Should this be - done using a cookie? - done using IP number?? - done in some other clever way - not done at all?! Rumour has it that cookies that last more than one session..
Question about website security. - I am going to start a website project. Login is a part of it, I do trust that this part is really common, and I think there is same standard way to provide enough security. I am using IIS6 & ASP. I designed just checking by Please..
|
|
|
Next: How to earn 100$ w/0 investment added as a bonus
|
| Author |
Message |
External

Since: Feb 14, 2008 Posts: 5
|
(Msg. 1) Posted: Thu Feb 14, 2008 5:41 am
Post subject: Website Security - Preventing Users storing their login details in Archived from groups: alt>www>webmaster (more info?)
|
|
|
Hi,
I'm creating a web based database. The users of the database will
complete a login form with User Name and Password.
Many browsers offer the user the option of storing their login
details. For example: IE asks if you want to store the login details
when you click the submit button.
I need to know if there anything I can do when I create the login page
(which will be generated by a Perl program) which will either prevent
the browser from offering this option or prevent the user from
accepting it.
Any ideas welcome!
Nigel >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Jan 09, 2008 Posts: 4
|
(Msg. 2) Posted: Thu Feb 14, 2008 1:01 pm
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish wrote:
> Hi,
>
> I'm creating a web based database. The users of the database will
> complete a login form with User Name and Password.
>
> Many browsers offer the user the option of storing their login
> details. For example: IE asks if you want to store the login details
> when you click the submit button.
>
> I need to know if there anything I can do when I create the login page
> (which will be generated by a Perl program) which will either prevent
> the browser from offering this option or prevent the user from
> accepting it.
>
> Any ideas welcome!
>
> Nigel
A site that did that to me I would never use again, but regardless,
there are ways around it anyway.
--
"Yah know I hate it when forces gather in ma' fringe..." - Sheogorath
"Daytime television sucked 20 years ago,
and it still sucks today!" - Marc Bissonette >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Aug 21, 2006 Posts: 53
|
(Msg. 3) Posted: Thu Feb 14, 2008 1:48 pm
Post subject: Re: Website Security - Preventing Users storing their login details in their browser... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"Danish" <nigel.TakeThisOut@bouteyres.com> wrote in message
news:81ad96bf-f485-470a-8e97-8708483a8fdb@i29g2000prf.googlegroups.com...
> Hi,
>
> I'm creating a web based database. The users of the database will
> complete a login form with User Name and Password.
>
> Many browsers offer the user the option of storing their login
> details. For example: IE asks if you want to store the login details
> when you click the submit button.
>
> I need to know if there anything I can do when I create the login page
> (which will be generated by a Perl program) which will either prevent
> the browser from offering this option or prevent the user from
> accepting it.
You cannot control how your viewers use their browser options.
--
Richard. >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Jan 24, 2008 Posts: 14
|
(Msg. 4) Posted: Thu Feb 14, 2008 4:49 pm
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish wrote:
> Many browsers offer the user the option of storing their login details.
> For example: IE asks if you want to store the login details when you
> click the submit button.
>
> I need to know if there anything I can do when I create the login page
> (which will be generated by a Perl program) which will either prevent
> the browser from offering this option or prevent the user from accepting
> it.
Firstly, think very carefully before attempting to do such a thing.
Browsers offer this facility because people like this facility. If you
attempt to disable it, chances are you'll just annoy your visitors. If
you're not a bank, or offering access to people's medical records, or
safeguarding the launch codes for some nation's nuclear missiles, then
it's probably better to just live with autocomplete -- don't try to work
your way around it.
Bear in mind that having working autocomplete allows the user to choose
very long and hard-to-remember passwords, safe in the knowledge that they
don't need to type them very often. If you disable autocomplete, users may
be tempted to choose shorter, easier to type passwords. So disabling
autocomplete could paradoxically make your site *less* secure!
If you have thought about this, and are really sure you want to disable
autocomplete, then the trick is to add 'autocomplete="off"' to all the
<input> elements for which you wish to disable the feature. This is a
proprietary Microsoft attribute, so it will make your HTML invalid, but it
should do the trick most of the time -- and not just for Internet
Explorer, as most other browser vendors have adopted it too.
--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 15 days, 22:44.]
Mince & Dumplings
http://tobyinkster.co.uk/blog/2008/02/10/mince-dumplings/ >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Nov 15, 2007 Posts: 99
|
(Msg. 5) Posted: Thu Feb 14, 2008 4:49 pm
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Toby A Inkster wrote:
>
> Firstly, think very carefully before attempting to do such a thing.
> Browsers offer this facility because people like this facility. If you
> attempt to disable it, chances are you'll just annoy your visitors. If
> you're not a bank, or offering access to people's medical records, or
> safeguarding the launch codes for some nation's nuclear missiles, then
> it's probably better to just live with autocomplete -- don't try to work
> your way around it.
>
> Bear in mind that having working autocomplete allows the user to choose
> very long and hard-to-remember passwords, safe in the knowledge that they
> don't need to type them very often. If you disable autocomplete, users may
> be tempted to choose shorter, easier to type passwords. So disabling
> autocomplete could paradoxically make your site *less* secure!
>
> If you have thought about this, and are really sure you want to disable
> autocomplete, then the trick is to add 'autocomplete="off"' to all the
> <input> elements for which you wish to disable the feature. This is a
> proprietary Microsoft attribute, so it will make your HTML invalid, but it
> should do the trick most of the time -- and not just for Internet
> Explorer, as most other browser vendors have adopted it too.
>
Not tested, but pretty sure it would work: Add a generated timestamp or
random string to the input name:
<input type="password" name="password_74234915">
That said, I completely agree with the other comments - I probably
wouldn't bother to use the site. It's a pretty sure-fire way to lose users. >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Apr 27, 2005 Posts: 593
|
(Msg. 6) Posted: Thu Feb 14, 2008 5:08 pm
Post subject: Re: Website Security - Preventing Users storing their login details in their browser... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish <nigel.DeleteThis@bouteyres.com> wrote:
> Hi,
>
> I'm creating a web based database. The users of the database will
> complete a login form with User Name and Password.
>
> Many browsers offer the user the option of storing their login
> details. For example: IE asks if you want to store the login details
> when you click the submit button.
>
> I need to know if there anything I can do when I create the login page
> (which will be generated by a Perl program) which will either prevent
> the browser from offering this option or prevent the user from
> accepting it.
>
> Any ideas welcome!
Besides the good advice by Toby:
* check passwords if they are weak or strong
* expire passwords after a given time
--
John Bokma http://johnbokma.com/ >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Feb 14, 2008 Posts: 5
|
(Msg. 7) Posted: Mon Feb 18, 2008 4:59 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Feb 14, 8:01 pm, WindsorFox <darkshado... DeleteThis @gmail.com> wrote:
> Danish wrote:
> > Hi,
>
> > I'm creating a web based database. The users of the database will
> > complete a login form with User Name and Password.
>
> > Many browsers offer the user the option of storing their login
> > details. For example: IE asks if you want to store the login details
> > when you click the submit button.
>
> > I need to know if there anything I can do when I create the login page
> > (which will be generated by a Perl program) which will either prevent
> > the browser from offering this option or prevent the user from
> > accepting it.
>
> > Any ideas welcome!
>
> > Nigel
>
> A site that did that to me I would never use again, but regardless,
> there are ways around it anyway.
>
> --
> "Yah know I hate it when forces gather in ma' fringe..." - Sheogorath
>
> "Daytime television sucked 20 years ago,
> and it still sucks today!" - Marc Bissonette- Hide quoted text -
>
> - Show quoted text -
Hi all,
Thanks for the various advice. I should have made clear that the site
I'm creating is for use only by a company's employees (so they don't
have the choice about whether to use it or not), that they may be
accessing the data from 'public' computers and that the data stored is
of a sensitive nature so security is of high importance.
I take the point about autocomplete making it easier for visitors to
use complex passwords. I already have in mind to expire passwords
after a set period and to enforce a mix of alphabetic and numeric
characters and a minimum length.
Thanks again,
Nigel >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Feb 14, 2008 Posts: 5
|
(Msg. 8) Posted: Mon Feb 18, 2008 5:03 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Feb 14, 8:59 pm, Tony <nos... DeleteThis @example.com> wrote:
> Toby A Inkster wrote:
>
> > Firstly, think very carefully before attempting to do such a thing.
> > Browsers offer this facility because people like this facility. If you
> > attempt to disable it, chances are you'll just annoy your visitors. If
> > you're not a bank, or offering access to people's medical records, or
> > safeguarding the launch codes for some nation's nuclear missiles, then
> > it's probably better to just live with autocomplete -- don't try to work
> > your way around it.
>
> > Bear in mind that having working autocomplete allows the user to choose
> > very long and hard-to-remember passwords, safe in the knowledge that they
> > don't need to type them very often. If you disable autocomplete, users may
> > be tempted to choose shorter, easier to type passwords. So disabling
> > autocomplete could paradoxically make your site *less* secure!
>
> > If you have thought about this, and are really sure you want to disable
> > autocomplete, then the trick is to add 'autocomplete="off"' to all the
> > <input> elements for which you wish to disable the feature. This is a
> > proprietary Microsoft attribute, so it will make your HTML invalid, but it
> > should do the trick most of the time -- and not just for Internet
> > Explorer, as most other browser vendors have adopted it too.
>
> Not tested, but pretty sure it would work: Add a generated timestamp or
> random string to the input name:
> <input type="password" name="password_74234915">
>
> That said, I completely agree with the other comments - I probably
> wouldn't bother to use the site. It's a pretty sure-fire way to lose users..- Hide quoted text -
>
> - Show quoted text -
If I do end up taking this approach how would my program know what
field name to expect? Store the name in a cookie? Oh, I suppose a
hidden field with the name in it would do the trick. Or did you have
another solution in mind? >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Nov 16, 2007 Posts: 32
|
(Msg. 9) Posted: Mon Feb 18, 2008 6:57 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Feb 18, 12:59 pm, Danish wrote:
> I should have made clear that the site
> I'm creating is for use only by a company's employees (so they don't
> have the choice about whether to use it or not), that they may be
> accessing the data from 'public' computers and that the data stored is
> of a sensitive nature so security is of high importance.
>
> Nigel
Maybe use two passwords and a pre-decided simple algorithm.
For example after logging in with a first password like
password123 the user is shown the last second password entered,
for example password128,
and asked to enter a new second password
(pre-decided to be the last password entered with the last
digit incremented by one, for example password129),
so the second password changes all the time,
or something like this.... >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Jul 14, 2003 Posts: 1507
|
(Msg. 10) Posted: Mon Feb 18, 2008 8:14 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish wrote:
> On Feb 14, 8:01 pm, WindsorFox <darkshado... RemoveThis @gmail.com> wrote:
>> Danish wrote:
>>> Hi,
>>> I'm creating a web based database. The users of the database will
>>> complete a login form with User Name and Password.
>>> Many browsers offer the user the option of storing their login
>>> details. For example: IE asks if you want to store the login details
>>> when you click the submit button.
>>> I need to know if there anything I can do when I create the login page
>>> (which will be generated by a Perl program) which will either prevent
>>> the browser from offering this option or prevent the user from
>>> accepting it.
>>> Any ideas welcome!
>>> Nigel
>> A site that did that to me I would never use again, but regardless,
>> there are ways around it anyway.
>>
>> --
>> "Yah know I hate it when forces gather in ma' fringe..." - Sheogorath
>>
>> "Daytime television sucked 20 years ago,
>> and it still sucks today!" - Marc Bissonette- Hide quoted text -
>>
>> - Show quoted text -
>
> Hi all,
>
> Thanks for the various advice. I should have made clear that the site
> I'm creating is for use only by a company's employees (so they don't
> have the choice about whether to use it or not), that they may be
> accessing the data from 'public' computers and that the data stored is
> of a sensitive nature so security is of high importance.
>
> I take the point about autocomplete making it easier for visitors to
> use complex passwords. I already have in mind to expire passwords
> after a set period and to enforce a mix of alphabetic and numeric
> characters and a minimum length.
>
> Thanks again,
>
> Nigel
>
>
>
But that won't stop browsers from storing passwords on those public
computers. All it will do is keep the user from reusing the passwords.
The password can still be on the computer - and readable by an
administrator.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex RemoveThis @attglobal.net
================== >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Feb 14, 2008 Posts: 5
|
(Msg. 11) Posted: Wed Feb 20, 2008 5:14 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Feb 18, 2:14 pm, Jerry Stuckle <jstuck... RemoveThis @attglobal.net> wrote:
> Danish wrote:
> > On Feb 14, 8:01 pm, WindsorFox <darkshado... RemoveThis @gmail.com> wrote:
> >> Danish wrote:
> >>> Hi,
> >>> I'm creating a web based database. The users of the database will
> >>> complete a login form with User Name and Password.
> >>> Many browsers offer the user the option of storing their login
> >>> details. For example: IE asks if you want to store the login details
> >>> when you click the submit button.
> >>> I need to know if there anything I can do when I create the login page
> >>> (which will be generated by a Perl program) which will either prevent
> >>> the browser from offering this option or prevent the user from
> >>> accepting it.
> >>> Any ideas welcome!
> >>> Nigel
> >> A site that did that to me I would never use again, but regardless,
> >> there are ways around it anyway.
>
> >> --
> >> "Yah know I hate it when forces gather in ma' fringe..." - Sheogorath
>
> >> "Daytime television sucked 20 years ago,
> >> and it still sucks today!" - Marc Bissonette- Hide quoted text -
>
> >> - Show quoted text -
>
> > Hi all,
>
> > Thanks for the various advice. I should have made clear that the site
> > I'm creating is for use only by a company's employees (so they don't
> > have the choice about whether to use it or not), that they may be
> > accessing the data from 'public' computers and that the data stored is
> > of a sensitive nature so security is of high importance.
>
> > I take the point about autocomplete making it easier for visitors to
> > use complex passwords. I already have in mind to expire passwords
> > after a set period and to enforce a mix of alphabetic and numeric
> > characters and a minimum length.
>
> > Thanks again,
>
> > Nigel
>
> But that won't stop browsers from storing passwords on those public
> computers. All it will do is keep the user from reusing the passwords.
> The password can still be on the computer - and readable by an
> administrator.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstuck... RemoveThis @attglobal.net
> ==================- Hide quoted text -
>
> - Show quoted text -
Hi Jerry,
You've got me worried now! Do you know how banks and such like get
around this security loop-hole?
I'm also wondering how the browser decides if the fields entered
represent a Login and Password pair.
I'm thinking of using the approach of randomising the two field names
as suggested by Tony, but would the issue you've referred to still
apply?
Nigel >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Jan 24, 2008 Posts: 14
|
(Msg. 12) Posted: Wed Feb 20, 2008 10:29 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish wrote:
> On Feb 14, 8:59 pm, Tony <nos....RemoveThis@example.com> wrote:
>
>> Not tested, but pretty sure it would work: Add a generated timestamp or
>> random string to the input name:
>> <input type="password" name="password_74234915">
>
> If I do end up taking this approach how would my program know what field
> name to expect?
Why does it need to know which field to expect? Just loop through *all*
the fields and find one which starts with "password_".
--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 21 days, 16:46.]
Bottled Water
http://tobyinkster.co.uk/blog/2008/02/18/bottled-water/ >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Nov 15, 2007 Posts: 99
|
(Msg. 13) Posted: Wed Feb 20, 2008 10:53 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish wrote:
> Hi Jerry,
>
> You've got me worried now! Do you know how banks and such like get
> around this security loop-hole?
They don't. ALL of my accounts have the login info stored on my computer.
> I'm also wondering how the browser decides if the fields entered
> represent a Login and Password pair.
>
> I'm thinking of using the approach of randomising the two field names
> as suggested by Tony, but would the issue you've referred to still
> apply?
Not viewable easily, but as he said, still available to an admin. And
still annoying to your users. >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Jul 14, 2003 Posts: 1507
|
(Msg. 14) Posted: Wed Feb 20, 2008 1:43 pm
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Danish wrote:
> On Feb 18, 2:14 pm, Jerry Stuckle <jstuck....DeleteThis@attglobal.net> wrote:
>> Danish wrote:
>>> On Feb 14, 8:01 pm, WindsorFox <darkshado....DeleteThis@gmail.com> wrote:
>>>> Danish wrote:
>>>>> Hi,
>>>>> I'm creating a web based database. The users of the database will
>>>>> complete a login form with User Name and Password.
>>>>> Many browsers offer the user the option of storing their login
>>>>> details. For example: IE asks if you want to store the login details
>>>>> when you click the submit button.
>>>>> I need to know if there anything I can do when I create the login page
>>>>> (which will be generated by a Perl program) which will either prevent
>>>>> the browser from offering this option or prevent the user from
>>>>> accepting it.
>>>>> Any ideas welcome!
>>>>> Nigel
>>>> A site that did that to me I would never use again, but regardless,
>>>> there are ways around it anyway.
>>>> --
>>>> "Yah know I hate it when forces gather in ma' fringe..." - Sheogorath
>>>> "Daytime television sucked 20 years ago,
>>>> and it still sucks today!" - Marc Bissonette- Hide quoted text -
>>>> - Show quoted text -
>>> Hi all,
>>> Thanks for the various advice. I should have made clear that the site
>>> I'm creating is for use only by a company's employees (so they don't
>>> have the choice about whether to use it or not), that they may be
>>> accessing the data from 'public' computers and that the data stored is
>>> of a sensitive nature so security is of high importance.
>>> I take the point about autocomplete making it easier for visitors to
>>> use complex passwords. I already have in mind to expire passwords
>>> after a set period and to enforce a mix of alphabetic and numeric
>>> characters and a minimum length.
>>> Thanks again,
>>> Nigel
>> But that won't stop browsers from storing passwords on those public
>> computers. All it will do is keep the user from reusing the passwords.
>> The password can still be on the computer - and readable by an
>> administrator.
>>
>> --
>> ==================
>> Remove the "x" from my email address
>> Jerry Stuckle
>> JDS Computer Training Corp.
>> jstuck....DeleteThis@attglobal.net
>> ==================- Hide quoted text -
>>
>> - Show quoted text -
>
> Hi Jerry,
>
> You've got me worried now! Do you know how banks and such like get
> around this security loop-hole?
>
> I'm also wondering how the browser decides if the fields entered
> represent a Login and Password pair.
>
> I'm thinking of using the approach of randomising the two field names
> as suggested by Tony, but would the issue you've referred to still
> apply?
>
> Nigel
>
>
Yes, you can randomize them - but the issue is still there. You can't
control browser behavior.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex.DeleteThis@attglobal.net
================== >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
External

Since: Feb 14, 2008 Posts: 5
|
(Msg. 15) Posted: Wed Feb 27, 2008 3:03 am
Post subject: Re: Website Security - Preventing Users storing their login details [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Feb 20, 7:53 pm, Tony <nos... DeleteThis @example.com> wrote:
> Danish wrote:
> > Hi Jerry,
>
> > You've got me worried now! Do you know how banks and such like get
> > around this security loop-hole?
>
> They don't. ALL of my accounts have the login info stored on my computer.
>
> > I'm also wondering how the browser decides if the fields entered
> > represent a Login and Password pair.
>
> > I'm thinking of using the approach of randomising the two field names
> > as suggested by Tony, but would the issue you've referred to still
> > apply?
>
> Not viewable easily, but as he said, still available to an admin. And
> still annoying to your users.
So to recap - I can't stop the browser storing a Login/Password pair
(although I'm still unclear how the browser determines that is has
such a pair) and although I can use randomised field names so that
storing the Login/Password pair won't help the bone fide user to
Login, that won't stop a potential hacker finding the information they
need. What a pain!
My bank asks me to enter two specified letters from my password, so my
whole password is never entered, but I think that is getting a bit
extreme for a simple database.
Perhaps a possible solution is to use a cookie to store the User Name.
Then the login screen can simply accept their password and password
fields on their own don't autocomplete (I think?) Add a link to change
user and we're sorted...unless you know different. I know the password
is still stored somewhere on the computer, but someone would have to
dig to find it...
In any case this is a decision that may well end up being made in
favour of the "appearance" of security in preference to ease of use,
but I'll try and make the arguement!
Thanks for all your comments to date...
Nigel >> Stay informed about: Website Security - Preventing Users storing their login de.. |
|
| Back to top |
|
 |  |
|