zoukankan      html  css  js  c++  java
  • 微信聊天代码轰炸

    话不多说,直接上代码

    var appElement = document.querySelector('[ng-controller=chatSenderController]');
    var $scope = angular.element(appElement).scope();
    setInterval(function(){
        var nowLocalTime = new Date();
        var nowTime = nowLocalTime.toLocaleTimeString();
        var s = nowLocalTime.getSeconds();
        var h = nowLocalTime.getHours();
        var m = nowLocalTime.getMinutes()
         var sh = 17 - h 
    
         if(sh >= 0){
            sh = sh+"小时"
         }else{
            sh = ""
         }
         var sm = 60 - m;
         if(sm == "0"){
            sm = ""
         }else{
            sm = sm +"分钟"
         }
         var ss = 60 - s 
    
         if(ss == "0"){
            ss = ""
         } else {
            ss = ss + "秒"
         }
        // if(s == "0"){//此为一分钟一次
            console.log()
            $scope.editAreaCtn = "现在是"+nowTime+"距离五一放假还剩" +sh + sm + ss ;
            $scope.sendTextMessage();
        // }
    },1000)
    1. 登陆网页版微信
    2. 选择你要轰炸的对象
    3. 鼠标右键 打开控制台
    4. 选择console 选项
    5. 在下方空白处粘贴代码。
    6. 回车确定

    setInterval(function(){$('.edit_area').html('需要发送的文字');
    $(".edit_area").trigger($.Event("keydown", { keyCode: 13,ctrlKey: true}));
    $('.btn_send').click();},3000);
  • 相关阅读:
    laravel路由导出和参数加密
    laravel groupby 报错
    Laravel/Lumen 分组求和问题 where groupBy sum
    php swoft redis 发布和订阅
    Linq to Sql学习总结7
    Linq to Sql学习总结6
    Linq to Sql学习总结5
    Linq to Sql学习总结4
    Linq to Sql学习总结3
    Linq to Sql学习总结2
  • 原文地址:https://www.cnblogs.com/zhigu/p/12712632.html
Copyright © 2011-2022 走看看