Advertisement
Guest User

eXerCEO

a guest
Nov 25th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 1.18 KB | Source Code | 0 0
  1. var exerceo_status = false;
  2. try { if (
  3.     document.location.href.search("archive.org/web") > -1
  4.     && document.getElementById("error")
  5.     && document.getElementById("error").innerHTML.search("<h2>Sorry.</h2>") == 2
  6.     ) exerceo_status = true;
  7. } catch(eXerror) { null; }
  8.  
  9.  
  10.  
  11. if (exerceo_status) {
  12.     var exerceo = document.getElementById("error").innerHTML;
  13.     var exerceo_URL = document.getElementsByName("url")[1].value;
  14.         exerceo = exerceo.replace("<h2>Sorry.</h2>","<h2>E(xerce)rror.</h2>");
  15.         exerceo = exerceo.replace("excluded","eXerCEO'd");
  16.         exerceo = exerceo.replace("This URL",'"'+exerceo_URL+'"');
  17.         exerceo = exerceo.replace("Wayback Machine.","Wayback Machine. Why won't you try some other site?");
  18.     document.getElementById("error").innerHTML=exerceo;
  19.     document.title = "exerceo.exe has stopped working - "+exerceo_URL+" - Wayback Machine";
  20.     document.getElementsByTagName("input")[1].setAttribute("placeholder","eXerCEO.com won't work. Go ahead, try it.");
  21.     document.getElementsByTagName("input")[1].value="";
  22. }
  23.  
  24. document.body.appendChild(document.createElement("style") );
  25. document.body.lastChild.innerHTML="input:nth-of-type(1)::placeholder { font-style:italic; font-weight:normal; }";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement