pwned test

This commit is contained in:
Kyle Spearrin 2018-02-26 22:52:56 -05:00
parent 91582691d8
commit 10f41bf288
1 changed files with 17 additions and 0 deletions

17
src/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>