http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 12400|回复: 10

[其他] discuz论坛登录发帖 问题

[复制链接]
发表于 2013-7-30 18:44:26 | 显示全部楼层 |阅读模式


问题描述:discuz论坛,每次POST的数据会有formhash=77a14f49 且每次重新登陆之后都会更改 我测试后和cookie值有关

如果更改这个值或cookie值都会造成发帖失败,这个值怎么得到或怎么得来的



一次登录 在发帖的时候 formhash=77a14f49 值是一样的,重新登陆之后值会更改,如果使用formhash=77a14f49.... 和第二次cookie值POST发帖不会成功,而且就算重新登陆,如果使用formhash=77a14f49 和他对应的cookie值发帖还是会成功的
这个值要怎么算出来,求解 ...








1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
 楼主| 发表于 2013-7-30 18:51:58 | 显示全部楼层
本帖最后由 970443232 于 2013-7-30 18:54 编辑

哦 我在源代码里边找到了类似的,测试中.............
发表于 2013-7-30 21:38:01 | 显示全部楼层
呵呵,你找找在前台应该会有相应的方法
 楼主| 发表于 2013-7-30 22:33:52 | 显示全部楼层
本帖最后由 970443232 于 2013-7-30 23:52 编辑
站长苏飞 发表于 2013-7-30 21:38
呵呵,你找找在前台应该会有相应的方法

找到了已经正在研究如何弄出来{:soso_e106:} ,弄出来之后就能实现登陆发帖了     帖子太长了  分两贴了

需要  httphelper和cookihelper         shishi.rar (86.36 KB, 下载次数: 282)
 楼主| 发表于 2013-7-30 23:52:55 | 显示全部楼层
[code=csharp]//txtCookie.Text = "uXn_2132_saltkey=ZM5995tr; expires=Thu, 29-Aug-2013 02:01:25 GMT; path=/; httponly,WuXn_2132_lastvisit=1375146085; expires=Thu, 29-Aug-2013 02:01:25 GMT; path=/,WuXn_2132_sid=bqo222; expires=Wed, 31-Jul-2013 02:01:25 GMT; path=/,WuXn_2132_lastact=1375149685%09forum.php%09; expires=Wed, 31-Jul-2013 02:01:25 GMT; path=/,WuXn_2132_onlineusernum=6; expires=Tue, 30-Jul-2013 02:06:25 GMT; path=/,WuXn_2132_sid=bqo222; expires=Wed, 31-Jul-2013 02:01:25 GMT; path=/";
        }


        private void button3_Click(object sender, EventArgs e) //按钮  Get测试  2
        {
            //生成cookie
            string strcookie = "WuXn_2132_saltkey=" + HttpCookieHelper.GetCookieValue("WuXn_2132_saltkey", strCookie) +
                "; WuXn_2132_auth=" + HttpCookieHelper.GetCookieValue("WuXn_2132_auth", strCookie);
            
            HttpHelper http = new HttpHelper();
            HttpItem item = new HttpItem()
            {
               
                URL = "http://127.0.0.1/forum.php?mod=viewthread&tid=108&extra=page%3D1",//URL     必需项   
                Encoding = System.Text.Encoding.GetEncoding("gbk"),//URL     可选项 默认为Get   
                Method = "get",//URL     可选项 默认为Get   
                IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写   
                Cookie = strcookie,//字符串Cookie     可选项   
                Referer = "",//来源URL     可选项   
                Postdata = "",//Post数据     可选项GET时不需要写   
                Timeout = 100000,//连接超时时间     可选项默认为100000   
                ReadWriteTimeout = 30000,//写入Post数据超时时间     可选项默认为30000   
                UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值   
                ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
                Allowautoredirect = false,//是否根据301跳转     可选项   
                //CerPath = "d:\123.cer",//证书绝对路径     可选项不需要证书时可以不写这个参数   
                //Connectionlimit = 1024,//最大连接数     可选项 默认为1024   
                ProxyIp = "",//代理服务器ID     可选项 不需要代理 时可以不设置这三个参数   
                //ProxyPwd = "123456",//代理服务器密码     可选项   
                //ProxyUserName = "administrator",//代理服务器账户名     可选项   
            };
            HttpResult result = http.GetHtml(item);
            string html = result.Html;
            richBox.Text = html;
            strhtml=html;
            //赋值给全局变量
            string cookie = result.Cookie;
            //判断cookie是否得到,如果得到继续判断是否登陆成功
            if (strcookie == "WuXn_2132_saltkey=; WuXn_2132_auth=")
            {
                lbHtml.Text = lbHtml.Text + "Get登陆失败";
                richBox.Text = "Get登陆失败请先Post登录之后再get登录" ;
                return;
            }
            else if (Regex.IsMatch(html, @"勋章")) //读取html查找字符,登陆后特有字符,找到登陆成功否则失败
            {
                lbHtml.Text = lbHtml.Text + "Get登陆成功";
                richBox.Text = "Get登陆成功" + "__________" + html;
            }
            else
            {
                lbHtml.Text = lbHtml.Text + "Get登陆失败";
                richBox.Text = "Get登陆失败" + "__________" + html;
            }

            ////登录成功后访问一下任意网址测试
            //item = new HttpItem()
            //{
            //   URL = "http://127.0.0.1/home.php?mod=space&do=notice",//URL     必需项   
            //    Encoding = System.Text.Encoding.GetEncoding( "gbk"),//URL     可选项 默认为Get   
            //    Method = "get",//URL     可选项 默认为Get   
            //    IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写   
            //    Cookie = strCookie,//字符串Cookie     可选项   
            //    Referer ="",//来源URL     可选项   
            //    Postdata = "",//Post数据     可选项GET时不需要写   
            //    Timeout = 100000,//连接超时时间     可选项默认为100000   
            //    ReadWriteTimeout = 30000,//写入Post数据超时时间     可选项默认为30000   
            //    UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值   
            //    ContentType = "text/html",//返回类型    可选项有默认值   
            //    Allowautoredirect = false,//是否根据301跳转     可选项   
            //    //CerPath = "d:\123.cer",//证书绝对路径     可选项不需要证书时可以不写这个参数   
            //    //Connectionlimit = 1024,//最大连接数     可选项 默认为1024   
            //    ProxyIp = "",//代理服务器ID     可选项 不需要代理 时可以不设置这三个参数   
            //    //ProxyPwd = "123456",//代理服务器密码     可选项   
            //    //ProxyUserName = "administrator",//代理服务器账户名     可选项   
            //};


            

            //得到HTML代码
            //http.GetHtml(item);



            //HttpHelper http = new HttpHelper();
            //HttpItem item = new HttpItem()
            //{
            //    URL = "http://127.0.0.1/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes&inajax=1",//URL     必需项   
            //    Encoding = System.Text.Encoding.GetEncoding("gbk"),//URL     可选项 默认为Get   
            //    Method = "post",//URL     可选项 默认为Get   
            //    IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写   
            //    Cookie = "",//字符串Cookie     可选项   
            //    Referer = "",//来源URL     可选项   
            //    Postdata = "fastloginfield=username&username=123456&password=123456&quickforward=yes&handlekey=ls",//Post数据     可选项GET时不需要写   
            //    Timeout = 100000,//连接超时时间     可选项默认为100000   
            //    ReadWriteTimeout = 30000,//写入Post数据超时时间     可选项默认为30000   
            //    UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值   
            //    ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
            //    Allowautoredirect = false,//是否根据301跳转     可选项   
            //    //CerPath = "d:\123.cer",//证书绝对路径     可选项不需要证书时可以不写这个参数   
            //    //Connectionlimit = 1024,//最大连接数     可选项 默认为1024   
            //    ProxyIp = "",//代理服务器ID     可选项 不需要代理 时可以不设置这三个参数   
            //    //ProxyPwd = "123456",//代理服务器密码     可选项   
            //    //ProxyUserName = "administrator",//代理服务器账户名     可选项   
            //};
            //HttpResult result = http.GetHtml(item);
            //string html = result.Html;
            //strCookie = result.Cookie;
            //txtCookie.Text = strCookie;
        }

        private void button4_Click(object sender, EventArgs e)  // 按钮  发帖 4
        {
            // 发帖板块ID拼接需要拼接 -拼接不能发帖
            string strUrl = @"http://127.0.0.1/forum.php?mod=post&action=newthread&fid=" + txtID2.Text.Trim() + "&extra=&topicsubmit=yes";
            
           
 楼主| 发表于 2013-7-30 23:53:20 | 显示全部楼层
[code=csharp]  item = new HttpItem()
            {
                URL = strUrl,//URL     必需项   
                //URL = "http://127.0.0.1/forum.php?mod=post&action=newthread&fid=2&extra=&topicsubmit=yes",
                Encoding = System.Text.Encoding.GetEncoding("gbk"),//URL     可选项 默认为Get   
                Method = "post",//URL     可选项 默认为Get   
                IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写   
                Cookie = cookie,//字符串Cookie     可选项   
                Referer = "",//来源URL     可选项   
                Postdata = "formhash="+txtID.Text.Trim()+"&posttime=1375173832&wysiwyg=1&subject="+txtBiaoTi.Text+"&message="+txtTieZi.Text+"&save=&usesig=1&allownoticeauthor=1",//Post数据     可选项GET时不需要写   
                Timeout = 100000,//连接超时时间     可选项默认为100000   
                ReadWriteTimeout = 30000,//写入Post数据超时时间     可选项默认为30000   
                UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值   
                ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
                Allowautoredirect = false,//是否根据301跳转     可选项   
                //CerPath = "d:\123.cer",//证书绝对路径     可选项不需要证书时可以不写这个参数   
                //Connectionlimit = 1024,//最大连接数     可选项 默认为1024   
                ProxyIp = "",//代理服务器ID     可选项 不需要代理 时可以不设置这三个参数   
                //ProxyPwd = "123456",//代理服务器密码     可选项   
                //ProxyUserName = "administrator",//代理服务器账户名     可选项   
            };
            HttpResult result = http.GetHtml(item);
            string html = result.Html;
            //重新把得到的html文本赋值到 richbox里边
            richBox.Text = "";
            richBox.Text = html;
            //string cookie = result.Cookie;

        }

        private void button5_Click(object sender, EventArgs e)  //按钮  生成Cookie
        {
            // 拼接出登录cookie
            richBox.Text = "";
            richBox.Text = "WuXn_2132_saltkey=" + HttpCookieHelper.GetCookieValue("WuXn_2132_saltkey", strCookie) +
                "; WuXn_2132_auth=" + HttpCookieHelper.GetCookieValue("WuXn_2132_auth", strCookie);
        }

        private void button6_Click(object sender, EventArgs e)  //按钮 测试  3
        {
            //gout&formhash=babd0174">退出</a>
            //采用正则获取formhash= 值
            Regex reg = new Regex("out&formhash=(.*)\"");
            MatchCollection mts = reg.Matches(strhtml);
            foreach (Match item in mts)
            {
                //this.txtID.Text += item.Value.Replace("\"", "");
                string lines= item.Value.Replace("\"", "");
                string[] strs = lines.Split('=');
                txtID.Text = strs[1];

            }

            //Regex exp = new Regex(@"<img>(.*)</img>");
            //foreach (Match m in exp.Matches("这里是待验证的字符串"))
            //{
            //    MessageBox.Show(m.Value.SubString(5, m.Value.Length - 6));
            //}
        }
    }
}
[/code][/code][/code]
发表于 2013-7-31 08:10:16 | 显示全部楼层
不赖,期待着你的完整教程。
发表于 2013-9-6 07:31:21 | 显示全部楼层
以后真的注意了。。。 楼主真好
发表于 2014-4-26 21:25:46 | 显示全部楼层
你验证过吗?怎么我下载你的源码,显示是“成功登录”,但将文本框中的数据“复制”--“粘贴”到文本文件中却发现根本就是错的,因为结果中根本就没有“登录”字样。 IF (不存在“登录失败”) THEN 就显示“登录成功”。连“登录”字样都没有。当然会显示“登录成功”的拉!!
 楼主| 发表于 2014-4-28 22:34:08 | 显示全部楼层
dyyyj 发表于 2014-4-26 21:25
你验证过吗?怎么我下载你的源码,显示是“成功登录”,但将文本框中的数据“复制”--“粘贴”到文本文件中 ...

这是我刚学习的时候弄得  所以....
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2024-11-24 08:51

© 2014-2021

快速回复 返回顶部 返回列表