This vector attempts to see which properties are available on the parent window of a sandboxed iframe.
const props = Object.getOwnPropertyNames(window);
for(const prop in document){
try{
props.push("document."+prop);
} catch{}
}
props.forEach(prop => {
try {
if(typeof parent[prop] !== 'undefined') {
log("parent."+prop);
}
} catch{}
})