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 για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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

})();