Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rule Set Update: HTTP 400 / 407s are shown as Undefined. #25

Closed
jprknight opened this issue Feb 6, 2019 · 2 comments
Closed

Rule Set Update: HTTP 400 / 407s are shown as Undefined. #25

jprknight opened this issue Feb 6, 2019 · 2 comments
Assignees
Labels
Fix Known Fix coming in next release

Comments

@jprknight
Copy link
Owner

No description provided.

@jprknight
Copy link
Owner Author

This is HTTP 407 Proxy Authentication Required. Seen in a few support cases now. Normally completely unexpected and undetectable from other troubleshooting approaches.

SessionRuleSet.cs:

case 407:
/////////////////////////////
//
// HTTP 407: Proxy Authentication Required.
//
this.session["ui-backcolor"] = HTMLColourRed;
this.session["ui-color"] = "black";

this.session["X-ResponseAlertTextBox"] = "!HTTP 407: Proxy Authentication Required!";
this.session["X-ResponseCommentsRichTextboxText"] = "HTTP 407: Proxy Authentication Required" +
	Environment.NewLine +
	Environment.NewLine +
	"Seeing these in a trace when investigating Office 365 connectivity is a big indicator of an issue." +
	Environment.NewLine +
	Environment.NewLine +
	"Look to engage the network or security team who is responsible for the Proxy infrastructure and give them " +
	"the information from these HTTP 407 sessions to troubleshoot with."
	Environment.NewLine +
	Environment.NewLine +
	"Office365 traffic should be exempt from proxy authentication or better yet follow Microsoft's recommendation " +
	"to bypass the proxy for Office365 traffic.";

if (bAppLoggingEnabled)
{
	FiddlerApplication.Log.LogString("EXOFiddlerExtention: " + this.session.id + " HTTP 407 Proxy Authentication Required.");
}
//
/////////////////////////////
break;

@jprknight jprknight self-assigned this Feb 20, 2019
@jprknight jprknight added the Fix Known Fix coming in next release label Feb 20, 2019
@jprknight jprknight changed the title HTTP 400 / 407s are shown as Undefined. Ruleset fix needed. Rule Set Update: HTTP 400 / 407s are shown as Undefined. Feb 27, 2019
@jprknight
Copy link
Owner Author

Fixed in new version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Fix Known Fix coming in next release
Projects
None yet
Development

No branches or pull requests

1 participant