This vector attempts to see which properties are available on the parent location object of sandboxed iframe.
const props = Object.getOwnPropertyNames(location);
props.forEach(prop => {
try {
if(typeof parent.location[prop] !== 'undefined') {
log(prop);
}
} catch{}
})1337