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.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

Um dieses Skript zu installieren, müssen Sie eine Erweiterung wie Tampermonkey oder Violentmonkey installieren.

Um dieses Skript zu installieren, müssen Sie eine Erweiterung wie Tampermonkey oder Violentmonkey installieren.

Um dieses Skript zu installieren, müssen Sie eine Erweiterung wie Tampermonkey oder Userscripts installieren.

Um dieses Skript zu installieren, müssen Sie eine Erweiterung wie Tampermonkey installieren.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

Um dieses Design zu installieren, müssen Sie eine Erweiterung wie Stylus installieren.

Um dieses Design zu installieren, müssen Sie eine Erweiterung wie Stylus installieren.

Um dieses Design zu installieren, müssen Sie eine Erweiterung wie Stylus installieren.

Um diesen Stil zu installieren, müssen Sie eine Erweiterung für den Benutzerstil Verwaltung installieren.

Um diesen Stil zu installieren, müssen Sie eine Erweiterung für den Benutzerstil Verwaltung installieren.

Um diesen Stil zu installieren, müssen Sie eine Erweiterung für den Benutzerstil Verwaltung installieren.

(Ich habe bereits einen Benutzerstil Verwaltung, ich möchte ihn installieren!)

Autor
Cat-Ling
Installationen heute
1
Installationen gesamt
1.826
Bewertungen
4 0 0
Version
1.3.1
Erstellt am
31.10.2025
Letzte Aktualisierung
30.03.2026
Größe
1,12 KB
Lizenz
GPL-3.0-or-later
Wird angewandt auf

A userscript that bypasses age verification on Spankbang, which sometimes requires you to submit your real ID.

Unlike traditional methods of removing page elements, such as those attempted by other users, this userscript modifies cookies to change your country to one where the verification isn't required.

Bookmarklet for browsers that don't support userscripts.

javascript:(function(){'use strict';const e=new Date();e.setFullYear(e.getFullYear()+1);const o=(o,t,c,n,a,i)=>{document.cookie=`${o}=${t};${c?`expires=${c.toUTCString()};`:%27%27}${n?`path=${n};`:%27%27}${a?`domain=${a};`:%27%27}${i?%27secure;%27:%27%27}`};const t=window.location.hostname;/spankbang\.party/.test(t)&&["spankbang.party",".spankbang.party"].forEach(n=>{o("media_layout","four-col",e,"/",n,!1),o("coc","US",e,"/",n,!1),o("cor","NV",e,"/",n,!1),o("coe","us",e,"/",n,!1)}),/spankbang\.com/.test(t)&&["spankbang.com",".spankbang.com"].forEach(n=>{o("media_layout","four-col",e,"/",n,!1),o("coc","US",e,"/",n,!1),o("cor","NV",e,"/",n,!1),o("coe","us",e,"/",n,!1)}),location.reload();})(); // Credits: Cat-Ling - https://greasyfork.org/en/scripts/529878

Or a bookmarklet with country options to choose from.

javascript:(function(){var h=window.location.hostname,t=h.includes("spankbang.party")?"spankbang.party":h.includes("spankbang.com")?"spankbang.com":null;if(!t)return alert("Please run this on a Spankbang domain.");if(document.getElementById("loc-menu-overlay"))return;var gc=function(n){var m=document.cookie.match(%27(^|;) ?%27+n+%27=([^;]*)(;|$)%27);return m?m[2]:null;},currC=gc(%27coc%27),currR=gc(%27cor%27),d=new Date();d.setFullYear(d.getFullYear()+1);var s=function(n,v,dm){document.cookie=n+"="+v+";expires="+d.toUTCString()+";path=/;domain="+dm+";"},locs=[{l:"Worldwide",c:"WW",r:"WW"},{l:"India",c:"IN",r:"MH"},{l:"Indonesia",c:"ID",r:"JKT"},{l:"Japan",c:"JP",r:"TK"},{l:"Mexico",c:"MX",r:"CMX"},{l:"Nepal",c:"NP",r:"KTM"},{l:"Netherlands",c:"NL",r:"ZH"},{l:"South Korea",c:"KR",r:"SE"},{l:"US - Nevada",c:"US",r:"NV"}],div=document.createElement("div");div.id="loc-menu-overlay";div.style.cssText="position:fixed;top:20px;right:20px;background:#1a1a1a;color:#fff;padding:15px;border:2px solid #333;z-index:999999;border-radius:12px;font-family:sans-serif;box-shadow:0 4px 10px rgba(0,0,0,0.5);";var title=document.createElement("div");title.innerText="Set Region";title.style.cssText="margin-bottom:12px;font-weight:bold;font-size:14px;text-align:center;";div.appendChild(title);var sel=document.createElement("select");sel.style.cssText="margin-bottom:15px;width:100%;padding:8px;background:#222;color:#fff;border:1px solid #444;border-radius:8px;outline:none;";locs.forEach(function(l){var opt=document.createElement("option");opt.value=l.c+"|"+l.r;opt.innerText=l.l;if(currC===l.c&&currR===l.r)opt.selected=!0;sel.appendChild(opt);});div.appendChild(sel);var btnWrap=document.createElement("div");btnWrap.style.display="flex";btnWrap.style.justifyContent="space-between";btnWrap.style.gap="10px";var btnSet=document.createElement("button");btnSet.innerText="Save";btnSet.style.cssText="flex:1;background:#eeeeee;color:#000000;border:none;padding:8px 12px;cursor:pointer;border-radius:20px;font-weight:bold;font-size:13px;";btnSet.onclick=function(){var p=sel.value.split("|"),cc=p[0],rc=p[1];s("media_layout","four-col",t);s("coc",cc,"."+t);s("cor",rc,"."+t);s("coe",cc.toLowerCase(),t);s("age_pass","1","."+t);div.remove();window.location.reload();};var btnClose=document.createElement("button");btnClose.innerText="Close";btnClose.style.cssText="flex:1;background:#444444;color:#ffffff;border:none;padding:8px 12px;cursor:pointer;border-radius:20px;font-size:13px;";btnClose.onclick=function(){div.remove();};btnWrap.appendChild(btnSet);btnWrap.appendChild(btnClose);div.appendChild(btnWrap);document.body.appendChild(div);})(); // Credits: Cat-Ling - https://greasyfork.org/en/scripts/529878