Fixed prototype pollution bug and only allow trusted origin (#17420)

main
Rohan Sharma 2 years ago committed by GitHub
parent 54581d43e7
commit 4d6d4b43c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,7 +15,7 @@
window.addEventListener('message', function(e) {
var data = e.data || {};
if (data.type !== 'setHeight' || !iframes[data.id]) {
if (data.type !== 'setHeight' || !iframes[data.id] || window.location.origin !== e.origin || data.id.toString() === '__proto__') {
return;
}

Loading…
Cancel
Save