Example #1
0
 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 { }
         }
     }
 }
Example #2
0
 public override string ToString()
 {
     return(_sess.ToString());
 }