Toggleable (Key V) ESP for Shell Shockers (PROOF OF CONCEPT)

for all

  1. // ==UserScript==
  2. // @name Toggleable (Key V) ESP for Shell Shockers (PROOF OF CONCEPT)
  3. // @version 0.3
  4. // @author A3+++
  5. // @description for all
  6. // @match https://shellshock.io/*
  7. // @grant none
  8. // @namespace https://gf.qytechs.cn/users/815159
  9. // @run-at document-start
  10. // ==/UserScript==
  11. (function () {
  12. "use strict"
  13. window.espEnabled = false;
  14. window.espKey = "V";
  15. window.addEventListener("keydown", function (e) {
  16. if (extern.inGame) {
  17. if (e.key.toUpperCase() == window.espKey) {
  18. window.espEnabled = !window.espEnabled
  19. }
  20. } else {
  21. window.espEnabled = false
  22. }
  23. })
  24. XMLHttpRequest = class extends XMLHttpRequest {
  25. constructor() {
  26. super(...arguments)
  27. }
  28. open() {
  29. if (arguments[1] && arguments[1].includes("js/shellshock.js")) {
  30. this.scriptMatch = true;
  31. window[atob("Y29uc29sZQ==")]["log"](atob('RVNQIElOIFVTRS4='));
  32. }
  33. super.open(...arguments)
  34. }
  35. get response() {
  36. if (this.scriptMatch) {
  37. let responseText = super.response;
  38. responseText = responseText.replace(/.prototype.setVisible=function\(\w\){/, `.prototype.setVisible=function(eee){asda=document;arguments[0]=true;asda.title=atob('U2hlbGwgU2hvY2tlcnMgfCBBbHQgVVJMOiBFU1AgSU4gVVNF');this.getChildTransformNodes().forEach(child=>child.setRenderingGroupId&&child.setRenderingGroupId(window.espEnabled?1:0));`);
  39. return responseText;
  40. }
  41. return super.response;
  42. }
  43. };
  44. }())

QingJ © 2025

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