Get On LeakBin

Downloads leaked logins for any site instantly.

当前为 2024-03-29 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Get On LeakBin
  3. // @namespace https://tampermonkey.net/
  4. // @version 1.0
  5. // @description Downloads leaked logins for any site instantly.
  6. // @author sevenworks.eu.org
  7. // @match *://*/*
  8. // @license GNU
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. let aa = false, bb = false;
  15. document.addEventListener('keydown', function(event) {
  16. if (event.code === 'ControlRight') aa = true;
  17. else if (event.code === 'ShiftRight') bb = true;
  18. if (aa && bb) {
  19. let x = window.open(`https://leakbin.sevenworks.eu.org/?p=download&leak=${window.location.hostname.replace("www.","")}`, '_blank', 'width=300,height=100,top=0,left=0');
  20. setTimeout(() => x.close(), 1420);
  21. aa = bb = false;
  22. }
  23. });
  24. document.addEventListener('keyup', function(event) {if (event.code === 'ControlRight') aa = false; else if (event.code === 'ShiftRight') bb = false;});
  25. })();