Spankbang AV Bypass

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

  1. // ==UserScript==
  2. // @name Spankbang AV Bypass
  3. // @namespace gm.cat-ling
  4. // @version 1.2
  5. // @description Overwrites cookies for both spankbang.com and spankbang.party to make it think you're from the United States. Bypassing verification of all types, including challenges and real ID verification.
  6. // @author Cat-Ling
  7. // @license GPL-3.0-or-later
  8. // @match https://spankbang.party/*
  9. // @match https://spankbang.com/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. // Copyright (C) 2025 Cat-Ling
  14. //
  15. // This program is free software: you can redistribute it and/or modify
  16. // it under the terms of the GNU General Public License as published by
  17. // the Free Software Foundation, either version 3 of the License, or
  18. // (at your option) any later version.
  19. //
  20. // This program is distributed in the hope that it will be useful,
  21. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. // GNU General Public License for more details.
  24. //
  25. // You should have received a copy of the GNU General Public License
  26. // along with this program. If not, see <https://www.gnu.org/licenses/>.
  27.  
  28. (function() {
  29. 'use strict';
  30.  
  31. // Function to set cookies
  32. function setCookie(name, value, expires, path, domain, secure) {
  33. let cookie = `${name}=${value};`;
  34. if (expires) cookie += `expires=${expires.toUTCString()};`;
  35. if (path) cookie += `path=${path};`;
  36. if (domain) cookie += `domain=${domain};`;
  37. if (secure) cookie += 'secure;';
  38. document.cookie = cookie;
  39. }
  40.  
  41. const expiryDate = new Date();
  42. expiryDate.setFullYear(expiryDate.getFullYear() + 1); // Set cookie expiry to 1 year
  43.  
  44. // spankbang.party
  45. if (window.location.hostname.includes("spankbang.party")) {
  46. setCookie('media_layout', 'four-col', expiryDate, '/', 'spankbang.party', false);
  47. setCookie('coc', 'US', expiryDate, '/', '.spankbang.party', false);
  48. setCookie('cor', 'NV', expiryDate, '/', '.spankbang.party', false);
  49. setCookie('coe', 'us', expiryDate, '/', 'spankbang.party', false);
  50. }
  51.  
  52. // spankbang.com
  53. if (window.location.hostname.includes("spankbang.com")) {
  54. setCookie('media_layout', 'four-col', expiryDate, '/', 'spankbang.com', false);
  55. setCookie('coc', 'US', expiryDate, '/', '.spankbang.com', false);
  56. setCookie('cor', 'NV', expiryDate, '/', '.spankbang.com', false);
  57. setCookie('coe', 'us', expiryDate, '/', 'spankbang.com', false);
  58. }
  59.  
  60. })();