Spankbang AV Bypass

Overwrites cookies for Spankbang domains to make it think you're from the United States. Bypassing verification of all types, including challenges and real ID verification.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Spankbang AV Bypass
// @namespace    gm.cat-ling
// @version      1.3.1
// @description  Overwrites cookies for Spankbang domains to make it think you're from the United States. Bypassing verification of all types, including challenges and real ID verification.
// @author       Cat-Ling
// @license      GPL-3.0-or-later
// @match        https://spankbang.party/*
// @match        https://spankbang.com/*
// @grant        none
// ==/UserScript==

// Copyright (C) 2025 Cat-Ling | Licensed under GPL-3.0-or-later

(function() {
    'use strict';

    const host = window.location.hostname;
    const baseDomain = host.includes("spankbang.party") ? "spankbang.party" : "spankbang.com";

    const expiryDate = new Date();
    expiryDate.setFullYear(expiryDate.getFullYear() + 1);

    const setCookie = (name, value, prefix = '') => {
        document.cookie = `${name}=${value}; expires=${expiryDate.toUTCString()}; path=/; domain=${prefix}${baseDomain};`;
    };

    setCookie('media_layout', 'four-col');
    setCookie('coc', 'US', '.'); 
    setCookie('cor', 'NV', '.'); 
    setCookie('coe', 'us');

})();