romhacking.net robot verification bypass

Robot verification of this website is kinda... insecure

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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