ashrfd+poqzn.xyz bypass

Automatically submit a form on ashrfd.xyz to bypass it

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name ashrfd+poqzn.xyz bypass
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Automatically submit a form on ashrfd.xyz to bypass it
// @author Minoa, Greasy MF Fork
// @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();
}
});
})();