active questions tagged authentication - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:34:29Zhttp://stackoverflow.com/feeds/tag/authenticationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857039/how-to-authenticate-socks-5-proxies-inside-pac-proxy-auto-config-files0How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) FilesdarkAsPitch2009-12-06T23:37:49Z2009-12-08T21:20:13Z
<p>How can you setup PAC files to use SOCKS proxies with authentication?</p>
<p>Using this simple PAC file as an example:</p>
<pre><code>function FindProxyForURL(url, host) { return "SOCKS 69.123.133.75:7257;"; }
</code></pre>
<p>How would you connect to that socks proxy using a username and password?</p>
http://stackoverflow.com/questions/1867589/php-problems-with-facebook-connect-authentification0PHP: Problems with Facebook Connect authentificationmarco92w2009-12-08T15:09:57Z2009-12-08T18:32:00Z
<p>I would like to develop an external website using Facebook Connect instead of an own login and registration process.</p>
<p>On the first page (index.php) I have the following code for the login button:</p>
<pre><code><fb:login-button v="2" size="large" autologoutlink="false" onlogin="window.location='/index.php'">Connect with Facebook</fb:login-button>
</code></pre>
<p>For authentification, I use <a href="http://wiki.developers.facebook.com/index.php/PHP" rel="nofollow">this library for PHP</a>.</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="de" />
<meta http-equiv="content-script-type" content="text/javascript" />
<meta http-equiv="content-style-type" content="text/css" />
</head>
<body>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/de_DE" type="text/javascript"></script><script type="text/javascript">FB.init("XYZ");</script>
<?php
error_reporting(E_ALL);
include_once '/XYZ/facebook.php';
include_once 'lib.php';
include_once 'config.php';
$facebook = new Facebook($api_key, $secret);
$user = $facebook->require_login();
$loggedin = FALSE;
if (isset($user)) {
if ($user != '') {
echo '<p>Hello <fb:name firstnameonly="true" uid="'.$user.'" useyou="false" /></p>';
echo '<p><a href="#" onclick="javascript:FB.Connect.logoutAndRedirect(\'/\'); return false">Log out</a></p>';
$loggedin = TRUE;
}
}
if ($loggedin == FALSE) {
echo '<p><fb:login-button onlogin="window.location=\'/\'"></fb:login-button></p>';
}
?>
</body>
</html>
</code></pre>
<p>Unfortunately, it doesn't work yet. What is wrong here?</p>
<p>When I want to access this page, I'm redirected to <a href="http://i46.tinypic.com/2ahward.jpg" rel="nofollow">http://www.facebook.com/login.php?api_key=XYZ&v=1.0&next=XYZ</a> where I have to log in. Then, being logged in to Facebook, I'm redirected again. This time, I get to <a href="http://i49.tinypic.com/33d8b2w.jpg" rel="nofollow">https://login.facebook.com/login.php?auth_token=XYZ</a></p>
http://stackoverflow.com/questions/1017979/record-asp-net-user-in-iis-logs0Record ASP.Net user in IIS logsPervez Choudhury2009-06-19T13:33:15Z2009-12-08T15:24:18Z
<p>I have an ASP.NET 3.5 application (on IIS 6.0) which uses ASP.NET forms authentication. In my IIS logs, I have extended logging turned on including the cs-username field. Even after a user has logged in to my site, the cs-username still displays '-'.</p>
<p>Is there a way to get the authenticated ASP.NET user's name to appear in the username field in the logs?</p>
http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically0How to set Authentication Methods in IIS programatticallyBrett McCann2009-12-07T18:50:38Z2009-12-08T14:20:59Z
<p>We are working on automating the deployment of some IIS applications. I've used cscript.exe inside a windows batch file to create the web app and such. There are however a few settings currently done by hand that I need to automate. Namely, if you look at the properties of an app, under Directory Structure -> Authentication and access control -> Edit, I need to uncheck Enable anonymous access and check Integrated Windows authentication.</p>
<p>Is there an easy way to do this from a windows batch file?</p>
<p>EDIT: I should clarify this is IIS 6.0, so appcmd is not available.</p>
http://stackoverflow.com/questions/1866206/how-to-use-grail-authentication-plugin-action-from-link0How to use grail authentication plugin action from link? thickosticko2009-12-08T10:56:44Z2009-12-08T10:56:44Z
<p>I am using the authentication plugin in grails. The logout button code is something like this:-</p>
<p>
</p>
<p>However this creates a submit button on the page. I want to have a link () instead. Does anyone know a way of doing this? I thought createLink might work, but not sure...</p>
http://stackoverflow.com/questions/960415/cakephp-password-field-is-empty1CakePHP password field is emptyShiv2009-06-06T20:05:06Z2009-12-08T04:25:05Z
<p>Hi,</p>
<p>I am implementing an authentication component,
This is my registration page</p>
<pre>
<code>
create('User',array('action' => 'login'));
echo $form->input('primary_email',array('size'=> 32));
echo $form->input('password',array('label' => 'Password'));
echo $form->input('remember_me',array('label' => 'Remember Me','type'=>'checkbox','checked' => 'false'));
echo $html->link('Forgot Password','/users/forgot/');
echo $form->end('Login');
// Javascripts
echo $javascript->link('jquery',false);
//echo $javascript->link('jquery.validate.js',false);
//echo $javascript->codeBlock($code, array('inline' => false));
?>
</code>
</pre>
<p>When I print the contents of $this->data the password field turns up empty.
How can I resolve this?</p>
<p>When I rename password to password2 or something else it works !!! Strange</p>
http://stackoverflow.com/questions/1864276/wcf-issued-token-authentication-over-basic-http1WCF: Issued Token authentication over Basic HTTPAaron2009-12-08T02:50:21Z2009-12-08T02:50:21Z
<p>I am trying to make a WCF service that will use token-based authentication (so I don't have to send a username and password with every request) but I would like to keep the interface simple, ideally Basic HTTP(S), because I need to be able to call the service from Flash. It appears that the Issued Token authentication mode has to be used with WS-Federation (and also comes with a bunch of other complexity such as SAML and STSes).</p>
<p>Is it possible to use token-based authentication over Basic HTTP? If not, what is the best way to accomplish this scenario?</p>
http://stackoverflow.com/questions/1862042/how-to-allow-rss-aggregators-to-use-feeds-available-only-for-logged-in-users0how to allow RSS aggregators to use feeds available only for logged-in users?miernik2009-12-07T18:45:37Z2009-12-07T20:42:09Z
<p>I want to have RSS feeds in my Django application, which should be
viewable only by a logged-in user. I want to allow users to add these
RSS feeds to all aggregators, so I would need something which would
work like this: supply the feed URL with a token, for example:
<a href="http://example.com/feed/rss&token=AeYQtFjQfjU5m" rel="nofollow">http://example.com/feed/rss&token=AeYQtFjQfjU5m</a> so that token will
cause the feed to be seen as if the user would be logged in.</p>
<p>Is there some library in Django which would provide such a
functionality? </p>
http://stackoverflow.com/questions/1862526/how-to-impersonate-another-windows-user-when-using-windows-authentication3How to impersonate another Windows user, when using Windows authentication?ProfK2009-12-07T20:04:48Z2009-12-07T20:07:28Z
<p>I have an ASP.NET application where only users authenticated by Windows (i.e. logged on user) have access to most pages. Now, my client wants to be able to 'log on' through this app, with a custom login dialogue/page.</p>
<p>Is Authentication the way to achieve this, and how do I go about it?</p>
http://stackoverflow.com/questions/1861418/auto-login-user-to-third-party-site-without-showing-a-password-to-him0Auto login user to third party site without showing a password to himRoman2009-12-07T17:15:01Z2009-12-07T18:18:23Z
<h3>Background</h3>
<p>We are integrating third party email solution into our site. When a user goes to the <code>Mail</code> page it must be automatically authenticated at the <code>Mail</code> site. </p>
<p>For now, the <code>Mail</code> link points to our page which automatically submits a form with the user's login and password. After clicking <code>submit</code> the user is redirected to the <code>Mail</code> site with authentication cookie.</p>
<p>The problem with this approach is that we do not want the user to see his <code>Mail</code> password, because we generate it automatically for him and there are some sane reasons not to show it.</p>
<h3>Question</h3>
<p>Is there any way to receive mail authentication cookies without sending the login information to the client and performing <code>form.submit</code> operation from the client's browser? Is there a better way to do what I'm trying to do?</p>
<h3>Edit</h3>
<p>Of course "I am trying to do it programatically". Looks like that there are no sane solution except pass these login/password to the client. Looks like we must accept that user can see his mail password and somehow make sure he cannot use this information to change password to some other value we will not know.</p>
http://stackoverflow.com/questions/1861868/token-based-authentication-in-wcf0Token-Based Authentication in WCFAaron2009-12-07T18:15:31Z2009-12-07T18:15:31Z
<p>I am creating a website which will contain both ASP.NET pages and a Flash applet. I want to encapsulate my business logic in a WCF service which will be exposed through two endpoints: One accesssible over the Internet through HTTP(S), for use by the Flash client, and one accessible within the data center for use by the application servers. If this does not seem like a good approach, then stop me here; otherwise, I'll move on...</p>
<p>The question is how to authenticate requests coming from the Flash client. Since I don't want to store the user's password in a browser cookie, don't want to send the password with every request, and don't want to have to use HTTPS after the initial login, I plan on using a token-based authentication system. I also don't want the user to have to log into the Flash client after already logging into the site itself, so I plan on using Javascript to pass the token to the Flash client when it starts.</p>
<p>I know WCF supports using the .NET Framework's built-in security framework (System.Security) to enforce access control, and I would like to take advantage of this.</p>
<p>The question, then, is: <b>How do I pass the token to the WCF service when it is called by Flash, and how do I process the token on the server?</b></p>
<ul>
<li>WCF has an "issued token" authentication mode, but it appears this is intended to be used in a full-blown federation scenario with a Secure Token Service and SAML tokens--a bit more complexity that I really want. It is possible to use this mode with my own "simple random-string" tokens? If so, how? Keep in mind this needs to be compatible with Flash.</li>
<li>I could potentially pass the token in a header (either a SOAP header or an HTTP header). In this case, once I've determined which user is making the request, how do I inform the framework so that the System.Security checks will work?</li>
<li>Is there a different approach altogether that I should consider? Anything that avoids sending passwords in every request, lets me use System.Security, and works with Flash is a possibility.</li>
</ul>
http://stackoverflow.com/questions/1859552/wcf-authenticationservice-in-iis7-error0WCF AuthenticationService in IIS7 Errorgermandb2009-12-07T11:54:22Z2009-12-07T17:00:56Z
<p>I have a WCF Server running on IIS 7 using default application pool, with SSL activate, the services is installed in a SBS Server 2008.
I implement client application services with wcf and SQL 2005 for setting the access control in my application. The application run under windows vista and is make with WPF.
In my developer machine the application and the WCF services run well, the IIS i'm use for the trials is the local IIS 7 and the database is the SQL Server 2005 database hosting in my server. I'm using Visual Studio Project Designer to enable and configure client application services. using <code>https://localhost/WcfServidorFundacion</code>.
When i'm change the authentication services location to <code>https://WcfServices:5659/WcfServidorFundacion</code> and recompile the application, the following error show up.
Message:
The web service returned the error status code: InternalServerError. Details of service failure: {"Message":" Error while processing your request ","StackTrace":"","ExceptionType":""}</p>
<p>Stack Trace:
en System.Net.HttpWebRequest.GetResponse()
en System.Web.ClientServices.Providers.ProxyHelper.CreateWebRequestAndGetResponse(String serverUri, CookieContainer& cookies, String username, String connectionString, String connectionStringProvider, String[] paramNames, Object[] paramValues, Type returnType)</p>
<p>InnerException: System.Net.WebException
Message="Remote Server Error: (500) Interal Server Error."</p>
<p>I can access the WCF service from the navigator using the url mentioned above and even make a webReference in my project. I make a capture of the response but I'cant post it because i don't have 10 reputation points </p>
<p>I activate the error log in the IIS 7 server, and the result is a Warning in the ManagedPipilineHandler. I appreciate if any one can help me </p>
<p>Errors & Warnings
No.↓ Severity Event Module Name<br>
132. view trace Warning -MODULE_SET_RESPONSE_ERROR_STATUS
ModuleName ManagedPipelineHandler
Notification 128
HttpStatus 500
HttpReason Internal Server Error
HttpSubStatus 0
ErrorCode 0
ConfigExceptionInfo<br>
Notification EXECUTE_REQUEST_HANDLER
ErrorCode La operación se ha completado correctamente. (0x0)</p>
<p>Maybe this can help, is the web.config of my service</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<!--
Nota: como alternativa para editar manualmente este archivo, puede utilizar la
herramienta Administración de sitios web para configurar los valores de la aplicación. Utilice
la opción Sitio Web->Configuración de Asp.Net en Visual Studio.
Encontrará una lista completa de valores de configuración y comentarios en
machine.config.comments, que se encuentra generalmente en
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<appSettings />
<connectionStrings>
<remove name="LocalMySqlServer" />
<remove name="LocalSqlServer" />
<add name="fundacionSelfAut" connectionString="Data Source=FUNDACIONSERVER/PRUEBAS;Initial Catalog=fundacion;User ID=wcfBaseDatos;Password=qwerty_2009;" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<profile enabled="true" defaultProvider="SqlProfileProvider">
<providers>
<clear />
<add name="SqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="fundacionSelfAut" applicationName="fundafe" />
</providers>
<properties>
<add name="FirstName" type="String" />
<add name="LastName" type="String" />
<add name="PhoneNumber" type="String" />
</properties>
</profile>
<roleManager enabled="true" defaultProvider="SqlRoleProvider">
<providers>
<clear />
<add name="SqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="fundacionSelfAut" applicationName="fundafe" />
</providers>
</roleManager>
<membership defaultProvider="SqlMembershipProvider">
<providers>
<clear />
<add name="SqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="fundacionSelfAut" applicationName="fundafe" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="true" requiresUniqueEmail="true" passwordFormat="Hashed" />
</providers>
</membership>
<authentication mode="Forms" />
<compilation debug="true" strict="false" explicit="true">
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>
<!--
La sección <authentication> permite la configuración
del modo de autenticación de seguridad utilizado por
ASP.NET para identificar a un usuario entrante.
-->
<!--
La sección <customErrors> permite configurar las
acciones que se deben llevar a cabo/cuando un error no controlado tiene lugar
durante la ejecución de una solicitud. Específicamente,
permite a los desarrolladores configurar páginas de error html
que se mostrarán en lugar de un seguimiento de pila de errores.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</controls>
</pages>
<httpHandlers>
<remove verb="*" path="*.asmx" />
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpModules>
<sessionState timeout="40" />
</system.web>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="WarnAsError" value="false" />
</compiler>
</compilers>
</system.codedom>
<!--
La sección webServer del sistema es necesaria para ejecutar ASP.NET AJAX en Internet
Information Services 7.0. Sin embargo, no es necesaria para la versión anterior de IIS.
-->
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</handlers>
<tracing>
<traceFailedRequests>
<add path="*">
<traceAreas>
<add provider="ASP" verbosity="Verbose" />
<add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" />
<add provider="ISAPI Extension" verbosity="Verbose" />
<add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module" verbosity="Verbose" />
</traceAreas>
<failureDefinitions statusCodes="401.3,500,403,404,405" />
</add>
</traceFailedRequests>
</tracing>
<security>
<authorization>
<add accessType="Allow" users="germanbarbosa,informatica" />
</authorization>
<authentication>
<windowsAuthentication enabled="false" />
</authentication>
</security>
</system.webServer>
<system.web.extensions>
<scripting>
<webServices>
<authenticationService enabled="true" requireSSL="true" />
<profileService enabled="true" readAccessProperties="FirstName,LastName,PhoneNumber" />
<roleService enabled="true" />
</webServices>
</scripting>
</system.web.extensions>
<system.serviceModel>
<services>
<!-- this enables the WCF AuthenticationService endpoint -->
<service behaviorConfiguration="AppServiceBehaviors" name="System.Web.ApplicationServices.AuthenticationService">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="userHttps" bindingNamespace="http://asp.net/ApplicationServices/v200" contract="System.Web.ApplicationServices.AuthenticationService" />
</service>
<!-- this enables the WCF RoleService endpoint -->
<service behaviorConfiguration="AppServiceBehaviors" name="System.Web.ApplicationServices.RoleService">
<endpoint binding="basicHttpBinding" bindingConfiguration="userHttps" bindingNamespace="http://asp.net/ApplicationServices/v200" contract="System.Web.ApplicationServices.RoleService" />
</service>
<!-- this enables the WCF ProfileService endpoint -->
<service behaviorConfiguration="AppServiceBehaviors" name="System.Web.ApplicationServices.ProfileService">
<endpoint binding="basicHttpBinding" bindingNamespace="http://asp.net/ApplicationServices/v200" bindingConfiguration="userHttps" contract="System.Web.ApplicationServices.ProfileService" />
</service>
</services>
<bindings>
<basicHttpBinding>
<!-- Set up a binding that uses Username as the client credential type -->
<binding name="userHttps">
<security mode="Transport">
</security>
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="AppServiceBehaviors">
<serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="SqlRoleProvider" />
<serviceCredentials>
<userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="SqlMembershipProvider" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
</configuration>
</code></pre>
http://stackoverflow.com/questions/1846533/open-id-authentication-in-the-same-page2Open id authentication in the same pageSalvin Francis2009-12-04T12:01:13Z2009-12-07T16:05:09Z
<p>I have a requirement where the login page opens up the main page in a popup,</p>
<p>this is how I handled it in normal authentication:</p>
<pre><code><http>
...
<form-login login-page="/Login.html" authentication-failure-url="/LoginHandler.jsp" always-use-default-target="false" default-target-url="/LoginHandler.jsp"/>
...
</http>
</code></pre>
<p>Login page creates an ajax call (internally using GWT's Request Builder) and reads the response html page. so, if the LoginHandler.jsp contains "success", the login is a success,
or if the LoginHandler.jsp contains "failure" the login has failed.</p>
<p>either case, Login.html is aware of authentication failure or success and opens a popup containing the main screen on success.</p>
<p>Now, I need to make my system support OpenID, if I understand well, the open id authentication works in the following manner, if it succeeds, it will open the success url (mostly LoginHandler.jsp in my case), However, if it fails.... It opens up the Target server's Login screen (eg google's login screen), how do I design my code to work in this senario ??</p>
<p>this is my config:</p>
<pre><code><openid-login authentication-failure-url="/LoginHandler.jsp" default-target-url="/LoginHandler.jsp" user-service-ref="openIdUserService"/>
</code></pre>
<p>here is how i am logging in using RequestBuilder:</p>
<pre><code>// Encode values for sending as a post request.
String postData = "j_username=" + username
+ "&j_password=" + password
+ ((isRemembered) ? "&_spring_security_remember_me=on" : "");
String serverUrl = URL.encode("j_spring_security_check");
/*
* Authenticate the user using a request builder to send the request to the server.
* <p>on successful authentication, open main screen in a pop up
* */
try
{
RequestBuilder requestBuilder = new RequestBuilder(RequestBuilder.POST, URL.encode(serverUrl));
requestBuilder.setHeader("Content-Type", "application/x-www-form-urlencoded");
requestBuilder.sendRequest(postData, new RequestCallback()
{
public void onError(Request request, Throwable exception)
{
//Do nothing
}
public void onResponseReceived(Request request, Response response)
{
String responseText = response.getText();
int indexStart = responseText.indexOf(startMessageIndicator) + startMessageIndicator.length();
int indexEnd = responseText.indexOf(endMessageIndicator);
String text = responseText.substring(indexStart, indexEnd);
//Login was a success
if (text.contains(successMessageIndicator))
{
//Woophie !! code for success comes here.
}
else if (text.contains(errorMessageIndicator))
{
//Ooops ! get the error message encoded in the page
}
}
});
}
catch (RequestException e)
{
//Do nothing
}
</code></pre>
<p>Is there any way to use the same approach to do open id based authentication ?</p>
http://stackoverflow.com/questions/1860150/am-i-wrong-in-wanting-to-roll-my-own-authenticate-authorize-system-given-the-fo0Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements?boris callens2009-12-07T14:00:39Z2009-12-07T14:57:10Z
<p>In my pet project I want to have a user system with the following requirements:</p>
<ul>
<li>It needs to work with <a href="http://www.db4o.com/" rel="nofollow">Db4o</a> as a persistance model</li>
<li>I want to use DI (by means of <a href="http://mvcturbine.codeplex.com/" rel="nofollow">Turbine</a>) to deliver the needed dependencies to my user model</li>
<li>It needs to be easy to plug in to asp.net-mvc</li>
<li>It needs to be testable without much hassle</li>
<li>It needs to support anonymous users much like SO does</li>
<li>I want Authentication and Authorization separated (the first can live without the second)</li>
<li>It needs to be safe</li>
</ul>
<p>I'm aware I'm putting a few technologies before functionalities here, but as it is a pet project and I want to learn some new stuff I think it is reasonable to include them as requirements.</p>
<p>Halfway in rolling my own I realized I am probably suffering some <a href="http://en.wikipedia.org/wiki/Not%5FInvented%5FHere" rel="nofollow">NIH</a> syndrome.<br>
As I don't really like how needlessly complex the existing user framework in asp.net is, it is actually mostly only all the more complicated stuff regarding security that's now giving me some doubts.
Would it be defendable to go on and roll my own? If not how would you go about fulfilling all the above requirements with the existing IPrinciple based framework?</p>
http://stackoverflow.com/questions/1846766/asp-net-sessions-and-custom-authentication0ASP.NET sessions and custom authenticationMultipass2009-12-04T12:48:11Z2009-12-06T06:56:36Z
<p>I'm building a web site that will acts as a client to a persistant server process. ASP.NET will communicate with the server using .NET Remoting. The server is used by other clients as well (thick WPF clients and automated processes) and already has methods for password based authentication, authorization and sessions. The way I intend to build this is to require an ASP.NET session for all pages, and keep a remoted object in the server side session state that corresponds to a session in the backend server. I'll build a login page that passes on the credentials to the remoted session object which will keep track of the authentication status of the session. I hope all that made sense. Two questions:</p>
<ul>
<li><p>Is it safe to rely only on the ASP.NET session to ensure that a request is authenticated, or do I need to add some authentication cookie on top of this as well? The site will contain sensitive material and all pages will require HTTPS, so the session key should not be possible to pick up by a third party (at least not more so than an authentication cookie).</p></li>
<li><p>How do I incorporate this with the ASP.NET authentication infrastructure? In specific, I want the HttpRequest.IsAuthenticated to be true if the server thinks that the session is authenticated and the Page.User principal to describe the currently authenticated user, again as seen from the server.</p></li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/43459/kerberos-user-authentication-in-apache4Kerberos user authentication in ApacheVagnerr2008-09-04T10:32:16Z2009-12-05T21:25:41Z
<p>Hi,</p>
<p>can anybody recommend some really good resources for how to get Apache authenticating users with Kerberos.</p>
<p>Background reading on Kerberos would also be useful </p>
<p>Thanks</p>
<p>Peter</p>
http://stackoverflow.com/questions/1851774/the-web-site-administration-tool-times-out-after-a-period-of-inactivity0the Web Site Administration Tool times out after a period of inactivitybala35692009-12-05T10:08:09Z2009-12-05T11:10:58Z
<p>I am using Visual studio, 2008, and am attempting to create an Admin section so the site owners can go in and alter their site. However, whenever I go to Website->ASP .Net Configuration to try to open the website administration tool, it tells me:</p>
<p>An error was encountered. Please return to the previous page and try again.</p>
<p>If I click on the "How do I use this tool" option at the top right, I get this error:</p>
<p>Tool Has Timed Out</p>
<p>As a security measure, the Web Site Administration Tool times out after a period of inactivity. Changes to machine.config or web.config may also result in the tool needing to be restarted. To continue configuring your web site, restart the tool.
and I just don't know what else to do!!Please help me......</p>
http://stackoverflow.com/questions/1851595/asp-net-c-getting-started-with-asp-net-authentication1ASP.NET C#: Getting Started with ASP.NET AuthenticationMaxim Z.2009-12-05T08:40:10Z2009-12-05T08:47:49Z
<p>I'm developing my first web portal in ASP.NET where I would like to have authentication. I have heard that ASP.NET has quite a big and well-built authentication system, but I've never used it before. Could you suggest some tutorials or sample code that could help me get started from the basics of ASP.NET authentication?</p>
<p>Specifically for the portal I'm building, I'd like to let users have access to commenting functions and certain pages (this means I'll have to dynamically check if a user is logged in - how?), just as a small example. I know that authentication, and thus, security, are huge topics, but I'm just looking for a basic beginner solution, as to how to set up the needed login and register forms, as well as the back-end functions. Thanks in advance!</p>
http://stackoverflow.com/questions/1851436/hmac-hash-based-message-authentication-code-aka-data-signing-in-mathematica1HMAC (hash-based message authentication code, aka data signing) in Mathematicadreeves2009-12-05T07:17:07Z2009-12-05T07:17:07Z
<p>It seems there's an implementation of HMAC in every language under the sun. (See below.)
And the algorithm is quite straightforward:</p>
<p><a href="http://en.wikipedia.org/wiki/HMAC" rel="nofollow">http://en.wikipedia.org/wiki/HMAC</a></p>
<p>Has anyone implemented it in Mathematica?</p>
<p>Here are pointers to implementations in other languages:</p>
<ul>
<li><a href="http://docs.python.org/library/hmac.html" rel="nofollow">http://docs.python.org/library/hmac.html</a></li>
<li><a href="http://php.net/manual/en/function.hash-hmac.php" rel="nofollow">http://php.net/manual/en/function.hash-hmac.php</a></li>
<li><a href="http://stackoverflow.com/questions/756492/objective-c-sample-code-for-hmac-sha1">http://stackoverflow.com/questions/756492/objective-c-sample-code-for-hmac-sha1</a></li>
<li><a href="http://stackoverflow.com/questions/1359624/how-to-create-md5-hash-with-hmac-module-in-ruby">http://stackoverflow.com/questions/1359624/how-to-create-md5-hash-with-hmac-module-in-ruby</a></li>
<li><a href="http://stackoverflow.com/questions/1609899/java-equivalent-to-phps-hmac-sha1">http://stackoverflow.com/questions/1609899/java-equivalent-to-phps-hmac-sha1</a></li>
</ul>
http://stackoverflow.com/questions/1850303/asp-net-roles-and-permissions0ASP.NET Roles and PermissionsRyan2009-12-04T23:17:28Z2009-12-04T23:21:29Z
<p>I'm using the ASP.NET/C# Login control and that entire authentication and authorization system.</p>
<p>I set up the roles and have users go to certain pages when they log into the system dependent on their role. Right now I'm trying to restrict access to certain pages, which is working correctly. However, when it restricts the access to a user who shouldn't be allowed in that web page it redirects to login.aspx. I don't have a login page, I just have a login user control that sits on a master page.</p>
<p>How can I get it to redirect to a different page on permission failure rather than go to login.aspx</p>
http://stackoverflow.com/questions/1846889/windows-user-profile-seems-to-be-blocking-certificate-auth-on-webservice-calls0Windows user profile seems to be blocking certificate auth on webservice callsunknown (google)2009-12-04T13:18:32Z2009-12-04T16:18:17Z
<p>I have a Delphi app that's running on Windows Server 2003. The app communicates with a webservice on another server that is protected by a Cisco ACE XML Gateway requiring a certificate for client authentication. When I run my app as a local administrator on the box I have no problems connecting to the webservice. When I run it as a member of a different group policy that has less rights than local administrator I get the error: "An error occurred in the secure channel support - [<em>endpoint</em> - <em>soapaction</em>]" </p>
<p>I know the user can connect to the ACE because if I have it provide the wrong cert, I get a 'Forbidden' message back. </p>
<p>Does anyone know of any user/group policy rights in Windows that could cause this? I'd really appreciate any help.</p>
<p>Thanks,
Nathan</p>
http://stackoverflow.com/questions/1836864/app-engine-authentication-error0App Engine Authentication ErrorSuzy2009-12-03T00:21:49Z2009-12-04T11:08:17Z
<p>I have an app hosted by google app engine, and I am having trouble with authentication. </p>
<p>When I login using my admin account and try to access the admin page or members pages, I just get a blank screen. I can login, and the members only menu shows when I login, but I just can't see any data from the members pages. </p>
<p>I'm not really sure where I should start checking? My app is registered with my google apps account and I am using the only admin login that is there. </p>
<p>Any suggestions would be appreciated. </p>
http://stackoverflow.com/questions/1846023/how-bad-is-auto-login-feature-is-on-an-authentification-system0How bad is auto-login feature is on an Authentification Systemkuroir2009-12-04T10:07:54Z2009-12-04T10:13:49Z
<p>This question is an open question since it's not bound to a programming language:</p>
<p>Is it a bad idea to provide users an auto-login feature? Why?</p>
<p>I've been reading a couple of papers arguing that auto-login feature on web development leads to many user having trouble with "hijacked" accounts. However, I would like to read a real answer/comment from someone with experience on this matter.</p>
http://stackoverflow.com/questions/411391/how-do-i-interact-with-a-kerberos-server-from-my-own-application1How do I interact with a kerberos server from my own applicationJohn McAleely2009-01-04T17:54:46Z2009-12-04T03:56:35Z
<p>My network has a kerberos server for username/password authentication. Machines that run my application have functioning kerberos clients, so users can use kinit, etc.</p>
<p>How do I interact with the server programatically, from my own custom applications? The preferred language for an example is C. </p>
<p>I want users of my application to authenticate against a kerberos server before access to certain functions. I anticipate having to ask them for their username and password - kinit may not have been called.</p>
<p>The machines hosting the applications run OS X and Debian/Linux.</p>
<p>I believe the answer might well involve GSSAPI. If so, are there good tutorials for this?</p>
http://stackoverflow.com/questions/1831994/how-to-prevent-access-of-admin-pages-by-knowing-the-admin-page-url1How to prevent access of admin pages by knowing the admin page url?Rajasekar2009-12-02T10:25:40Z2009-12-04T01:55:50Z
<p>If someone knows my url of the admin page such as www.example.com/admin.php, then they will easily access the page by directly accesing that url. How to restrict this. Please help</p>
http://stackoverflow.com/questions/1729179/uploadify-session-and-authentication-with-asp-net-mvc0Uploadify (Session and authentication) with ASP.NET MVCDragouf2009-11-13T13:24:38Z2009-12-04T00:23:32Z
<p>When I use Authorize filter on an action or a controller used by uplodify (<a href="http://www.uploadify.com/" rel="nofollow">http://www.uploadify.com/</a>) the action isn't reach...</p>
<p>moreover Session are not retrieved.</p>
<p>I found this to retrieved user session : </p>
<p><a href="http://geekswithblogs.net/apopovsky/archive/2009/05/06/working-around-flash-cookie-bug-in-asp.net-mvc.aspx" rel="nofollow">http://geekswithblogs.net/apopovsky/archive/2009/05/06/working-around-flash-cookie-bug-in-asp.net-mvc.aspx</a></p>
<p>But how to use it with <code>[Authorize]</code> filter and retrieved session ?</p>
http://stackoverflow.com/questions/1843543/stress-load-testing-ruby-on-rails-apps-with-authenticity-tokens0Stress/load testing Ruby on Rails apps with Authenticity TokensEric2009-12-03T22:43:58Z2009-12-03T23:04:59Z
<p>My Ruby on Rails application is mostly contained behind a login page. I'd still like to be able to stress test these pages, as they have some heavy database access.</p>
<p>Sending the username and password into a post for my login isn't difficult, but the Authenticity Token keeps changing, which makes my tests unrepeatable. </p>
<p>Is there a way to solve this problem while also maintaining an accurate production-esque environment?</p>
<p>I'd appreciate any help. Thanks!</p>
http://stackoverflow.com/questions/1211946/whats-the-need-of-security-role-element-in-dd0What's the need of <security-role> element in DDwhy so serious2009-07-31T11:02:20Z2009-12-03T16:00:22Z
<p>Hi,</p>
<p>I don't understand what's the need to declare element of , or even itself in DD, because the Container can still create a mapping between role in tomcat-user.xml file and role declares in DD in auth-constraint element of a security-constraint for authenticating any client. I'm using Tomcat 5.5.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1837869/how-to-make-a-subdomain-files-on-it-acessible-to-people-with-special-privilege0How to make a subdomain + files on it, acessible to people with special privileges?Yegor2009-12-03T05:37:01Z2009-12-03T09:04:54Z
<p>Im adding a premium section to my site which already has free registration. People who will pay a monthly fee will have access to content (html, images and media files) that will be hosted on a subdomain lets say..... content1.domain.com</p>
<p>How would I make it so files that are delivered via that subdomain, cannot be hotlinked or copied, unless the user is logged into the main site, and has a paid account ($premium = 1 site-wide variable defines that).</p>
<p>Im using php and mysql for the site, and lighttpd web server. </p>
http://stackoverflow.com/questions/1837267/disable-adobe-air-authentication-dialog0Disable Adobe Air authentication dialogMatt Wood2009-12-03T02:26:19Z2009-12-03T02:26:19Z
<p>I'm building an Adobe Air app that interacts with a third party service using HTTP Basic auth for it's authentication. I'd like to handle the login process completely in my own code. I'm using jQuery to handle the ajax.</p>
<p>The issue is that when the user enters bad credentials Air pops up an authentication dialog box before my javascript even gets notified of the 401. </p>
<p>I've read that there are two attributes I can mess with:</p>
<ul>
<li>window.htmlLoader.authenticate</li>
<li>air.URLRequestDefaults.authenticate</li>
</ul>
<p>Setting the URLRequestDefaults.authenticate to false seems to have no effect, which makes sense since I'm not using URLRequest. Setting the htmlLoader.authenticate definitely disables the dialog box from popping up, but every request is now returned as a 401.</p>
<p>Is there a way to prevent this dialog from popping up and letting my js handle the authentication?</p>