Tagged Questions
The user-authentication tag has no wiki summary.
9
votes
5answers
794 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 ...
7
votes
3answers
535 views
Why is it a bad idea to use ClientLogin for web apps in the Google API?
I just picked up the Google API today to allow some users of our site to upload videos to our own organization YouTube account. I Don't want our users to know our user name and password, but rather ...
7
votes
5answers
219 views
Are usernames a valid candidate for a primary key?
I know surrogate primary keys are generally recommended over natural primary keys, but are there any arguments in favor of surrogate primary keys when it comes to usernames?
6
votes
3answers
2k views
How to “soft delete” user with Devise
I currently use Devise for user registration/authentication in a Rails project. When a user wants to cancel their account, the user object is destroyed, which leaves my application in an undesired ...
6
votes
2answers
239 views
Rethinking the User Login Process: User/Display Name and OpenID
Using openID has brought up some questions that I'm hoping the SO community can help me answer.
OpenID and the (now obsolete) Username
From what I've read, one of the main goals of openID is to ...
5
votes
10answers
369 views
Do i really need to hash passwords?
I am building a project, which has a pretty basic login system. There will NO REGISTRATION system available, the users will be added manually. Also i protected the databases data input gates very ...
5
votes
2answers
183 views
Does my PHP security algorithm effectively store user credentials?
This question is about a specific programming problem I am having - I want to make sure that my code (and software algorithm) are sufficient enough to store user credentials in a database.
// Get a ...
5
votes
1answer
534 views
Facebook Login as supplement to existing login?
I am developing a PHP/MySQL e-commerce site with some social aspects, and am looking to integrate it with Facebook. I already have a native user registration/session handling system. I have managed to ...
4
votes
4answers
2k views
Open Source login systems, what is good?
I am starting a a new web development project and I am tired of coding login systems. This is the kind of thing that must have been done dozens of times before. I really want to use someone else's ...
3
votes
1answer
880 views
Update cookies for Facebook connect based site?
I'm using the Facebook Connect API for the login system on a website built using PHP. There is no straightforward way to determine if a user is logged in.
$fb = new Facebook($api, $secret);
...
2
votes
1answer
48 views
Migrating existing user details to new authentication system
Recently I have changed my authentication system to devise. I want to migrate my existing user data to this new system. Previous one was using SHA256 hash to save password. As I know this encryption ...
2
votes
1answer
67 views
Share Authentication between different Apps in CakePHP?
I'm still sort of new to CakePHP, and I've presently created and deployed one (rather complex) application using it. It has full user and group support and I took the time to get the access tables ...
2
votes
1answer
315 views
How should I implement session management/authentication on Tomcat with future OAuth implementation in mind?
I'm working on a web site and I plan to use strictly OAuth in for user authentication. I've never implemented session management/user authentication before; and so - naturally - I'm reading up on a ...
2
votes
4answers
62 views
Sharing user accounts between multiple sites
Here's a scenario:
You log into GMail at mail.google.com and then you go to docs.google.com and you are automatically logged in there too.
Is it possible to share user accounts between sites like ...
2
votes
1answer
595 views
Mongoengine User Authentication
Does anyone have specific examples of using the authentication from Mongoengine?
A couple questions I have are:
extending the User class
from mongoengine.django.auth import User
from mongoengine ...
2
votes
2answers
167 views
How can I force the “Run As” form to appear when someone tries to run my .net desktop application?
I need in to popup thr "Run As" form when user tries to run my application (C#.NET 4, on Win XP), that he could easily to log as other user. It may be in the application itself (in the C# code) or in ...
2
votes
1answer
592 views
Use default credentials in order to call DirectoryEntry
I am working in a Login page and teh logic is like ->
try
{
DirectoryEntry LDAPLogin = new DirectoryEntry(ConfigurationSettings.AppSettings ["LDAPPath"].ToString(), Usuario, ...
2
votes
4answers
211 views
user identification with openID
Since I have never used openID befor I have no idea about it.
I want to know when someone want to log into my website using openID do I have to register his information (is there any registration ...
1
vote
3answers
58 views
Load variables from database to javascript with user authentication
I'm a designer creating a fantasy adventure website and need to store some typical variables like the user's race, character class, and level. I'm looking for a simple and popular php backend that ...
1
vote
1answer
49 views
Django user authentication: not redirecting after login
My website has a front page that has a link to a forum. Access to the forum requires that the user be logged in. I have therefore given the view show_forum the decorator: @login_required. When the ...
1
vote
0answers
95 views
How to get user name in session bean when redirected to error page?
Can anyone tell me how to get user name in session bean correctly? In our application we do it by calling this method:
@Resource
private EJBContext _context;
private String getUserName() {
...
1
vote
1answer
280 views
How can I implement/Create role based custom user authentication in asp.net MVC 3
How can I implement role based custom user authentication in asp.net MVC 3. Consider I have two table UserInfo(UserId, UserName, Password,RoleId) and Role(RoleId, RoleName).
I want to validate user ...
1
vote
1answer
96 views
Safe authentication in codeigniter
I'm trying to roll my own authentication system in codeigniter, and have stumbled onto a couple of roadblocks.
If I have the sessions set to use a database, is userdata stored in the database alone ...
1
vote
4answers
37 views
Determining complex security and permissions
I've been put on a project that has a messy class that writes buttons to a page. The app is a document manager and has a popup list of buttons, such as download, email, and print. Depending on the ...
1
vote
2answers
154 views
Firefox .net user authentication not working
I want the TaskBar object to be hidden when someone is not logged in
Here's my code:
if (HttpContext.Current.User.Identity.IsAuthenticated == false){TaskBar.Visible = false;}
This works perfectly ...
1
vote
2answers
64 views
ASP.NET Specific user authentication
Let me describe my situation:
We are developing a web application that creates websites.
Each website it creates is saved in the DB with all it's additional information.
When a client is browsing ...
1
vote
2answers
79 views
Restricting access to “admin” panel for a website?
How can i restrict access to the admin/ section of my website? I can't limit it by IP address because we need to sometimes access the admin/ section from remote client locations (when giving a demo, ...
1
vote
0answers
89 views
web os application connecting MYSQL server through VPN
I'm trying to develop an application that verifies the user name and password on VPN server and if success it has to give the access to the MYSQL server. can any one give me logic for this and if any ...
1
vote
1answer
112 views
WebService and database and user management
I'm new to WebServices.
I want to create (very simple) WebService application with database (maybe MS-SQL) and user authentication (log in, log out) and some function that check is user is logged in ...
1
vote
1answer
215 views
how i can use Authorize attribute in ASP.NET MVC application?
i have a MVC application who have their own authenticate system. he used their own system and check the user by cookie parsing everytime.
how i can put the attribute Authorize on the action wherever ...
1
vote
4answers
119 views
Database design: 1 table or 2?
I have seen a few database designs where it has all user information in an account table, including password, email, DOB, First Name, Last Name etc.
I have seen some others that have two tables
...
1
vote
4answers
270 views
Require User to be Logged in to Download ZIP Files
Is it possible to require the user be authenticated (logged in) when downloading ZIP files from my site? Note that I don't have direct control of IIS7. (I'm on a shared hosting account.)
I can't ...
1
vote
7answers
283 views
php password protected website
I'm new to web programing and im trying to find a few good examples / tutorials on how to do a decent job of creating a website that requires users to log on to view any pages beyond the main log in ...
1
vote
1answer
804 views
LDAP Authentication using DirectoryEntry
We use to authenticate user on AD using the following DirectoryEntry constructor:
new DirectoryEntry(path, domainName + "\\" + UserName, Password);
It use to work fine until the Domain Controller ...
1
vote
2answers
319 views
Custom user authentication. How is it done, with the best practices?
I'm using Google Engine App with Python. I want to add custom user authentication. How is it done, with the best practices?
I want custom authentication because the app is built in Flex and I don't ...
1
vote
5answers
2k views
Any working tutorials for Authlogic?
I've been trying to build my first rails app and have gotten stuck on the issue of user authentication. I've found a number of tutorials for using various plug-ins to do this, but so far every single ...
1
vote
1answer
183 views
Getting user list in Silverlight?
I have a Silverlight web app which uses ASP.net Website administration tool for user authentication. Now is there any way by which I can get the list of all registered users in Silverlight?
1
vote
2answers
232 views
django user auth + gwt
I have a django server app that communicates with a gwt front-end using JSON. I want to introduce user authentication to the app and have started to incorporate the framework provided by django. At ...
0
votes
1answer
53 views
How to implement Django Login using Facebook Registration
I am new to Django and Facebook API and I would like to make my site only available to people who have a facebook account.
I have seen this link for facebook registration and also have read some ...
0
votes
0answers
28 views
Programmatically schedule OS X to wake from sleep. User Authentication
I want my program to wake the computer from sleep at scheduled times. I know I should use Authorization Services and IOPMSchedulePowerEvent. I run the code, then check to see if a system wakeup is ...
0
votes
1answer
23 views
Is using files and directories instead of a database for authenticating users a good option?
I want to know, that if I save the username as a folder name, and then the hashed password in an encrypted file inside the folder for each user with other user data in that folder, is it better than ...
0
votes
0answers
24 views
Stack Exchange Cross Domain Login
When I am logged onto Stack Overflow, then go over to Stack Exchange (and am not already logged in, but have an account), a message pops up alerting me that I have been automatically logged in. Given ...
0
votes
0answers
45 views
Is it possible to make a login iPhone application from a website you don't have access to the users and password database
Hello I am making an iPhone app that's home screen is a user login page. I would like to know if it is possible to successfully connect to the website's database to login the user and retrieve data. ...
0
votes
1answer
33 views
Checking for Correct User in JavaScript SDK
I am thinking of tying in a Facebook JavaScript-based application with an existing website that has it's own user accounts, but have a question about a specific user situation.
The website is run ...
0
votes
1answer
146 views
has_secure_password User Authorization
I have followed the Railcast #270 has_secure_password tutorial and have that all working.
For example, I have the following in my header:
<% if current_user %>
<li><%= link_to ...
0
votes
1answer
98 views
User Authentication and permissions table structure
I am creating a user authentication library (for the exercise).
One of the things I am adding is is, a user can be assigned to multiple roles.
Each role has set of permissions (think editUser, ...
0
votes
1answer
200 views
How To Authenticate In Symfony2 Using Two Different Tables
I have two tables in this project of mine. One table is for the site admin which stores all the admin users details, and the other table stores all the login data for clients to the site.
At the ...
0
votes
1answer
105 views
How to route and delete devise registration?
I've employed devise as the user-authentication gem for my rails web-app.
Using this pre-generated line:
<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), ...
0
votes
1answer
108 views
Remove Devise Flash Notices for Sign out
As the name says, I am using devise for user auth in a rails 3 app
Upon user log out, there is a flash notice, "User Successfully signed out" that I don't want to appear. However, I can't figure out ...
0
votes
2answers
30 views
Issue with checking for current_user
I have a view which has a "Like" button on it. Before it displays that like button it checks to see if the user has already liked it or not. This is the code for that like "button".
<% if ...