Hackerss.com

Hackerss.com is a community of amazing hackers

Hackerss is a community for developers, data scientitst, ethical hackers, hardware enthusiasts or any person that want to learn / share their knowledge of any aspect of digital technology.

Create account Log in
hackerss
hackerss

Posted on

Write a code for a file that when someone clicks on, it send me their outlook password in Javascript

Write a code for a file that when someone clicks on, it send me their outlook password - Javascript:


//create a function that takes in a password
function sendPassword(password) {
  //send the password to my email
  //email: [email protected]
  //subject: password
  //body: password
}

//example
sendPassword("mypassword");


Enter fullscreen mode Exit fullscreen mode

Top comments (0)