Skip to content

Instantly share code, notes, and snippets.

Created July 3, 2016 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d46a7bf18c0e6f61724b121e79269ba6 to your computer and use it in GitHub Desktop.
Save anonymous/d46a7bf18c0e6f61724b121e79269ba6 to your computer and use it in GitHub Desktop.
http://www.xcjj588.com/index/qq.html 自动化 spam 脚本.使用时请打开 Chrome DevTools, 转至 Network 选项卡并勾选 Disable cache, 同时更改浏览器 UA 为移动设备.
// ==UserScript==
// @name Fxxk Hacker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description none
// @author none
// @match http://www.xcjj588.com/index/qq.html
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
window.check = function(){return true;};
window.util.isMB = function(){return true;};
$("input[name=username]").val('妈的智障');
$("input[name=password]").val('haha');
$('input[type=submit]').click();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment