web-dev-qa-db-ja.com

Powershellスクリプトでユーザーパスワードの入力が有効かどうかを確認する

私は、ドメイン内のシステムにスケジュールされたタスクを追加するPowershellスクリプトを使用しています。このスクリプトを実行すると、パスワードの入力を求められます。パスワードをたまに指で入力すると、プロセスが開始され、アカウントがロックされます。資格情報を検証して、入力した内容がドメインで検証されることを確認する方法はありますか?

ドメインコントローラーを照会する方法を見つけたいのですが。私はいくつかのGoogle検索を実行しましたが、WMIクエリを実行してエラーをトラップできるはずです。可能であれば、そのような検証を避けたいと思います。

何か案は?前もって感謝します。

30
Doltknuckle

私は自分のライブラリにこれを持っています:

$cred = Get-Credential #Read credentials
 $username = $cred.username
 $password = $cred.GetNetworkCredential().password

 # Get current domain using logged-on user's credentials
 $CurrentDomain = "LDAP://" + ([ADSI]"").distinguishedName
 $domain = New-Object System.DirectoryServices.DirectoryEntry($CurrentDomain,$UserName,$Password)

if ($domain.name -eq $null)
{
 write-Host "Authentication failed - please verify your username and password."
 exit #terminate the script.
}
else
{
 write-Host "Successfully authenticated with domain $domain.name"
}
26
Jim B

これは私が過去に使用したものです。ローカルマシンアカウントと「アプリケーションディレクトリ」で機能するはずですが、これまでのところ、AD資格情報でのみ正常に使用しています。

    function Test-Credential {
    <#
    .SYNOPSIS
        Takes a PSCredential object and validates it against the domain (or local machine, or ADAM instance).

    .PARAMETER cred
        A PScredential object with the username/password you wish to test. Typically this is generated using the Get-Credential cmdlet. Accepts pipeline input.

    .PARAMETER context
        An optional parameter specifying what type of credential this is. Possible values are 'Domain','Machine',and 'ApplicationDirectory.' The default is 'Domain.'

    .OUTPUTS
        A boolean, indicating whether the credentials were successfully validated.

    #>
    param(
        [parameter(Mandatory=$true,ValueFromPipeline=$true)]
        [System.Management.Automation.PSCredential]$credential,
        [parameter()][validateset('Domain','Machine','ApplicationDirectory')]
        [string]$context = 'Domain'
    )
    begin {
        Add-Type -assemblyname system.DirectoryServices.accountmanagement
        $DS = New-Object System.DirectoryServices.AccountManagement.PrincipalContext([System.DirectoryServices.AccountManagement.ContextType]::$context) 
    }
    process {
        $DS.ValidateCredentials($credential.UserName, $credential.GetNetworkCredential().password)
    }
}
16
jbsmith

この投稿は役に立ちましたが、ローカル管理者アカウントでログオンしてスクリプトから実行しようとしたため、問題は解決しませんでした。ローカル管理者として機能していないようです(ドメインユーザーとしてログオンした場合のみ)。

しかし、私はようやく実際に機能する解決策を得ることができました。非常に面倒だったので、ここで共有したいと思ったので、この問題を持つ他の誰もがここで答えを得ることができます。どちらも、ニーズに応じて1ページで回答します。

Sciptの上位(これは単なるget-credentialsセクションであるため、ここには含まれていません)のpowerguiがインストールされており、以下のこのコード(および「Add-PSSnapin Quest.ActiveRoles.ADManagement」行)の要件であることに注意してください。 powerguiが何をしているのかはわかりませんが、他の誰にも教えてもらえません。

「domain_name」セクションで独自のドメイン名に置き換えます。

#Get credentials
$credential_ok = 0
while ($credential_ok -ne 1)
{
    $credential = get-credential
    $result = connect-qadservice -service *domain_name* -credential $credential
    [string]$result_string = $result.domain
    if ($result_string -eq "*domain_name*")
    {
        $credential_ok = 1
        #authenticated
    }
    else
    {
        #failed
    }     
}
$username = $credential.username 
$password = $credential.GetNetworkCredential().password 

$date = get-date
Add-Content "c:\lbin\Install_log.txt" "Successfully authenticated XP script as $username $date"
1
Michael

(まだ)別のバージョン:

param([string]$preloadServiceAccountUserName = "")

function HarvestCredentials()
{

        [System.Management.Automation.PSCredential]$credentialsOfCurrentUser = Get-Credential -Message "Please enter your username & password" -UserName $preloadServiceAccountUserName

        if ( $credentialsOfCurrentUser )
        {
            $credentialsOfCurrentUser = $credentialsOfCurrentUser
        }
        else
        {
            throw [System.ArgumentOutOfRangeException] "Gui credentials not entered correctly"          
        }

    Try
    {


        # see https://msdn.Microsoft.com/en-us/library/system.directoryservices.directoryentry.path(v=vs.110).aspx
        # validate the credentials are legitimate
        $validateCredentialsTest = (new-object System.DirectoryServices.DirectoryEntry ("WinNT://"+$credentialsOfCurrentUser.GetNetworkCredential().Domain), $credentialsOfCurrentUser.GetNetworkCredential().UserName, $credentialsOfCurrentUser.GetNetworkCredential().Password).psbase.name
        if ( $null -eq  $validateCredentialsTest)
        {
            throw [System.ArgumentOutOfRangeException] "Credentials are not valid.  ('" + $credentialsOfCurrentUser.GetNetworkCredential().Domain + '\' + $credentialsOfCurrentUser.GetNetworkCredential().UserName + "')"
        }
        else
        {
            $t = $Host.ui.RawUI.ForegroundColor
            $Host.ui.RawUI.ForegroundColor = "Magenta"
            Write-Output "GOOD CREDENTIALS"
            $Host.ui.RawUI.ForegroundColor = $t
        }
    }
    Catch
    {

        $ErrorMessage = $_.Exception.Message
        $FailedItem = $_.Exception.ItemName
        $StackTrace = $_.Exception.StackTrace

        $t = $Host.ui.RawUI.ForegroundColor
        $Host.ui.RawUI.ForegroundColor = "Red"

        Write-Output "Exception - $ErrorMessage"
        Write-Output "Exception - $FailedItem"
        Write-Output "Exception - $StackTrace"

        $Host.ui.RawUI.ForegroundColor = $t

        throw [System.ArgumentOutOfRangeException] "Attempt to create System.DirectoryServices.DirectoryEntry failed.  Most likely reason is that credentials are not valid."
    }

}


Try
{

    HarvestCredentials

}
Catch
{
    $ErrorMessage = $_.Exception.Message
    $FailedItem = $_.Exception.ItemName
    $StackTrace = $_.Exception.StackTrace

    $t = $Host.ui.RawUI.ForegroundColor
    $Host.ui.RawUI.ForegroundColor = "Red"

    Write-Output "Exception - " + $ErrorMessage
    Write-Output "Exception - " + $FailedItem
    Write-Output "Exception - " + $StackTrace

    $Host.ui.RawUI.ForegroundColor = $t

    Break
}
Finally
{
    $Time=Get-Date
    Write-Output "Done - " + $Time
}

そして

.\TestCredentials.ps1 -preloadServiceAccountUserName "mydomain\myusername"
1
granadaCoder