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.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
Cat-Ling
Günlük kurulumlar
7
Toplam kurulumlar
1.085
Değerlendirmeler
3 0 0
Versiyon
1.3.1
Oluşturulma
31.10.2025
Güncellenme
30.03.2026
Boyut
1,12 KB
Lisans
GPL-3.0-or-later
Geçerli

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