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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 if ((!selector || target.matches(selector)) && | 484 if ((!selector || target.matches(selector)) && |
485 (!re || re.test(target.textContent))) | 485 (!re || re.test(target.textContent))) |
486 { | 486 { |
487 event.preventDefault(); | 487 event.preventDefault(); |
488 } | 488 } |
489 }, | 489 }, |
490 true); | 490 true); |
491 } | 491 } |
492 | 492 |
493 exports["prevent-inline-scripts"] = preventInlineScripts; | 493 exports["prevent-inline-scripts"] = preventInlineScripts; |
| 494 |
| 495 function randomId() |
| 496 { |
| 497 // 2176782336 is 36^6 which mean 6 chars [a-z0-9] |
| 498 // 60466176 is 36^5 |
| 499 // 2176782336 - 60466176 = 2116316160. This ensure always 6 chars |
| 500 // for when Math.random() returns 0.0 |
| 501 return Math.floor(Math.random() * 2116316160 + 60466176).toString(36); |
| 502 } |
| 503 |
| 504 /** |
| 505 * Will patch a property on the window object to abort when read. |
| 506 * It will intercept the onerror callback and block it if tagged. |
| 507 * |
| 508 * @todo handle properties of properties. |
| 509 * |
| 510 * @param {string} prop the name of the property. |
| 511 */ |
| 512 function abortOnPropertyRead(prop) |
| 513 { |
| 514 if (!prop) |
| 515 return; |
| 516 |
| 517 let magic = randomId(); |
| 518 |
| 519 let abort = function() |
| 520 { |
| 521 throw new ReferenceError(magic); |
| 522 }; |
| 523 |
| 524 let {onerror} = window; |
| 525 window.onerror = (message, ...rest) => |
| 526 { |
| 527 if (typeof message == "string" && message.includes(magic)) |
| 528 return true; |
| 529 if (onerror && typeof onerro == "function") |
| 530 return onerror(this, message, ...rest); |
| 531 }; |
| 532 |
| 533 (function(o, p) |
| 534 { |
| 535 // simple property |
| 536 let d = Object.getOwnPropertyDescriptor(o, p); |
| 537 if (!d || d.get != abort) |
| 538 Object.defineProperty(o, p, {get: abort, set() {}}); |
| 539 })(window, prop); |
| 540 } |
| 541 |
| 542 exports["abort-on-property-read"] = makeInjector(abortOnPropertyRead, randomId); |
OLD | NEW |