mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-14 20:01:31 +01:00
pwned test
This commit is contained in:
parent
91582691d8
commit
10f41bf288
17
src/pwnedtest.html
Normal file
17
src/pwnedtest.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user