romhacking.net robot verification bypass

Robot verification of this website is kinda... insecure

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         romhacking.net robot verification bypass
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Robot verification of this website is kinda... insecure
// @author       Nightdavisao
// @match        https://www.romhacking.net/download/*
// @grant        GM_log
// ==/UserScript==

setTimeout(function() {
    'use strict';
    var input = document.querySelector('input[type="password"]');
    var parentNote = input.parentNode.querySelector(".note");
    var button = document.querySelector('input[value="I am Human"]');
    var sub = parentNote.innerText.trim().split(' ');
    sub = sub[sub.length - 1];
    sub = sub.substring(0, sub.length - 1);
    sub = sub.trim();
    GM_log("[romhacking.net robot verification bypass] Matched verification string: " + sub);
    input.value = sub;
    button.click();
}, 1000)