Questions tagged [thinktecture-ident-server]

Thinktecture IdentityServer is an open source security token service based on Microsoft technologies designed around Claims Based Authentication and Windows Identity Foundation.

Thinktecture IdentityServer is an open source security token service based on Microsoft technologies designed around Claims Based Authentication and Windows Identity Foundation.

Version 2: https://github.com/IdentityServer/IdentityServer2/

Version 3: https://github.com/IdentityServer/IdentityServer3/

337 questions
1
vote
1 answer

LDAP with Thinktecture IdentityServer

Can Thinktecture IdentityServer (version 2) support authentication against LDAP/Active Directory? If so, is I'm looking for any guidance on how to do that. Thanks
Scott
  • 658
  • 6
  • 16
1
vote
0 answers

ThinkTecture IdentityServer on Azure

I used the following guide to set up IdentityServer for deploying to Azure: http://weblogs.thinktecture.com/cweyer/2013/01/running-thinktecture-identityserver-v2-in-a-windows-azure-web-role-from-zero-to-hero-a-walkthrough.html I got all the way…
nathantruant
  • 89
  • 2
  • 12
1
vote
1 answer

OAuth2 authorization server with claims

I have a Web API application and I want to secure that. I've been reading about ThinkTectures IdentityModel and IdentityServer for authorization (OAtuh2) and I think this is what I need. I'm just not really sure where to start with this. There are…
Vivendi
  • 20,047
  • 25
  • 121
  • 196
1
vote
1 answer

Exceptions from JwtSecurityTokenHandler

I'm using Json Web Tokens for my ASP.NET Web API... and thinktectures identity model. So within my web api Startup.cs I call the IdentityModelJwtBearerAuthenticationExtensions extension method as below: app.UseJsonWebToken( issuer:…
1
vote
1 answer

Thinktecture Authorisation Server Or Identity Server or Both? with Own User and profile tables

Our current system is pure ASP.net web application. We got our own login page, where user will enter his username and password for authentication and authorisation. System will verify this from our user table and if it is matched, it will create a…
1
vote
2 answers

Thinktecture IdentityManager vs IdentityServer

Looking at http://www.codeproject.com/Articles/683732/Thinktecture-Identity-Server-Configuration-Customi and http://brockallen.com/2014/04/09/introducing-thinktecture-identitymanager/ , I am a bit confused about the relation between IdentityServer…
Michael
  • 363
  • 5
  • 20
1
vote
0 answers

Log the logins to the various applications that identityserver manages

We've got a lot of sites with common authentication by thinktecture identityserver v2. Now we would like to have a log of the logins to the sites. We've got a custom IUserRepository where we could log a user login in, but how would we goahead and…
1
vote
1 answer

How to customize user profile in MembershipReboot

I just integrated the MembershipReboot to my Thinktecture Identity server V2. Now ,I would like to extend user profile like firstname, lastname, facebook, twitter, etc.. Is there any way that I can do it like in ASP.NET membership provider just need…
Aggis Wu
  • 99
  • 1
  • 10
1
vote
2 answers

Is there any way to run Thinktecture.IdentityServer.v2 in debugging mode with Visual studio 2013?

I would like to customize the Thinktecture.IdentityServer.v2 ,when I was run and open the "http://xxxx.xxxx:17852/InitialConfiguration/Index",it always showed me the "HTTP Error 404.0 - Not Found". how can I make it work?
Aggis Wu
  • 99
  • 1
  • 10
1
vote
0 answers

Local wsfed endpoint used with hrd in ThinkTecture IdentityServer

I'm trying to get my head around setting Home Realm Discovery in ThinkTecture IdentityServer. I have two external identity providers but would also like to have a link to the local wsfed endpoint from the same screen. I've seen Brock's response on…
1
vote
1 answer

Is it possible to create a user in Thinktecture IdentityServer that can only be authenticated by a certificate

Is it possible to create a User in Thinktecture IdentityServer that can only be authenticated by a certificate? The default IdentityServer UI seems to indicate that a User needs a Username/Password credential which you then associate with a…
Clint
  • 1,159
  • 1
  • 10
  • 19
1
vote
1 answer

Trying to get Thinktecture IdentityServer sample CodeFlowClient to work

I am looking at the Thinktecture IdentityServer CodeFlowClient sample in the OIDC solution. I am having trouble getting it to run. It uses OpenIdConnectAuthenticationModule defined in the Thinktecture.IdentityModel.Oidc project. Within this class I…
1
vote
1 answer

How to set up Thinktecture Authorization Server

I need to implement OAuth 2.0. Thanks to google, I found Thinktecture Authorization Server. It's an open source project that allow you to...blah blah. And then, I jump to the wiki page, watch the Initial Setup Video at here…
Vu Nguyen
  • 3,605
  • 3
  • 22
  • 34
1
vote
1 answer

Signing certificate not found: CN=********.server.domain.com in Thinktecture

We have thinktecture identity server implemented in one of our project. I have seen the KeyMaterialConfiguration table in IdentityServerConfigurations database is having "SigningCertificate". I have created similar certificate in IIS of the same…
Nirman
  • 6,715
  • 19
  • 72
  • 139
1
vote
2 answers

How do you prevent replay attacks with Thinktecture IdentityModel token?

I have two sites on separate domains. I'm implementing SSO using the Thinktecture IdentityModel. A user logs into Site A. At some point they click a link to take them to site B. Site A redirects the user to site B/Login.aspx?token=< token > with…