ashrfd+poqzn.xyz bypass

Automatically submit a form on ashrfd.xyz to bypass it

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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();
}
});
})();