Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 contentWindow[eventName] = checkRequest; | 65 contentWindow[eventName] = checkRequest; |
66 contentWindow.eval( | 66 contentWindow.eval( |
67 "(" + injectedToString() + ")('" + eventName + "', true);" | 67 "(" + injectedToString() + ")('" + eventName + "', true);" |
68 ); | 68 ); |
69 delete contentWindow[eventName]; | 69 delete contentWindow[eventName]; |
70 } | 70 } |
71 catch (e) {} | 71 catch (e) {} |
72 } | 72 } |
73 } | 73 } |
74 | 74 |
75 for (let element of [HTMLFrameElement, HTMLIFrameElement, HTMLObjectElement]) | 75 function injectIntoAllFrames() |
76 { | 76 { |
77 let contentDocumentDesc = Object.getOwnPropertyDescriptor( | 77 for (let i = 0; i < window.length; i++) |
78 element.prototype, "contentDocument" | 78 injectIntoContentWindow(window[i]); |
79 ); | 79 } |
80 let contentWindowDesc = Object.getOwnPropertyDescriptor( | |
81 element.prototype, "contentWindow" | |
82 ); | |
83 | 80 |
84 // Apparently in HTMLObjectElement.prototype.contentWindow does not exist | 81 function wrapAPIForInjection(object, api, callback) |
85 // in older versions of Chrome such as 42. | 82 { |
86 if (!contentWindowDesc) | 83 let func = object[api]; |
87 continue; | 84 object[api] = function(...args) |
85 { | |
86 let returnValue = func.apply(this, args); | |
kzar
2017/12/11 08:48:13
I think func.apply could have been messed with at
Manish Jethani
2018/02/21 16:37:39
Thanks, for this one in particular now I've bound
| |
87 callback(returnValue); | |
88 return returnValue; | |
89 }; | |
90 } | |
88 | 91 |
89 let getContentDocument = Function.prototype.call.bind( | 92 function wrapPropertyAPIForInjection(object, api, method, callback) |
90 contentDocumentDesc.get | 93 { |
91 ); | 94 let descriptor = Object.getOwnPropertyDescriptor(object, api); |
92 let getContentWindow = Function.prototype.call.bind( | 95 wrapAPIForInjection(descriptor, method, callback); |
93 contentWindowDesc.get | 96 Object.defineProperty(object, api, descriptor); |
94 ); | 97 } |
95 | 98 |
96 contentWindowDesc.get = function() | 99 wrapAPIForInjection(Node.prototype, "appendChild", injectIntoAllFrames); |
97 { | 100 wrapAPIForInjection(Node.prototype, "insertBefore", injectIntoAllFrames); |
98 let contentWindow = getContentWindow(this); | 101 wrapAPIForInjection(Node.prototype, "replaceChild", injectIntoAllFrames); |
99 injectIntoContentWindow(contentWindow); | 102 |
100 return contentWindow; | 103 wrapPropertyAPIForInjection(Element.prototype, |
101 }; | 104 "innerHTML", "set", injectIntoAllFrames); |
102 contentDocumentDesc.get = function() | 105 |
103 { | 106 wrapPropertyAPIForInjection(HTMLObjectElement.prototype, |
Manish Jethani
2017/10/24 01:43:28
HTMLFrameElement and HTMLIFrameElement don't need
kzar
2017/12/11 08:48:13
Fair enough but did you check that it's OK with Ch
Manish Jethani
2018/02/21 16:37:39
I've added a check now so if the descriptor is not
| |
104 injectIntoContentWindow(getContentWindow(this)); | 107 "contentWindow", "get", injectIntoContentWindow); |
105 return getContentDocument(this); | 108 wrapPropertyAPIForInjection(HTMLObjectElement.prototype, |
106 }; | 109 "contentDocument", "get", |
107 Object.defineProperty(element.prototype, "contentWindow", | 110 doc => injectIntoContentWindow(doc.defaultView)); |
108 contentWindowDesc); | |
109 Object.defineProperty(element.prototype, "contentDocument", | |
110 contentDocumentDesc); | |
111 } | |
112 | 111 |
113 /* | 112 /* |
114 * Shadow root getter wrapper | 113 * Shadow root getter wrapper |
115 * | 114 * |
116 * After creating our shadowRoot we must wrap the getter to prevent the | 115 * After creating our shadowRoot we must wrap the getter to prevent the |
117 * website from accessing it (#4191, #4298). This is required as a | 116 * website from accessing it (#4191, #4298). This is required as a |
118 * workaround for the lack of user style support in Chrome. | 117 * workaround for the lack of user style support in Chrome. |
119 * See https://bugs.chromium.org/p/chromium/issues/detail?id=632009&desc=2 | 118 * See https://bugs.chromium.org/p/chromium/issues/detail?id=632009&desc=2 |
120 */ | 119 */ |
121 if ("shadowRoot" in Element.prototype) | 120 if ("shadowRoot" in Element.prototype) |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
396 if (typeof sandbox != "string" || /(^|\s)allow-scripts(\s|$)/i.test(sandbox)) | 395 if (typeof sandbox != "string" || /(^|\s)allow-scripts(\s|$)/i.test(sandbox)) |
397 { | 396 { |
398 let script = document.createElement("script"); | 397 let script = document.createElement("script"); |
399 script.type = "application/javascript"; | 398 script.type = "application/javascript"; |
400 script.async = false; | 399 script.async = false; |
401 script.textContent = "(" + injected + ")('" + randomEventName + "');"; | 400 script.textContent = "(" + injected + ")('" + randomEventName + "');"; |
402 document.documentElement.appendChild(script); | 401 document.documentElement.appendChild(script); |
403 document.documentElement.removeChild(script); | 402 document.documentElement.removeChild(script); |
404 } | 403 } |
405 } | 404 } |
OLD | NEW |