Key System Bypass

Bypass key system steps with HWID parameter in the link

  1. // ==UserScript==
  2. // @name Key System Bypass
  3. // @namespace http://your.domain.com
  4. // @version 0.1
  5. // @description Bypass key system steps with HWID parameter in the link
  6. // @author Your Name
  7. // @match https://spdmteam.com/key-system-1*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. const urlParams = new URLSearchParams(window.location.search);
  15. const hwid = urlParams.get('hwid');
  16.  
  17. async function keySystem() {
  18. try {
  19. let step1Url = `https://spdmteam.com/key-system-1?hwid=${hwid}&zone=Europe/Rome&os=android`;
  20. await fetch(step1Url);
  21.  
  22. let step2Url = 'https://spdmteam.com/api/keysystem';
  23. let paramsStep2 = {
  24. step: '1',
  25. zone: 'Europe/Rome',
  26. advertiser: 'lootlabs',
  27. OS: 'ios'
  28. };
  29. await fetch(`${step2Url}?${new URLSearchParams(paramsStep2)}`);
  30.  
  31. let captchaDetected = detectCaptcha();
  32.  
  33. if (captchaDetected) {
  34. alert('Solved Captcha first');
  35. return;
  36. }
  37.  
  38. let step3Url = `https://spdmteam.com/key-system-2?hwid=${hwid}`;
  39. await fetch(step3Url);
  40.  
  41. // Remaining steps...
  42. } catch (error) {
  43. console.error(`Error: ${error.message}`);
  44. }
  45. }
  46.  
  47. function detectCaptcha() {
  48. let checkBox = document.querySelector('input[type="checkbox"]');
  49. return checkBox !== null;
  50. }
  51.  
  52. keySystem();
  53. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址