auth0/auth0-headless-kerberos-sample

Name: auth0-headless-kerberos-sample

Owner: Auth0

Description: Sample project showing how to do headless Kerberos authentication with Auth0 (for Console Applications, Windows Services, ...)

Created: 2015-03-03 14:42:51.0

Updated: 2017-10-11 09:53:50.0

Pushed: 2015-04-30 09:35:50.0

Homepage: null

Size: 160

Language: C#

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Auth0 Headless Kerberos authentication for the AD Connector

Sample project showing how to do headless Kerberos authentication with Auth0 (for Console Applications, Windows Services, …)

Key features

Use “Integrated Windows Authentication” (Kerberos) from your Console applications, Windows Services, … with Auth0. This allows you to have Kerberos support for headless application that run in the context of a Windows User (on a Domain Joined machine).

Usage

First you'll need to configure your application in Auth0. Add the following URL as a Callback URL in Auth0:

://headless.local

Then add the required settings in the App.config/Web.config:

 key="auth0:Domain" value="fabrikam.auth0.com" />
 key="auth0:ClientID" value="yNqQMENaYIONxAaQmrct341tZ9joEjTi" />
 key="auth0:ConnectionName" value="FabrikamAD" />

And now you can use the AdConnectorClient for headless Kerberos authentication and to get a token for the current user:

client = new AdConnectorClient(
ConfigurationManager.AppSettings["auth0:Domain"],
ConfigurationManager.AppSettings["auth0:ClientID"],
ConfigurationManager.AppSettings["auth0:ConnectionName"],
"openid email nickname");

result = client.Authenticate();
ach (var item in result)

Console.WriteLine(" > {0}: {1}", item.Key, String.Join(", ", item.Value));

Note: Since you can specify the scope used for authentication, you can ask for additional information or even request a refresh token.

Example:

What is Auth0?

Auth0 helps you to:

Create a free Auth0 Account
  1. Go to Auth0 and click Sign Up.
  2. Use Google, GitHub or Microsoft Account to login.
Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.