Questions tagged [membershipreboot]

MembershipReboot is a user identity management and authentication library. It has nothing to do with the ASP.NET Membership Provider, but was inspired by it due to frustrations with the built-in ASP.NET Membership system.

https://github.com/brockallen/BrockAllen.MembershipReboot

47 questions
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
0 answers

Multiple ReturnUrl parameters appearing after automatic redirect to Login action

I'm in the process of converting an MVC5 app to OWIN. To get automatic redirection on unauthorized access, I set the LoginPath on CookieAuthenticationOptions and set and
tr333
  • 13
  • 4
0
votes
1 answer

import user accounts from the BrockAllen MembershipReboot to Ory

I am going to convert an old project implemented with asp.net to a new one with nest.js the current identity management has been implemented with the BrockAllen MembershipReboot and the new one is gonna be the Ory Kratos the following algorithms are…
amir
  • 163
  • 8
0
votes
1 answer

How do I add UserClaims to ClaimsPrincipal

I've got a C# .NET project setup using Entity Framework, MembershipReboot and IdentityServer3. I'm looking at the database and I see a UserClaims table. Inside this table I've added a few claims using the MembershipReboot AddClaim method. The…
0
votes
1 answer

Unable to get Access Token Via Fiddler IdentityServer3

I can successfully call my Api via a web browser. Using IdentityModel works fine. But when I try to call the Api via Fiddler I get invalid_client. My client information comes from a database based on the MembershipReboot Client tables. I tried…
Nate
  • 2,044
  • 4
  • 23
  • 47
0
votes
0 answers

ASP.NET MVC Authorize Attribute not working

In my FilterConfig, I define a global authorize attribute. By doing that, I disallow anonymous access to all controllers by default - so that users need to log in. public class FilterConfig { public static void…
LTR
  • 1,226
  • 2
  • 17
  • 39
0
votes
1 answer

Accessing user object across client application

I have installed the IS3/MR/IDM combination and everything is working fine. What I need to do now is make the the logged in user (ID, Name etc) available to all my MVC controllers so the obvious choice is to create a base controller so all others…
Tim
  • 81
  • 3
  • 11
0
votes
1 answer

MembershipReboot with Identityserver 3 slow performance

Running the MembersihpReboot application in completely separated systems, one is robust and the other kind of slow. Both systems running SQL2012 and VS2015, any suggestions would be helpful... The machine that having performance issue with this app,…
0
votes
1 answer

How to Enable Entity Framework Migrations for MembershipReboot

We have implemented IdentityServer3, MembershipReboot and IdentityManager, and are storing Clients, Scopes and Users in a SqlServer database. We’ve also set up default users during initial database creation using the CustomUserAccountService class.…
user756366
  • 467
  • 6
  • 24
0
votes
1 answer

IdentityServer 3 with MemebershipReboot , how to implement Custom Client store

I am exploring the option of using IdentityServer3 along with MembershipReboot as the IdentityManagement solution. I have managed to download some samples from github and get them working. Link from where i downloaded the sample :- github But I am…
0
votes
1 answer

Multiple Client Types

I have a web application that I would like to use authenticate using MembershipReboot for a subset of users but internally I would also like to use Active Directory. What's the best practice of authenticating a single web application with two…
Tom Kurian
  • 113
  • 13
0
votes
1 answer

Database Migration MembershipReboot

I'm working for the first time with Membership Reboot and I have custom class. I added a new property called Middle Name. How can I do the EF Migration on this to get it updated? public class CustomUser : RelationalUserAccount { [Display(Name =…
Tom Kurian
  • 113
  • 13
0
votes
1 answer

MembershipReboot lockout functionality issue

For a couple of days I am playing with MembershipReboot framework and being honest it looks very good. I would use it for my applications. However, the question that I have is about its lockout functionality. I have tried to lock my account a couple…
Tolsan
  • 1,292
  • 2
  • 9
  • 12
0
votes
1 answer

brockallen.MembershipReboot account confirmation not working

To get to the point, and not force anyone to read a lengthy explanation, I've known there's issues with Microsoft's security defaults when it comes to many of its technologies. I use ASP.NET and MVC, and actually was ready to use Microsoft's…
0
votes
1 answer

Identity Server 3 implicit grant, role based authorization

I have set up the Identity Server 3 with Membership reboot database as my authorization server and have also developed a Web Api project which will be accessed by a javascript web app. Using the implicit flow, the client is able to log in and obtain…