Critical security fix for embedded editor
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2723 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
dd9e3b4864
commit
314bcb2e76
|
@ -69,13 +69,15 @@ function addCallback (t, data) {
|
|||
}
|
||||
|
||||
function messageListener (e) {
|
||||
// We accept and post strings as opposed to objets for the sake of IE9 support; this
|
||||
// We accept and post strings as opposed to objects for the sake of IE9 support; this
|
||||
// will most likely be changed in the future
|
||||
if (typeof e.data !== 'string') {
|
||||
return;
|
||||
}
|
||||
var data = e.data && JSON.parse(e.data);
|
||||
if (!data || typeof data !== 'object' || data.namespace !== 'svg-edit') {
|
||||
if (!data || typeof data !== 'object' || data.namespace !== 'svg-edit' ||
|
||||
e.source !== this.frame.contentWindow // Important security check
|
||||
) {
|
||||
return;
|
||||
}
|
||||
addCallback(this, data);
|
||||
|
|
Loading…
Reference in New Issue