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.

За да инсталирате този стил, трябва да имате инсталиран мениджър на потребителски стилове.

За да инсталирате този стил, трябва да имате инсталиран мениджър на потребителски стилове.

За да инсталирате този стил, трябва да имате инсталиран мениджър на потребителски стилове.

(Вече имам инсталиран мениджър на стиловете, искам да го инсталирам!)

Автор
Cat-Ling
Инсталации дневно
6
Инсталации общо
993
Рейтинг
3 0 0
Версия
1.3.1
Създаден
31.10.2025
Обновен
30.03.2026
Размер
1 КБ
Лиценз
GPL-3.0-or-later
Работи на

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