2017-05-04 17 views
0

「自動認証」チェックボックスをオンにすることはできますが、現在ログインしているユーザーの資格情報を使用することができます。私は別のADドメインのサーバーにアクセスしており、別の資格情報を提供する必要があります。Windows認証でFiddlerをどのように使用しますか?

私はmydomain/myusernameの下にログインしていますが、このサーバーにアクセスするために必要な資格情報はserverdomain/serverusernameです。私のノートパソコンにserverdomain\serverusernameとしてログインすることはできません。フィドラーのどこかに、私が使用したいクレデンシャルを入力することができますか? Fiddler manualから

答えて

0

static function OnBeforeRequest(oSession: Session) { 
    // To use the current Fiddler user's credentials: 
    if (oSession.HostnameIs("ServerThatDemandsCreds")) { 
     oSession["x-AutoAuth"] = "(default)"; 
    } 

    // or, to use explicit credentials... 
    if (oSession.HostnameIs("ServerUsingChannelBinding")) { 
     oSession["x-AutoAuth"] = "redmond\\ericlaw:[email protected]$$w0rd"; 
    } 
} 
関連する問題