Fluxus Android KeySystem Bypass

Bypass Fluxus within seconds!

目前为 2024-11-03 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Fluxus Android KeySystem Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @description Bypass Fluxus within seconds!
  5. // @version 1.2
  6. // @author Shehajeez (GoatBypassers)
  7. // @match https://flux.li/android/external/start.php?HWID=*
  8. // @grant GM_xmlhttpRequest
  9. // @connect ethos.kys.gay
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. window.stop();
  16. const url = window.location.href;
  17.  
  18. GM_xmlhttpRequest({
  19. method: "GET",
  20. url: `https://ethos.kys.gay/api/free/bypass?url=${encodeURIComponent(url)}`,
  21. onload: function(res) {
  22. const key = JSON.parse(res.responseText).result;
  23. const div = document.createElement('div');
  24. div.className = 'gui';
  25. div.style.cssText = 'position:fixed;top:0;left:0;width:100%;height:100%;background:#333;color:#fff;padding:20px;box-shadow:0 0 10px rgba(0,0,0,0.5);z-index:9999;animation:fadeIn 0.5s;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;';
  26. div.innerHTML = `
  27. <h2>Bypassed by Ethos</h2>
  28. <p>Your key is below:</p>
  29. <p><strong>${key}</strong></p>
  30. <button id="copyKey" style="margin-top: 20px;padding: 10px 20px;background:#555;color:#fff;border:none;border-radius:5px;cursor:pointer;">Copy Key</button>
  31. `;
  32. document.body.appendChild(div);
  33.  
  34. const style = document.createElement('style');
  35. style.innerHTML = `
  36. @keyframes fadeIn {
  37. from { opacity: 0; }
  38. to { opacity: 1; }
  39. }
  40. .gui {
  41. font-size: 20px;
  42. line-height: 1.5;
  43. }
  44. .gui h2 {
  45. font-size: 28px;
  46. margin-top: 0;
  47. }
  48. .gui p {
  49. margin-bottom: 10px;
  50. }
  51. .gui strong {
  52. font-weight: bold;
  53. }
  54. #copyKey:hover {
  55. background: #777;
  56. }
  57. `;
  58. document.head.appendChild(style);
  59.  
  60. document.getElementById('copyKey').onclick = function() {
  61. navigator.clipboard.writeText(key).then(() => {
  62. alert('Key copied to clipboard!');
  63. }).catch(err => {
  64. console.error('Could not copy text: ', err);
  65. });
  66. };
  67. }
  68. });
  69. })();

QingJ © 2025

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