• C# 伪造 referer 提交数据


    private string SendRequest(string account, string cardNumber, string cardPass)
         {
             string targetUrl = https://xxx.com/;//要提交数据的目标网站
    
                //提交的数据
             string postData = string.Format("ursName={0}&userName2={0}&cardNo={1}&cardPass={2}", account, cardNumber, cardPass);
     
             HttpWebRequest request = (HttpWebRequest)WebRequest.Create(targetUrl);
             request.Method = "POST";
             request.Referer = http://www.xxx.com/jsp/xxx.jsp;
             byte[] bytes = Encoding.UTF8.GetBytes(postData);
             request.ContentType = "application/x-www-form-urlencoded";
             request.ContentLength = bytes.Length;
             Stream requestStream = request.GetRequestStream();
             requestStream.Write(bytes, 0, bytes.Length);
     
             HttpWebResponse response = (HttpWebResponse)request.GetResponse();
             StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.Default);
             string responseText = reader.ReadToEnd();
     
             string res = "成功!";
             if (responseText.Contains("errorID"))
             {
                 string errorDetailPage = new System.Text.RegularExpressions.Regex(@"URL=(?<url>.*?)"">",
                     System.Text.RegularExpressions.RegexOptions.IgnoreCase | System.Text.RegularExpressions.RegexOptions.Multiline
                     ).Match(responseText).Groups["url"].Value;
     
                 HttpWebRequest requestErrorInfo = (HttpWebRequest)WebRequest.Create(errorDetailPage);
                 requestErrorInfo.Method = "GET";
                 requestErrorInfo.Proxy = request.Proxy;
                 HttpWebResponse responseErrorInfo = (HttpWebResponse)requestErrorInfo.GetResponse();
                 StreamReader readerErrorInfo = new StreamReader(responseErrorInfo.GetResponseStream(), Encoding.Default);
                 string responseTextErrorInfo = readerErrorInfo.ReadToEnd();
                 string errorDetailMessage = new System.Text.RegularExpressions.Regex(@"<h3>(?<info>.*?)<.*?</h3>",
                     System.Text.RegularExpressions.RegexOptions.IgnoreCase | System.Text.RegularExpressions.RegexOptions.Multiline
                     ).Match(responseTextErrorInfo).Groups["info"].Value.Replace("&nbsp;", "");
     
     
                 res = string.Format(@"失败!<br />错误信息:{0}<br /><a href=""{1}"" target=""_blank"">查看错误详情</a>", errorDetailMessage, errorDetailPage);
             }
     
             return res;
         }
  • 相关阅读:
    异常处理(throw,throws,try,catch,finally)
    内部类、匿名内部类、静态内部类
    Object,equals,toString
    有关于多态和静态绑定与动态绑定的知识
    接口的基本知识
    关于继承的基本知识,方法重写,final和abstract的使用, 动态绑定和静态绑定的知识
    设计模式: 单列设计模式 、模块方法设计模式、装饰设计模式、工厂设计模式、适配器设计模式
    zabbix设置维护周期
    zabbix入门
    yum安装zabbix 5.0 LTS
  • 原文地址:https://www.cnblogs.com/mingxuantongxue/p/4350531.html
Copyright © 2020-2023  润新知