由於需要使用ms的ad使用者驗證的功能,使ad使用者認證成為公司的唯一使用者認證的系統,因此,最後一直在找ad使用者驗證的資料,還好, 找到了如下的資料,非常不錯,值得一看!!!
當然,還找到了更好的資源:
通過c#寫的乙個ad管理的類:
1. 基於ad的使用者驗證
public
static
bool
isuservalid (
string
username,
string
password)
catch}}
根據username/password驗證使用者的合法性。需要注意的是:adsi每次都會嘗試kerberos和ntlm驗證,因此系統會記錄2次驗證記錄。在設定domain password policy時,需要考慮到上述的限制。否則,如果bad password count超過限定的domain password policy時,該帳戶會locked out。(注:後面有article介紹如何判斷/如何lock/unlock帳戶)
2. 驗證使用者賬號active/disable
//////
this will perfrom a logical operation on the useraccountcontrol values
///to see if the user account is enabled or disabled. the flag for determining if the
///account is active is a bitwise value (decimal =2)
///
///
///
public
static
bool
isaccountactive(
intuseraccountcontrol)
else}
3. 示例**:呼叫上述isuservalid()和isaccountactive()方法
//////
this method will not actually log a user in, but will perform tests to ensure
///that the user account exists (matched by both the username and password), and also
///checks if the account is active.
///
///
///
///
public
static
adhelper.loginresult login(
string
username,
string
password)
else
}else
}else}
#region
enumerations
public
enum
adaccountoptions
public
enum
loginresult
#endregion
具體使用者介面user inte***ce,請參考如下reference 1
AspectJ基於xml和基於註解
一 基於xml 執行的切入點中具體方法有返回值,則方法結束會立即執行後置通知,然後再執行環繞通知的放行之後的 2 連線點即所有可能的方法,切入點是正真被切的方法,連線點方法名 其中,只有環繞通知的切入點引數不一樣,是可以放行的切入點 3 異常通知是處理異常 切面類中的異常通知的方法引數列表中異常引數...
拓撲排序(基於dfs 基於佇列)
dfs函式的返回值表示是否成環,若存在有向環,則不存在拓撲排序。不包含有向環的有向圖稱為有向無環圖 dag 可以借助dfs完成拓撲排序,在訪問完乙個結點時把他加入當前拓撲序的首部。舉個栗子 比如乙個 1,2 1,3 2,3 的有向無環圖,就先搜尋1,再遞迴搜尋2,再搜尋3,3沒有出度了,於是放進拓撲...
基於insert update delete的注入
inset注入原理 所謂inset注入就是指我們前端註冊的資訊會被後台通過insert操作插入到資料庫裡邊去,若此時後台沒有做出相應的處理就會構成insert注入。insert注入方法 insert用法例如 insert into member username,pw,phonenum,email,...