Advertisement
xosski

Module Interceptor(Ive been kidnapped)

Mar 16th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. // Create root level monitor
  2. window.__MODULE_MONITOR__ = {
  3. modules: new Map(),
  4. interceptModule(id, module) {
  5. this.modules.set(id, module);
  6. return new Proxy(module, {
  7. get: (target, prop) => {
  8. console.log(`Module ${id} accessed: ${prop}`);
  9. return target[prop];
  10. },
  11. set: (target, prop, value) => {
  12. console.log(`Module ${id} modified: ${prop} = ${value}`);
  13. target[prop] = value;
  14. return true;
  15. }
  16. });
  17. }
  18. };
  19.  
  20. // Create the monitor
  21. window.moduleMonitor = {
  22. active: true,
  23. data: {},
  24. modules: new Map(),
  25.  
  26. watch(target, prop) {
  27. if (typeof target === 'string') {
  28. this.data[target] = prop;
  29. return `Now watching ${target}`;
  30. }
  31. this.data[prop] = target[prop];
  32. return `Now watching ${prop}`;
  33. },
  34.  
  35. edit(key, value) {
  36. this.data[key] = value;
  37. document.dispatchEvent(new CustomEvent('monitor-value-change', {
  38. detail: { key, value }
  39. }));
  40. return `Updated ${key} to ${value}`;
  41. }
  42. };
  43. // Create GUI container with event listeners
  44. const gui = document.createElement('div');
  45. gui.id = 'monitor-gui';
  46. gui.style.cssText = `
  47. position: fixed;
  48. top: 20px;
  49. right: 20px;
  50. background: #3498db;
  51. border: 1px solid #2980b9;
  52. padding: 10px;
  53. z-index: 9999;
  54. box-shadow: 0 0 10px rgba(0,0,0,0.1);
  55. color: white;
  56. `;
  57.  
  58. gui.innerHTML = `
  59. <div class="monitor-controls">
  60. <h3>Module Monitor</h3>
  61. <div id="monitor-values">
  62. ${Object.entries(moduleMonitor.data).map(([key, value]) => `
  63. <div class="value-pair">
  64. <span>${key}:</span>
  65. <input type="text" value="${value}" data-key="${key}">
  66. </div>
  67. `).join('')}
  68. </div>
  69. <div class="monitor-input-group">
  70. <input type="text" id="monitor-input" placeholder="Property to watch">
  71. <button id="monitor-add">Add Watch</button>
  72. </div>
  73. </div>
  74. `;
  75.  
  76. document.body.appendChild(gui);
  77. // Add some test values to monitor
  78. moduleMonitor.watch('testValue', 123);
  79. moduleMonitor.watch('anotherValue', 'hello');
  80. moduleMonitor.watch('thirdValue', true);
  81.  
  82.  
  83.  
  84. // Update the GUI rendering to include editable inputs
  85. moduleMonitor.updateGUI = function () {
  86. const valuesContainer = document.getElementById('monitor-values');
  87. valuesContainer.innerHTML = Object.entries(this.data)
  88. .map(([key, val]) => `
  89. <div class="value-pair">
  90. <span>${key}:</span>
  91. <input type="text" value="${val}" data-key="${key}">
  92. </div>
  93. `).join('');
  94.  
  95. // Add edit listeners to new inputs
  96. const inputs = valuesContainer.querySelectorAll('input');
  97. inputs.forEach(input => {
  98. input.addEventListener('change', (e) => {
  99. const key = e.target.dataset.key;
  100. this.edit(key, e.target.value);
  101. });
  102. });
  103. };
  104. moduleMonitor.updateGUI();
  105. // Call updateGUI when values change
  106. document.addEventListener('monitor-value-change', () => {
  107. moduleMonitor.updateGUI();
  108. });
  109. // Add edit listeners to all value inputs
  110. const valueInputs = gui.querySelectorAll('#monitor-values input');
  111. valueInputs.forEach(input => {
  112. input.addEventListener('change', (e) => {
  113. const key = e.target.dataset.key;
  114. moduleMonitor.edit(key, e.target.value);
  115. });
  116. });
  117. // Add event listeners after DOM is ready
  118. document.addEventListener('DOMContentLoaded', () => {
  119. const addButton = document.getElementById('monitor-add');
  120. const input = document.getElementById('monitor-input');
  121.  
  122. addButton.addEventListener('click', () => {
  123. moduleMonitor.edit(input.value, null);
  124. });
  125. });
  126.  
  127. // Listen for value changes
  128. document.addEventListener('monitor-value-change', (e) => {
  129. const valuesContainer = document.getElementById('monitor-values');
  130. const { key, value } = e.detail;
  131.  
  132. const valueElement = document.createElement('div');
  133. valueElement.innerHTML = `
  134. <span>${key}:</span>
  135. <input type="text" value="${value}" data-key="${key}">
  136. `;
  137.  
  138. const input = valueElement.querySelector('input');
  139. input.addEventListener('change', (event) => {
  140. moduleMonitor.edit(key, event.target.value);
  141. });
  142.  
  143. valuesContainer.appendChild(valueElement);
  144. });
  145.  
  146.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement