Changing username and password of fiddler proxy server -
i'm using fiddler setup proxy server, when enabling "require proxy authorization" under rules menu username/password 1. how change username/password?
i tried changing osession["x-autoauth"] = "username:password"; doesn't change proxy credentials required.
can't find in documentation regarding this...
the x-autoauth
flag concerns credentials fiddler sends upstream server when automatically replying authentication challenge; has no impact on credentials demanded of user.
this question original asked , answered here: https://groups.google.com/forum/#!topic/httpfiddler/perxaotmlyc
you can change credentials expected fiddler setting preference fiddler.proxy.creds
base64 encoded username:password
string. default value mtox
base64 encoded version of string 1:1
. can compute base64 value need using tools > textwizard feature in fiddler.
to update preference, click quickexec box below fiddler's web sessions list , type prefs set fiddler.proxy.creds yourbase64stringhere
, hit enter.
Comments
Post a Comment