mirror of
https://github.com/rastvl/akamai-deobfuscator-2.0.git
synced 2025-04-17 00:27:07 +08:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
|
|
const defineDocument = window => {
|
|
Object.defineProperties(window.Document.prototype, {
|
|
URL: {
|
|
get: () => {
|
|
return 'https://my.asos.com/identity/login?signin=ca270a738a5c227ec615ac4f24216ca7';
|
|
}
|
|
},
|
|
hidden: {
|
|
get: () => false,
|
|
},
|
|
})
|
|
}
|
|
|
|
module.exports = defineDocument; |