mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-23 21:31:29 +01:00
don't use innerHTML for sso handOffMessage (#1285)
This commit is contained in:
parent
5b6fb16591
commit
f8aea1e861
@ -25,8 +25,11 @@ function initiateBrowserSso(code: string, state: string) {
|
||||
window.postMessage({ command: 'authResult', code: code, state: state }, '*');
|
||||
const handOffMessage = ('; ' + document.cookie).split('; ssoHandOffMessage=').pop().split(';').shift();
|
||||
document.cookie = 'ssoHandOffMessage=;SameSite=strict;max-age=0';
|
||||
document.getElementById('content').innerHTML =
|
||||
`<p>${handOffMessage}</p>`;
|
||||
let content = document.getElementById('content');
|
||||
content.innerHTML = '';
|
||||
let p = document.createElement('p');
|
||||
p.innerText = handOffMessage;
|
||||
content.appendChild(p);
|
||||
}
|
||||
|
||||
function extractFromRegex(s: string, regexString: string) {
|
||||
|
Loading…
Reference in New Issue
Block a user