login

sql server 2008 express/enterprise

i'm logged with windows authentification and create an entry/user in the login table... the new testuser has a sql-server authentification, but if a try to login local or remote, only fault 18456... is there any trick... this should be so simple as explained... but should work?! ideas?! ...

How to have multiple logins with ASP.Net?

I'm working on a website with an internal and an external section. The users for both sections are different so they require a different login page. I wanted to configure the authentication differently for both folders, but ASP.Net but it's not allowed. Example (in my main web.config): <authentication mode="Forms"> <forms loginUrl...

Use PHPBB2 Login Credentials in my site

I'm currently using a PHPBB2 forum for a section of one of my sites, and I would like to extend this site (add new pages, scripts, etc). I would like to restrict access to these pages to the users already logged in the PHPBB2 Forum. In fact, if only members of a certain MemberGroup could access these pages, that would be great. Is th...

SSPI Connection in .Net 2.0 Web Service

I'm trying to test a .Net 2.0 Web Service I created in C#. One of our servers is on windows 2000 and can currently only support .Net 2.0 . I can test it local to my machine and it works fine but when I move it to the target server for production it produces an error. I want it to use Windows authentication, and have it defined as such i...

Can a PHP intranet share Windows logins?

I have created some PHP-based intranet resources that require users to log in. The users create their own logins, and I verify that they are logged in using a cookie. I've been asked if I can tie that login to their Windows login instead. My initial response was "a web page cannot access your Windows login - that would be a security ris...

Best way to register different types of users asp.net mvc

I am looking to register 2 styles of user, they will both have different sets of data in the database. I am looking to use asp.nets membership roles. Are there any simple ways to do this in an mvc app using maybe the account controller? ...

OpenID for websites similar to the one at stackoverflow

Possible Duplicate: How do you enable customers use their openid on your website, just like stackoverflow? Duplicate of: How do you enable customers use their openid on your website, just like stackoverflow? I need to create a login as the one shown at stackoverflow, the openid, google,yahoo etc. how do I get about doing t...

How difficult/time consuming is setting up a .net login page?

We're working on a SSO solution that allows users to log in via .net and then end up at a PHP app. I'm working on the PHP end, and after much work, I've decoded, parsed, and otherwise done things to the cookie that .net sets with the username and ticket expiration date. At least I think I have. My difficulty now is that the .net develo...

Python: How do you login to a page and view the resulting page in a browser?

Hey there, I've been googling around for quite some time now and can't seem to get this to work. A lot of my searches have pointed me to finding similar problems but they all seem to be related to cookie grabbing/storing. I think I've set that up properly, but when I try to open the 'hidden' page, it keeps bringing me back to the login ...

How to get a list of users that can log in locally on Windows?

Is there a way to enumerate all users on a local (NT-based) Windows box that can log in locally? Basically, I need a list of non-system users - this includes Administrator but excludes SYSTEM, LOCAL SERVICE and NETWORK SERVICE. Edit: Yes, I need to do this from code. Since this is a programming website, I thought this was implied. ...

SQL Server 2005 - Linked Servers & Agent Jobs

I have a strange scenario that I am currently unable to explain. I live in hope that it's just "the Friday feeling" or that some kindly sole here will bail my brain out and save me from endless loops of "but why!?" :) Two servers, running SQL Server 2005, with DNS Entries of: 1. ServerA 2. ServerB (Well, they're not really calle...

How Does a Login system generally work with OOP?

Sorry if this is a badly formed question, but I'm trying to make my web applications (using PHP) more OO. *EDIT* I'm developing the Framework myself */EDIT* Everything is great so far, I've made a Front Controller system that taps into a MVC system. The FC figures out what page you want, loads the specific page Controller (*EDIT* which e...

Limiting user login attempts in PHP

Hi there, I'm seeing web apps implementing limitations for user login attempts. Is it a security necessity and, if so, why? For example: you had three failed login attempts, let's try again in 10 minutes!! thanks :) ...

Is it possible for a django application to know user's windows-domain name?

I need to make a simple knowledge-base type application to use in company internal network. To make it simple and fast to use for end-users I would like to skip all the login in part (as it will be only visible to internal network users who we trust anyway) and automaticly pull the domain user name from the user and put it into the datab...

SignOut() without postback in ajax login

Hi, I have one asp.net Ajax Login using webservices. In this login i call the loogout() client side from hyperlink: Sys.Services.AuthenticationService.logout(null,onLogoutCompleted,null,null); return false; My Webservice make : [WebMethod] public void Logout() { FormsAuthentication.SignOut(); } logout work but my page make one...

How to update last login date if "Remember Me" set?

When a user logs in to my site, the date of the visit is stamped in the database (User table). This is handled by the (custom) membership provider. However, if the user checks the "Remember me?" option when logging in, they are (naturally) not prompted to log in on subsequent visits. As the membership provider is not employed in this sit...

Getting Local Windows User login session timestamp in C#

Hi, I've been trying to look around the various .NET class library's for some where I can get the logged in user of the local machine, either connected to a domain or not. So far System.Security.Principal.WindowsPrincipal LoggedUser = System.Threading.Thread.CurrentPrincipal as System.Security.Principal.WindowsPrincipal; // This retu...

Detecting Login Fields

Would there be any way to detect login fields on ANY website using javascript? IE and Firefox have the ability to 'remember' my username and password. I would like to create a script that replicated that functionality. So for example, when presenting the login page for GMail, how could I 'find' the username and password field and get...

How to bypass forced login for a token authenticating service?

OK so whenever anyone hits our site who is not logged in, it pushes to the login page and has them sign in, and then pushes them back to the page they attempted to access. I have been tasked to create a service (using ASHX) that returns reporting data via xml. This is all done, however in order to access it you have to be logged in. Inst...

Should I put complex functionality in the shell login script or separate programs?

I have quite a few simple functions that I had previously kept in my .profile but I decided to put them in Perl scripts and add aliases to the Perl scripts. I feel like this is a bad idea, but the functionality looks/is better in Perl than bash since it is fairly complex (involving floating point math etc.). Are there any best practices...