本文整理汇总了C#中Fiddler.Session.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Session.ToString方法的具体用法?C# Session.ToString怎么用?C# Session.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Fiddler.Session
的用法示例。
在下文中一共展示了Session.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AutoTamperRequestBefore
public void AutoTamperRequestBefore(Session oSession)
{
if (this.bLoaded && this.ui.bEnabled)
{
this.regex = new Regex(@"\/\S*\?");
this.m = this.regex.Match(oSession.url);
if (m.Success)
{
try
{
if(oSession.RequestMethod == "GET")
{
if (this.geturlList.Contains(oSession.url) || this.xGETurlList.Contains(oSession.url))
return;
this.geturlList.Add(oSession.url);
this.strParams = oSession.url.Split('?')[1];
string[] Params = strParams.Split('&');
foreach (string strParamname in Params)
{
string strUrl = oSession.url;
strUrl = strUrl.Replace(strParamname.Split('=')[0], strParamname.Split('=')[0] + "[]");
this.xGETurlList.Add(strUrl);
FiddlerApplication.oProxy.InjectCustomRequest(oSession.ToString().Replace(oSession.url, strUrl));
}
}
else if(oSession.RequestMethod == "POST")
{
if (this.posturlList.Contains(oSession.url) && this.xPOSTdataList.Contains(oSession.GetRequestBodyEncoding().GetString(oSession.requestBodyBytes)))
return;
this.posturlList.Add(oSession.url);
this.xPOSTdataList.Add(oSession.GetRequestBodyEncoding().GetString(oSession.requestBodyBytes));
this.strParams = oSession.GetRequestBodyEncoding().GetString(oSession.requestBodyBytes);
string[] Params = strParams.Split('&');
foreach (string strParamname in Params)
{
String strData = oSession.ToString();
strData = this.strParams.Replace(strParamname.Split('=')[0], strParamname.Split('=')[0] + "[]");
this.xPOSTdataList.Add(this.strParams.Replace(strParamname.Split('=')[0], strParamname.Split('=')[0] + "[]"));
StringDictionary dictionary = new StringDictionary();
dictionary["Flag"] = "FreeBuf";
FiddlerApplication.oProxy.InjectCustomRequest(oSession.oRequest.headers, oSession.GetRequestBodyEncoding().GetBytes(strData), dictionary);
}
}
}catch { }
}
}
}