ashrfd bypass

Automatically submit a form on ashrfd.xyz to bypass it

< Opiniones de ashrfd bypass

Puntuación: Malo; el script no funciona

§
Publicado: 5/5/2024

This script was not working for me, but was a good basis. the field random number was different each time, and there are a few similar domains.
So I modified it:

// ==UserScript==
// @name ashrfd+poqzn.xyz bypass
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically submit a form on ashrfd.xyz to bypass it
// @author Minoa
// @match https://poqzn.xyz/*
// @match https://ashrfd.xyz/*
// @match https://ashrff.xyz/*
// @match https://tryzt.xyz/*
// @grant none
// @license MIT
// ==/UserScript==

(function() {
'use strict';

// Your code to be executed on page load
window.addEventListener('load', function() {
// Check if the form exists
var userForm = document.querySelector("#userForm");
if (userForm) {
// Create hidden input element

var result = document.evaluate('//*[@id="myModal"]/div[1]/center/script', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
var outres = result.singleNodeValue.innerHTML;
outres = outres.substring(outres.search(/validator/))
var ranname = outres.substring(0, outres.search(/\";/));

var el = document.createElement("input");
el.type = "hidden";
el.name = ranname;
el.value = "true";
userForm.appendChild(el);

// Disable button
var btn = document.querySelector("#cbt");
if (btn) {
btn.innerText = "Please wait...";
btn.disabled = true;
}

// Submit the form
userForm.submit();
}
});
})();

§
Publicado: 6/5/2024

it works very well and thank you for publish it

Publicar respuesta

Inicia sesión para responder.