我知道你可以查看"自动验证"复选框,但使用当前登录的用户凭据。我正在访问不同AD域中的服务器,需要提供不同的凭据。
所以我已经在mydomain/myusername
下登录了,但我需要用来访问此服务器的凭据是serverdomain/serverusername
。我无法在笔记本电脑上以serverdomain\serverusername
身份登录。在Fiddler的某个地方,我可以输入我想要使用的凭证吗?
答案 0 :(得分: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:MyP@$$w0rd";
}
}