クライアント証明書を使用してHTTPS経由でWebコンテンツをチェックする簡単な方法を見つけようとしています。クライアント証明書が定義されているVBScriptがあり、サーバー証明書をスキップし、検索対象を定義しています(文字列「実行中」)。私のポイントは、スクリプトを PowerShell に書き直すことです。
VBSコードは次のとおりです。
device = "10.10.10.10"
link = "5001/test"
Set Http = CreateObject("WinHttp.WinHttpRequest.5.1")
Http.SetClientCertificate "LOCAL_MACHINE\MY\test"
Http.Option(4) = 256 + 512 + 4096 + 8192
Http.Open "GET", "https://" & device & ":" & link, false
Http.Send
output = Http.ResponseText
If InStr(1,output,"running") Then
wscript.echo "OK"
Else
wscript.echo "Error"
End If
Set Http = Nothing
HTTP Web コンテンツを取得するための Powershell 構文は次のとおりです (https ではありません)。
$page = (New-Object System.Net.WebClient).DownloadString("http://10.10.10.10:5001/test")
"$page"
.CRT ファイルを使用して HTTPS コンテンツを取得するための Powershell 構文を次に示します (CERTSTORE からではありません)。
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}
$cert = [System.Security.Cryptography.X509Certificates.X509Certificate2]::CreateFromCertFile("C:\Cert\test.crt")
$url = "https://10.10.10.10:5001/test"
$web = [System.Net.WebRequest]::Create($url)
$web.ClientCertificates.Add($Cert)
これが私の最新のWebコンテンツを取得する試みです。失敗。
#ignore untrusted certificate
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}
#load my client certificate defined by thumbprint
$cert = Get-Childitem cert:\LocalMachine\My\5AA55B7B8D99
#get web contetn
$web = [System.Net.WebRequest]::Create($url)
#use my client certificate
$web.ClientCertificates.Add($Cert)
何か案は ?よろしくお願いします