romhacking.net robot verification bypass

Robot verification of this website is kinda... insecure

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==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)