Tagged Questions
A login or logon (also called logging in or on and signing in or on) is the process by which individual access to a computer system is controlled by identification of the user using credentials provided by the user.
36
votes
4answers
22k views
HTTP POST Returns The Error: 417 “Expectation Failed.” (C#)
I'm trying to login to a website using HTTP POST. I'm sure the website only requires two POST fields: username and password; there are no hidden fields.
I keep getting the following exception when I ...
33
votes
4answers
9k views
Removing the remembered login and password list in SQL Management Studio
I've recently used our company's spare laptop (that has a general user set up) while mine was being repaired. I've checked the "remember password" option in SQL Management studio when logging in to ...
27
votes
1answer
1k views
registration-url parameter fails for fb:login-button if oauth 2.0 is enabled
I'm trying to get the registration flow for Facebook login working. Here's a bare-bones example:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
...
22
votes
8answers
718 views
Must logins be a https page
Several security experts have said in the past that the login page should be on ssl https. So what if my login is a block that's displayed on all pages. Does that mean that my entire website has to be ...
19
votes
8answers
33k views
(PHP) SHA1 vs md5 vs SHA256: which to use for a PHP login?
I'm making a php login, and I'm trying to decide whether to use SHA1 or Md5, or SHA256 which I read about in another stackoverflow article. Are any of them more secure than others? For SHA1/256, do I ...
19
votes
10answers
2k views
Preventing Brute Force Logins on Websites
As a response to the recent Twitter hijackings and Jeff's post on Dictionary Attacks, what is the best way to secure your website against brute force login attacks?
Jeff's post suggests putting in an ...
18
votes
2answers
13k views
How to change users in TortoiseSVN
I was setting up another user to use our SVN repository. He didn't have a username/passowrd, so I logged in with my credentials. We now have a username/password for him.
How do I get TortoiseSVN to ...
17
votes
7answers
2k views
Inhouse registration vs. OpenID vs. Google Friend Connect vs. Facebook Connect vs. (etc)
I'm trying to decide how to allow users to register for my website... there's openID, clickpass, facebook connect, google friend connect, etc, or the good old fashioned in-house "enter a username, ...
17
votes
12answers
6k views
Best practices for login pages?
I am working on a single sign-on login page using Shibboleth that will be used for a variety of web applications. Obviously we would like to make this page as secure and usable as possible while ...
16
votes
6answers
13k views
Checking if a SQL Server user already exists
I need to check if a specific user already exists on the SQL Server, and if it doesn't, then I need to add it.
I have found the following code to actually add the user to the database, but I want to ...
15
votes
8answers
3k views
How do I implement Direct Identity based OpenID authentication with Zend OpenID
I'm using the Zend framework and the openid selector from http://code.google.com/p/openid-selector/ - however I find I can't login using sites like Google and Yahoo as they use direct identity based ...
14
votes
2answers
3k views
FB.login dialog does not close on Google Chrome
I'm calling FB.login() on a click event in my application. The dialog pops up as expected, but when the user is done logging into Facebook (and/or authorizing the app), the dialog does not close. ...
14
votes
4answers
24k views
Facebook login “given URL not allowed by application configuration”
I've added facebook login to my site. However, when I click the button, I get a red box that says:
Invalid Argument
Given URL is not allowed by the Application configuration.
If I continue to ...
14
votes
7answers
792 views
Why is “Forgotten Password” bad?
I came across this statement
Do not use "forgotten password"
functionality. But if you must, ensure
that you are only providing
information to the actual user, e.g.
by using an email ...
14
votes
4answers
6k views
ASP.NET MVC Login ReturnUrl always NULL?
Using Forms Authentication in ASP.NET MVC when trying to log back into a site, it puts a ReturnUrl parameter in the query string. My Logon action method accepts a "returnUrl" string. However it ...
13
votes
5answers
16k views
C# Login to Website via program
I'm relatively new to using C#, and have an application that reads parts of the source code on a website. That all works; but the problem is that the page in question requires the user to be logged in ...
12
votes
10answers
1k views
What are the pros and cons of using an email as a username?
You know most login forms use user & pass.
And some go the email & pass. What are the pros and cons of them? Here is what I have thought of.
PROS of email
one less thing to remember (as ...
12
votes
2answers
659 views
OpenId + remember me / staying logged in
I have a question as to how / what the best approaches are to using OpenId and also providing the ability to stay logged in.
If i look at Stackoverflow for example i have logged in using Google and ...
12
votes
5answers
5k views
Cross Domain Login - How to login a user automatically when transferred from one domain to another
We offer a number of online services. We are required to develop a system which provides a quick/simple experience for users if they are transferred from one service (on domain1.com) to another ...
11
votes
3answers
101 views
Proper way to use “Remember me” functionality in PHP
Short
Working on login system and trying to implement remember me feature.
Recently, l did research about this subject, read bunch of articles, posts, stories, novels, fairy tales (calling them so, ...
11
votes
3answers
4k views
SQL Server 2008 can't login with newly created user
Using Vista...
1) I open SQL Server Management Studio.
2) I create a new Login by right-clicking on Security->Logins.
Check: SQL Server Authentication
Login name: tester
Password: test
Click OK
3) ...
11
votes
4answers
6k views
Web site login in Java + Google App Engine
I am new to web programming, coming from a video game development background (c++), and am really starting to feel information overload. There are so many competing libraries which all pick something ...
11
votes
6answers
1k views
Please Critique my PHP authentication efforts
After posting this a while back, I decided to create my own Registration / Authentication capability in PHP. I'd love anyone to point out the flaws / opportunities for improvement, particularly ...
11
votes
3answers
4k views
PHP Login system using Cookies and Salted Hashes
I am developing a PHP-based login system.
Each user has an ID(a number) and a password, which is stored as a salted hash.
I am able to figure out if a login is sucessful or not, but now I need to ...
10
votes
2answers
126 views
login implementation in PHP/MySQL/Apache
i am building a new site where a user can login. i have 3 options here:
1) classic:
<form action="/login.php" method="POST">
</form>
and the submit button goes to login.php and ...
10
votes
5answers
3k views
How does browser know when to prompt user to save password?
This is related to the question I asked here:
http://stackoverflow.com/questions/2382329/how-can-i-get-browser-to-prompt-to-save-password
This is the problem: I CAN'T get my browser to prompt me to ...
10
votes
8answers
4k views
How can I get browser to prompt to save password?
Hey, I'm working on a web app that has a login dialog that works like this:
User clicks "login"
Login form HTML is loaded with AJAX and displayed in DIV on page
User enters user/pass in fields and ...
10
votes
6answers
1k views
WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?
Looking for something similar to Mechanize for .NET...
If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/
I will maintain a list of suggestions here. Anything for ...
10
votes
5answers
2k views
Django: signal when user logs in?
In my Django app, I need to start running a few periodic background jobs when a user logs in and stop running them when the user logs out, so I am looking for an elegant way to
get notified of a ...
10
votes
5answers
624 views
To use OpenID or not to use?
I'm new to this site but I've read the rules and also searched the questions section but not found any related question answered well.
anyway, the question: what's the Pros. & Cons. of using ...
10
votes
4answers
9k views
Zend Auth and ACL
I am hoping some can help me a little bit, I am currently developing my first site using a PHP framework, part of the site is spilt into a members area, this is where my confusion begins to surface, ...
9
votes
3answers
925 views
ASP.NET Custom Membership Provider for very large application
I have to come up with a membership solution for a very large website. The site will be built using ASP.NET MVC 2 and a MS SQL2008 database.
The current Membership provider seems like a BIG overkill, ...
9
votes
4answers
4k views
Android Login - Best implementation
I'm planning to implement an Android application that requires a login screen.
If the user opens the activity something like this should happen:
If user is logged in, goto 3
If user is not logged ...
9
votes
7answers
692 views
Is it immoral to put a captcha on a login form?
In a recent project I put a captcha test on a login form, in order to stop possible brute force attacks.
The immediate reaction of other coworkers was a request to remove it, saying that it was ...
9
votes
4answers
302 views
Plug and play login system?
Does anybody know of a plug-and-play login system that supports existing logins like Google and OpenID?
I am looking to implement something similar to that of Stack Overflows.
Thanks!
RPX is indeed ...
9
votes
5answers
796 views
Whats the best way to do user authentication in php?
I have been simply writing 2 cookies, 1 containing the user ID, and the 2nd containing 1/2 the SH1 hash of the password (salted). The way it works is self-evident.
I realized that I wasnt doing this ...
9
votes
4answers
960 views
What should I store in cookies to implement “Remember me” during user login
I have a login system in place for my website, the details of the user which are stored in the database are userid(unique for every user and identifier), email address(unique), display name(not ...
9
votes
2answers
2k views
How should I implement user membership in my ASP.NET MVC site?
I'm creating an ASP.NET MVC site and I need to implement login and membership functionality.
Is this something where I roll my own? I already have a members table in my database, should I create a ...
9
votes
6answers
4k views
How do you enable customers to login to your site using their google account?
I just saw http://uservoice.com/login
It uses google accounts, myspace, yahoo, openid and all to sign in customers into its site? Can I do that?
I mean, customers need not register to my site. They ...
9
votes
10answers
2k views
How do you get the logged in Windows domain account from an ASP.NET application?
We have an ASP.NET application that manages it's own User, Roles and Permission database and we have recently added a field to the User table to hold the Windows domain account.
I would like to ...
8
votes
1answer
184 views
Implementing log in alongside suPHP
How can a log in like feature be designed to use suPHP's file permissions. For example, if I have a website at www.example.com and the following two users with their own home directories, each with a ...
8
votes
1answer
184 views
Log in to desktop application by Windows Live ID
I want to create a login form for my desktop application that user can use Windows Live ID for that.
I create an application in manage.dev.live.com and use Desktop Implementation section.
I use a ...
8
votes
5answers
271 views
Best practice for 'remember me' functionality?
As part of a larger project I'm working on, we're looking to integrate a 'remember me' function in the user login process. One suggestion from the lead developer was to simply store their PHP ...
8
votes
7answers
430 views
Instant login from email. Why have so few done this?
Tried searching for this but turned up nothing. Discussion or relevant links are requested.
Suppose we are going to send an email to entice a user to login to our super social webapp. The goal of ...
8
votes
5answers
810 views
ASP.NET MVC - How to maintain ModelState from a different controller?
I have a HomeController with an Index action that shows the Index.aspx view. It has a username/password login section. When the user clicks the submit button, it POSTs to a Login action in the ...
8
votes
5answers
18k views
How to add two edit text fields in an alert dialog
I am trying to use an alert dialog to prompt for a username and a password in android. I have found this code here:
if (token.equals("Not Found"))
{
LayoutInflater factory = ...
8
votes
2answers
1k views
Secure login on your domain with Google App Engine
We are starting a very large web based service project. We are trying to decide what hosting environment to use. We would really like to use Google App Engine for scalability reasons and to eliminate ...
8
votes
5answers
416 views
'Phone' style password entry with javascript
I am looking to improve the accessibility of a site for very young children. As their keyboard skills are quite poor, we get alot of complaints that entering passwords without being able to see the ...
8
votes
7answers
475 views
Are there any viable alternatives to “classic” cookie authentication?
Is there any way (apart from HTTP authentication, which I gather is inherently insecure over the Internet?) for a "real life" website to handle logins and authentication rather than the traditional ...
8
votes
12answers
63k views
Error 1053: the service did not respond to the start or control request in a timely fashion
i know this is very much a "how long is a piece of string" type of question, however i have recently inherited a couple of applications that run as windows services, and i am having problems providing ...