web-dev-qa-db-ja.com

パスワードなしのASP.NET MVC IDログイン

Myurl?username = xxxxxxにアクセスすると、パスワードを要求せずに自動的にユーザーxxxxxxにログインするように、ASP.NET MVCアプリケーションを変更する割り当てが与えられました。

これは多くのセキュリティ関連の理由やシナリオにとってひどいアイデアであることをすでに明確にしていますが、担当者は決まっています。このサイトは公開されません。

だから:たとえば、Microsoft.AspNet.Identity.UserManagerを拡張し、AccountControllerを変更することにより、パスワードなしでサインインする方法はありますか?

いくつかのコード:

  var user = await _userManager.FindAsync(model.UserName, model.Password);
                    if (user != null && IsAllowedToLoginIntoTheCurrentSite(user))
                    {
                        user = _genericRepository.LoadById<User>(user.Id);
                        if (user.Active)
                        {
                            await SignInAsync(user, model.RememberMe);

_userManagerは、Microsoft.AspNet.Identity.UserManagerのインスタンスを保持します。

およびSignInAsync():

 private async Task SignInAsync(User user, bool isPersistent)
    {
        AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
        var identity = await _userManager.CreateIdentityAsync(user, DefaultAuthenticationTypes.ApplicationCookie);
        if (user.UserGroupId.IsSet())
            user.UserGroup = await _userManager.Load<UserGroup>(user.UserGroupId);

        //adding claims here ... //

        AuthenticationManager.SignIn(new AuthenticationProperties { IsPersistent = isPersistent }, new CustomClaimsIdentity(identity));
    }

AuthenticationManagerはOwinSecurityになります。

24
Bjorn

ユーザーを名前で検索するには、usermanagerを使用するだけです。レコードがある場合は、サインインするだけです。

    public ActionResult StupidCompanyLogin()
    {

        return View();
    }

    [HttpPost]
    //[ValidateAntiForgeryToken] - Whats the point? F**k security 
    public async Task<ActionResult> StupidCompanyLogin(string name)
    {

        var user = await UserManager.FindByNameAsync(name);

        if (user != null)
        {

            await SignInManager.SignInAsync(user, true, true);
        }

        return View();
    }
62
heymega