-
Notifications
You must be signed in to change notification settings - Fork 0
/
captchabot.user.js
30 lines (27 loc) · 1.07 KB
/
captchabot.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// ==UserScript==
// @name Eqmoney / Eoqmoney Captcha Exploit
// @namespace https://github.com/gekkedev/referral-scam-captcha-bot
// @version 0.1
// @description Assists you in revealing the website's true face!
// @author gekkedev
// @match *://*.eqmoney.xyz/showadv.php*
// @match *://*.eoqmoney.xyz/showadv.php*
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// @updateURL https://raw.githubusercontent.com/gekkedev/referral-scam-captcha-bot/master/captchabot.user.js
// @downloadURL https://raw.githubusercontent.com/gekkedev/referral-scam-captcha-bot/master/captchabot.user.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
const J = jQuery.noConflict(true);
let getNum = i => {
let path = J("form>div>table>tbody>tr>td>div>img")[i].src;
return path.substr(path.indexOf(".png") - 1, 1)
}
let worker = () => {
setInterval(() => {
J("input[name*='capcha']").val(getNum(0) + getNum(1) + getNum(2))
}, 50)
}
worker()
})();