zoukankan      html  css  js  c++  java
  • 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;
         }
  • 相关阅读:
    Linux Bash常用命令记录
    Ubuntu 环境 openMVG+openMVS 配置
    GDB调试系列之了解GDB
    OpenCV4系列之图像梯度
    ffmpeg基本功能使用
    GDB调试系列之基础入门
    STL std::pair基本用法
    判断机器CPU的大小端模式并将数据转换成小端形式
    由对象集合创建各种映射_流
    静态类型与函数重载
  • 原文地址:https://www.cnblogs.com/mingxuantongxue/p/4350531.html
Copyright © 2011-2022 走看看