mirror of
https://github.com/rastvl/akamai-deobfuscator-2.0.git
synced 2025-04-20 18:15:05 +08:00
15 lines
408 B
JavaScript
15 lines
408 B
JavaScript
const defineCurrentScript = window => {
|
|
Object.defineProperty(window.Document.prototype, 'currentScript', {
|
|
get: () => {
|
|
return new Proxy({}, {
|
|
get(target, prop, r) {
|
|
if (prop === 'src') {
|
|
return 'https://my.asos.com/cPYhw7js-taKj/GV/951_KziztRsQ/f5OEkf5rkY5Qit/fSovAg/WXQ/MOWY5XCs'
|
|
}
|
|
}
|
|
})
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = defineCurrentScript; |