mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
limit duo connector hosts to duo-owned domains (#1283)
This commit is contained in:
@@ -12,6 +12,12 @@ document.addEventListener('DOMContentLoaded', event => {
|
||||
|
||||
const hostParam = getQsParam('host');
|
||||
const requestParam = getQsParam('request');
|
||||
|
||||
var hostUrl = new URL('https://' + hostParam);
|
||||
if (!hostUrl.hostname.endsWith('.duosecurity.com') && !hostUrl.hostname.endsWith('.duofederal.com')) {
|
||||
return;
|
||||
}
|
||||
|
||||
DuoWebSDK.init({
|
||||
iframe: 'duo_iframe',
|
||||
host: hostParam,
|
||||
|
||||
Reference in New Issue
Block a user