我想知道如果在python中是否有可能,給定字符串username
和password
,找出該帳戶是否有管理權限?如何檢查用戶名和密碼中的帳戶是否具有管理員權限?
舉例來說,如果我有兩個input
S:
u = input("Username: ")
p = input("Password: ")
# hasAdminRights is a placeholder to checking if the account first of all exists, and then if it has admin.
if hasAdminRights(u,p):
print "This account has admin privileges!"
else:
print """This account either
1) does not have admin
2) is not a real account
3) entered the wrong password"""
我需要能夠檢查這個即使登錄的用戶是不是管理員。
我看過很多關於檢查當前用戶是否有管理員的stackoverflow問題,但我想檢查一下PC上的其他用戶是否有管理員。
由於提前,
大衛·卡拉南
也許,我錯過了一些東西,但它不清楚你指的是什麼系統/應用程序/軟件。您是在談論構建自己的權限系統,還是檢查另一個預先存在的系統?如果是這樣的系統? –
@CopyandPaste我只是創建一個程序來檢查並告訴你,如果一臺計算機上存在的帳戶有管理員權限或沒有,所以你可以找出哪些帳戶有管理員。 –
在電腦上?你是指某個特定操作系統的windows/linux/mac登錄嗎? –