Bypass FileCrypt

Bypass FileCrypt and get the original link! Original script by StephenP

  1. // ==UserScript==
  2. // @name Bypass FileCrypt
  3. // @namespace Jovanzers.Bypass.FileCrypt
  4. // @version 1.1.5
  5. // @description Bypass FileCrypt and get the original link! Original script by StephenP
  6. // @author Jovanzers
  7. // @match http://filecrypt.co/Link/*
  8. // @match http://www.filecrypt.co/Link/*
  9. // @grant GM.xmlHttpRequest
  10. // ==/UserScript==
  11. (function () {
  12. GM.xmlHttpRequest({
  13. method: "GET",
  14. url: document.location.href,
  15. onload: function(response) {
  16. window.stop();
  17. var a=response.responseText.lastIndexOf("https://filecrypt.co/index.php?Action");
  18. if(a==-1){
  19. a=response.responseText.lastIndexOf("https://www.filecrypt.co/index.php?Action");
  20. }
  21. //var iframeId=response.responseText.substring(a);
  22. var b=response.responseText.indexOf('</iframe>',a);
  23. if(b==-1){
  24. var b=response.responseText.indexOf('</script>',a);
  25. }
  26. var iframeId=response.responseText.substring(a,b-2);
  27. console.log(iframeId);
  28. top.location.href=iframeId;
  29. }
  30. });
  31. })();

QingJ © 2025

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