17
tmpnull
5y

Corporate computer with autofill for password to secured document system. Just typed in the console Document.getElementById('password').value to print it out.

Am now l33t h@ckzor?

Comments
  • 9
    I prefer getDocumentById('password').type = 'text' for dramatic effect
  • 1
    I didn't knew my ISP user password. Just console.logged value of input in router page and i got it.
  • 2
    @cannonau I'll do that when I show them 😋
  • 3
    for(var i=0; i<100; i++) console.log(Math.floor(Math.random() * 2000).toString(2));

    console.log("0101011"+ document.getElementById("password").value+"0110");

    Now you are a hacker.
  • 1
    @nathanasius please use
    console.log(`010101${document.getElementById('password').value}0110`);

    Thats more readable
Add Comment