Technoguyfication

Break E2020 Login V1.2

Dec 5th, 2014
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Break E2020 Login Page Script by Hayden (Technoguyfication) Andreyka. Version 1.1 12/5/14
  2.  
  3. // ORIGINAL PASTEBIN POST: http://pastebin.com/GekqqUeP
  4.  
  5. /* Instructions:
  6.  
  7. Fill out the variables below
  8.  
  9. Copy / Paste the code here into your browser's JavaScript Console / Web Console.
  10.  
  11. Press enter / run the code.
  12.  
  13. Enjoy! */
  14.  
  15. /* CHANGELOG:
  16.  
  17. V1.1:
  18.  
  19. - Added changelog
  20. - Fixed loginMan
  21.  
  22. V1.0:
  23.  
  24. - Created base script.
  25.  
  26. */
  27.  
  28.  
  29.  
  30. // VARIABLES
  31. // Don't mess with anything outside of the quotations.
  32.  
  33. var windowTitle = "Put the title here"; //The title of the window.
  34. var loginMan = "URL TO IMAGE" //I.E. http://nyan.cat/cats/original.gif
  35. var newText = "Trolololol" //Change all text on page to this.
  36. var loginButton = "URL TO IMAGE" //I.E. http://www.vectorsland.com/imgd/l45539-facebook-like-button-logo-23555.png
  37. var returnLink = "website.com" //"Return to insertwebsitehere.tld"
  38. var checkPlugins = "Check your mom" //Replace Check Plug-Ins text.
  39. var username = "xX~QuickScoper~Xx" // A fake username
  40. var password = "This will be dots anyways." //Use this if you like. Password.
  41. var customError = "ERROR: YOU SUCK" // Yellow error text.
  42. var studentText = "URL TO IMAGE" //I.E. http://selfcentereddotme.files.wordpress.com/2013/06/sudoku-random-criss-crossed-lines-ron-brown.jpg
  43.  
  44.  
  45. //Don't edit anything below this line.
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. /*
  54.  
  55.  ROFL:ROFL:ROFL:ROFL
  56.          _^___
  57.  L    __/   [] \    
  58. LOL===__        \
  59.  L      \________]
  60.          I   I
  61.         --------/
  62. */
  63.  
  64. document.getElementsByTagName('title')[0].innerHTML = windowTitle;
  65. document.getElementsByClassName('loginStudent')[1].src = loginMan;
  66. document.getElementsByClassName('usernameLabel')[0].innerHTML = newText;
  67. document.getElementsByClassName('passwordLabel')[0].innerHTML = newText;
  68. document.getElementById('btnSubmit').src = loginButton;
  69. document.getElementById('btnSubmit').width = 160;
  70. document.getElementById('btnSubmit').height = 40;
  71. document.getElementById('btnSubmit').onclick = "";
  72. document.getElementsByClassName('returnlink')[0].innerHTML = returnLink;
  73. document.getElementsByClassName('returnlink')[0].href = "javascript: alert ('Haha you thought this link would work?');";
  74. document.getElementsByClassName('checkPlugins')[0].childNodes[0].innerHTML = checkPlugins;
  75. document.getElementsByClassName('checkPlugins')[0].childNodes[0].onclick = "";
  76. document.getElementsByName('txt_uname')[0].value = username;
  77. document.getElementsByName('txt_pword')[0].value = password;
  78. document.getElementById('lblErr').innerHTML = customError;
  79. document.getElementsByClassName('loginStudentText')[0].src = studentText;
  80.  
  81. alert ("Page transformation complete, enjoy your new login!");
  82.  
  83.  
  84. /*
  85.  ┬─┬ノ( º _ ºノ)
  86.  
  87.  
  88. (╯°□°)╯︵ ┻━┻
  89.  
  90.  
  91.  ┻━┻ ︵ヽ(`Д´)ノ︵ ┻━┻  
  92.  */
Advertisement
Add Comment
Please, Sign In to add comment