зеркало из https://github.com/mozilla/gecko-dev.git
59 строки
1.6 KiB
HTML
59 строки
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<head>
|
|
<script src="u2futil.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>Test for AppID / FacetID behavior for FIDO Universal Second Factor</p>
|
|
<script class="testbody" type="text/javascript">
|
|
"use strict";
|
|
|
|
SpecialPowers.setBoolPref("security.webauth.u2f", true);
|
|
SpecialPowers.setBoolPref("security.webauth.u2f.softtoken", true);
|
|
|
|
local_is(window.location.origin, "http://mochi.test:8888", "Is loaded correctly");
|
|
|
|
var version = "U2F_V2";
|
|
var challenge = new Uint8Array(16);
|
|
|
|
u2f.register(null, [{
|
|
version: version,
|
|
challenge: bytesToBase64UrlSafe(challenge),
|
|
}], [], function(res){
|
|
local_isnot(res.errorCode, 0, "Insecure origin disallowed for null AppID");
|
|
});
|
|
|
|
u2f.register("", [{
|
|
version: version,
|
|
challenge: bytesToBase64UrlSafe(challenge),
|
|
}], [], function(res){
|
|
local_isnot(res.errorCode, 0, "Insecure origin disallowed for empty AppID");
|
|
});
|
|
|
|
u2f.register("http://example.com/appId", [{
|
|
version: version,
|
|
challenge: bytesToBase64UrlSafe(challenge),
|
|
}], [], function(res){
|
|
local_isnot(res.errorCode, 0, "Insecure origin disallowed for HTTP AppID");
|
|
});
|
|
|
|
u2f.register("https://example.com/appId", [{
|
|
version: version,
|
|
challenge: bytesToBase64UrlSafe(challenge),
|
|
}], [], function(res){
|
|
local_isnot(res.errorCode, 0, "Insecure origin disallowed for HTTPS AppID from HTTP origin");
|
|
});
|
|
|
|
u2f.register(window.location.origin + "/otherAppId", [{
|
|
version: version,
|
|
challenge: bytesToBase64UrlSafe(challenge),
|
|
}], [], function(res){
|
|
local_isnot(res.errorCode, 0, "Insecure origin disallowed for HTTP origin");
|
|
});
|
|
|
|
local_finished();
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|