You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
will need to review the iframe messaging API a bit more; ensure the only target iframe/parent window gets the message.
Setting targetOrigin to "*" [:83] in postMessage [:83] may enable malicious parties to intercept the message. Consider using an exact target origin instead.
I could always even encrypt the chat messages, lol.
if(!key) { return; }
window.postMessage({
action : PUBLISH_KEY,
key: key,
data : data
}, '*');
};
The text was updated successfully, but these errors were encountered:
will need to review the iframe messaging API a bit more; ensure the only target iframe/parent window gets the message.
I could always even encrypt the chat messages, lol.
The text was updated successfully, but these errors were encountered: