Is it possible to write a custom username/password validator which will be used in the adfs signin method (on the formssignin.aspx page)?

And if so, are there any examples?

link|improve this question
feedback

1 Answer

This article customizing-the-ad-fs-2-0-sign-in-web-pages shows how to add two factor authentication.

This article modifying-and-securing-the-adfs-2-web-application shows how to create a VS project from the ADFS files on your dev. PC.

ADFS has a Master page and css files as well depending on how far you want to go.

Also, there's some info. here customizing-the-ad-fs-2-0-sign-in-web-pages about other changes you may care to make e.g.

  • Customizing the Sign-In Pages Using Web.config
  • ASP.NET Master Pages Overview

Hopefully, that will give you some direction.

ADFS out the box can only authenticate against AD. If you want a custom authentication mechanism, the classic solution is to create a custom STS e.g. Identity Server

link|improve this answer
About authentication against AD vs. against other stores, see also this answer. – Marnix Klooster Sep 23 '11 at 12:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.