brickwall hacks

Changes the password to the Admin password. On full release of Brick Wall Website, the admin password will be changed. However this script "HACKS" into the security pin and finds the passwords. (javascript keeps all the password data).

  1. // ==UserScript==
  2. // @name brickwall hacks
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-03-31
  5. // @description Changes the password to the Admin password. On full release of Brick Wall Website, the admin password will be changed. However this script "HACKS" into the security pin and finds the passwords. (javascript keeps all the password data).
  6. // @author You
  7. // @match https://thebrickwall.w3spaces.com/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=w3spaces.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. // Function to change the input type attribute to text
  18. function changeInputTypeToText(input) {
  19. input.setAttribute('type', 'text');
  20. }
  21.  
  22. // Function to change whatever is typed inside the input to "Admin"
  23. function changeInputToAdmin(input) {
  24. input.value = 'Admin';
  25. }
  26.  
  27. // Wait for the document to fully load
  28. window.addEventListener('load', function() {
  29. // Find all input fields with class "input"
  30. var inputFields = document.querySelectorAll('input.input[type="password"]');
  31. inputFields.forEach(function(input) {
  32. // Change the type attribute to text
  33. changeInputTypeToText(input);
  34.  
  35. // Add event listener for input event
  36. input.addEventListener('input', function() {
  37. // Change whatever is typed inside the input to "Admin"
  38. changeInputToAdmin(input);
  39. });
  40. });
  41. });
  42. })();