Disable Fiddler's automatic conversion of user data into auth token

此生再无相见时 提交于 2019-12-25 02:58:25

问题


According to this answer fiddler is now automatically convering "[a] url's userinfo to an Authorization header". Is there a way to disable this?

PUT: http://localhost/?name=ben+duguid&email=ben@example.com&token=123456

Results in:

PUT: http://example.com&token=123456
Authorization: Basic bG9jYWxob3N0Lz9uYW1lPWJlbitkdWd1aWQmZW1haWw9YmVu
Host: example.com&token=123456

which is clearly never going to work.

I can work around this by URL encoding the @ as %40 (which I appreciate is more accurate as it's a reserved character) but seeing as this worked previously it means a number of my previous commands need to be updated.

As a point of note, the composer complains if I try and use a space in my query-string values but that's the only reserved character it complains about:


回答1:


You're running an outdated version of Fiddler. Update to v4.6.1.4 and you'll find that this bug is no longer present.



来源:https://stackoverflow.com/questions/33520181/disable-fiddlers-automatic-conversion-of-user-data-into-auth-token

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!