亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現CheckPassword和鎖定輸錯密碼鎖定賬戶功能

發布時間:2021-09-27 15:26:29 來源:億速云 閱讀:154 作者:小新 欄目:編程語言

小編給大家分享一下C#如何實現CheckPassword和鎖定輸錯密碼鎖定賬戶功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

C#實現的Check Password,并根據輸錯密碼的次數分情況鎖定賬戶:如果輸入錯誤3次,登錄賬戶鎖定5分鐘并提示X點X分后重試登錄。如果5分鐘后再次輸入,累計輸入錯誤密碼累計達到5次。則賬戶會被永久鎖定,需聯系系統管理員進行把數據庫中的輸入錯誤的次數(errorcount)進行清零解鎖才能登陸。實現代碼如下:

public class UserInfo1 {  public string Error_count { get; set; }  public string Error_time { get; set; } }  public ExecutionResult CheckAccountPwd(string account, string password)  {   ExecutionResult execRes;   execRes = new ExecutionResult();   string[] strs = account.Split(new string[] { "\\" }, StringSplitOptions.RemoveEmptyEntries);   if (strs.Length < 2)   {    execRes.Status = false;    execRes.Message = "無效的賬號。";   }   else   {    UserInfo1 info1 = null;    execRes = CallEEPMethod.Execute(dbName, "sDEM2131", "GetUserInfo", strs[1].ToLower());    if (execRes.Status && execRes.Anything != null)    {     info1 = JsonConvert.DeserializeObject<UserInfo1>(execRes.Anything.ToString());     if (info1 != null)     {      int errcount = Convert.ToInt32(info1.Error_count);      DateTime errtime = Convert.ToDateTime(info1.Error_time);      if (errcount != 5)      {       //int errorCount       DateTime dt0 = DateTime.Now;       DateTime dt1 = errtime.AddMinutes(5);       double s = (dt1 - dt0).TotalSeconds;       if (errcount == 3 && s > 0)       {        execRes.Status = false;        execRes.Message = "密碼連續輸入錯誤3次,請于 " + errtime.AddMinutes(+5).ToString("yyyy-MM-dd HH:mm:ss") + " 之后重試,thanks!";       }       else       {        if (CheckFromLDAP(strs[1], password, strs[0]))        {         CPU.Models.UserInfo userInfo = CheckUser(strs[1]);         if (userInfo == null)         {          execRes.Status = false;          execRes.Message = "您沒有權限操作此系統!";         }         else         {          execRes.Status = true;          execRes.Anything = userInfo;          //error count 清0          CallEEPMethod.Execute(dbName, "sDEM2131", "UpdateUserLoginError", strs[1].ToLower() + ","+"0" + "," + DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"));                   }        }        else        {         execRes.Status = false;         // 次數+1         if (errcount + 1 > 1)          execRes.Message = "密碼連續輸入錯誤" + (errcount+1).ToString() + "次。密碼連續輸錯5次將鎖定!";         else          execRes.Message = "密碼輸入錯誤!";         dt0 = DateTime.Now;         CallEEPMethod.Execute(dbName, "sDEM2131", "UpdateUserLoginError", strs[1].ToLower() + "," + (errcount + 1).ToString()+"," + DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"));         if (errcount + 1 == 3)          execRes.Message = "密碼連續輸入錯誤" + (errcount + 1).ToString() + "次,請于 " + dt0.AddMinutes(5).ToString("yyyy-MM-dd HH:mm:ss") + " 之后重試,thanks!";         if (errcount + 1 == 5)          execRes.Message = "賬號密碼連續輸入錯誤5次,已鎖定!請聯系管理員解鎖,thanks!";        }       }      }      else      {       execRes.Status = false;       execRes.Message = "賬號密碼連續輸入錯誤5次,已鎖定!請聯系管理員解鎖,thanks!";      }     }     else     {      execRes.Status = false;      execRes.Message = "找不到此賬號,請重新輸入!";     }    }    else    {     execRes.Status = false;     execRes.Message = "找不到此賬號,請重新輸入!";    }   }   return execRes;  }

根據登錄不同的網域進行Form驗證

private bool CheckFromLDAP(string ntID, string ntPWD, string domain)//根據登錄的不同網域進行Form驗證  {   bool result = false;   string strUser;   try   {    strUser = domain + "\\" + ntID;    if (domain.ToLower().Equals("gi"))     domain = "gi.compal.com";    else if (domain.ToLower().Equals("cqc_cci"))     domain = "10.140.1.1";    else if (domain.ToLower().Equals("vn"))     domain = "10.144.2.101";    else if (domain.ToLower().Equals("njp_cci"))     domain = "10.128.50.1";    else     domain = "compal.com";    DirectoryEntry entry = new DirectoryEntry("LDAP://" + domain, strUser, ntPWD);    using (DirectorySearcher searcher = new DirectorySearcher(entry))    {     searcher.Filter = string.Format("(&(objectClass=user)(sAMAccountName={0}))", ntID);     SearchResult sr = searcher.FindOne();     using (SearchResultCollection results = searcher.FindAll())     {      if (results.Count > 0)      {       //if (results[0].Properties.Contains("employeeID"))       // empID = results[0].Properties["employeeID"][0].ToString();       //else       // empID = results[0].Properties["extensionattribute3"][0].ToString();       result = true;      }     }    }   }   catch (Exception ex)   {    //LogHelper.Error(ex.Message);   }   return result;  }

根據不同的用戶登錄進行權限管理

public bool CheckPermission(string controllerName, string actionName,string plant, string userID)  {   bool result = false;   //if (actionName.StartsWith("_"))   // actionName = actionName.Substring(1);   UserInfo userInfo = CheckUser(userID);   if (userInfo!=null)   {    if (controllerName == "Home")     result = true;    else if (userInfo.Permissions.Contains(controllerName))    {     if (!string.IsNullOrEmpty(plant))     {      if (userInfo.PlantCode.ToLower() == plant.ToLower() || userInfo.PlantCode == "ALL")       result = true;     }     else      result = true;    }   }   return result;  }

以上是“C#如何實現CheckPassword和鎖定輸錯密碼鎖定賬戶功能”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭山县| 浦县| 松原市| 民乐县| 商城县| 罗甸县| 沙田区| 班戈县| 麻城市| 搜索| 奎屯市| 青铜峡市| 阿拉尔市| 古田县| 蓝田县| 睢宁县| 玉溪市| 安国市| 漠河县| 南雄市| 宾阳县| 达日县| 麻阳| 平谷区| 唐山市| 康平县| 扎兰屯市| 休宁县| 松原市| 辛集市| 百色市| 监利县| 晋江市| 阜新| 无棣县| 广昌县| 寻甸| 孝感市| 丹棱县| 阳泉市| 宜城市|