1
0
mirror of https://github.com/bitwarden/web synced 2026-01-06 10:33:17 +00:00

Update 2018-02-27T03:55:34.469Z

This commit is contained in:
Kyle Spearrin
2018-02-26 22:55:35 -05:00
parent 9069223d9d
commit 931001676b
5 changed files with 27 additions and 10 deletions

17
pwnedtest.html Normal file
View File

@@ -0,0 +1,17 @@
<html>
<head>
<script>
function reqListener () {
console.log(this.responseText);
}
var oReq = new XMLHttpRequest();
oReq.addEventListener("load", reqListener);
oReq.open("GET", "https://haveibeenpwned.com/api/v2/breachedaccount/hello@bitwarden.com");
oReq.send();
</script>
</head>
<body>
Checking pwnage....<br />
Look at console...<br />
</body>
</html>