More edge cases covered in dynamic script injection.

This commit is contained in:
hackademix 2018-07-26 19:33:46 +02:00
parent a8a6dd4c7b
commit d3cacf634f
4 changed files with 30 additions and 26 deletions

View File

@ -99,12 +99,14 @@ var RequestGuard = (() => {
}
}
let collection = records[what];
if (type in collection) {
if (!collection[type].includes(requestKey)) {
collection[type].push(requestKey);
if (collection) {
if (type in collection) {
if (!collection[type].includes(requestKey)) {
collection[type].push(requestKey);
}
} else {
collection[type] = [requestKey];
}
} else {
collection[type] = [requestKey];
}
return records;
},
@ -425,12 +427,12 @@ var RequestGuard = (() => {
}
if (!capabilities.has("media")) {
RequestUtil.executeOnStart(request, {
code: "window.mediaBlocker = true;"
code: "window.mediaBlocker = correctFrame();"
});
}
RequestUtil.executeOnStart(request, {
file: "content/media.js"
file: "/content/media.js"
});
} else if (request.type === "main_frame" && !TabStatus.map.has(tabId)) {
debug("No TabStatus data yet for noscriptFrame", tabId);

View File

@ -20,32 +20,39 @@
};
let executeAll = async request => {
let {url, tabId, frameId, requestId} = request;
let {url, tabId, frameId, requestId, type} = request;
let scripts = pendingScripts.get(requestId);
if (!scripts) return -1;
pendingScripts.delete(requestId);
let where = type === "object" ? {allFrames: true} : {frameId};
let count = 0;
await Promise.all([...scripts.values()].map(async details => {
let run = async details => {
details = Object.assign({
runAt: "document_start",
matchAboutBlank: true,
frameId,
}, details);
}, details, where);
try {
let res;
for (let attempts = 10; attempts-- > 0;) {
try {
await browser.tabs.executeScript(tabId, details);
res = await browser.tabs.executeScript(tabId, details);
break;
} catch(e) {
if (!/No matching message handler/.test(e.message)) throw e;
debug("Couldn't inject script into %s: too early? Retrying up to %s times...", url, attempts);
}
}
count++;
debug("Execute on start OK", url, details);
debug("Execute on start OK, result=%o", res, url, details);
} catch (e) {
error(e, "Execute on start failed", url, details);
}
}));
};
await run({code: `void(window.correctFrame = () => "${url}" === document.URL && document.readyState === "loading")`});
await Promise.all([...scripts.values()].map(run));
await run({code: `void(window.correctFrame = () => false)`});
return count;
};
@ -59,7 +66,6 @@
wr[event].addListener(cleanup, filter);
}
filter.types = ["main_frame"];
wr.onResponseStarted.addListener(r => {
let scripts = pendingScripts.get(r.requestId);
if (scripts) scripts.runAndFlush();
@ -73,7 +79,7 @@
},
executeOnStart(request, details) {
let {requestId, url, tabId, frameId, statusCode} = request;
let {requestId, url, tabId, frameId, statusCode, type} = request;
if (statusCode >= 300 && statusCode < 400) return;
if (frameId === 0) {

View File

@ -1,5 +1,5 @@
debug("Media Hook (blocked %s)", !!window.mediaBlocker, document.URL, document.documentElement && document.documentElement.innerHTML);
try {
if (correctFrame()) {
debug("Media Hook (blocked %s)", !!window.mediaBlocker, document.URL, document.documentElement && document.documentElement.innerHTML);
(() => {
let unpatched = new Map();
function patch(obj, methodName, replacement) {
@ -56,6 +56,5 @@ try {
});
})();
} catch (e) {
error(e, "Cannot patch MediaSource");
document.URL;
}

View File

@ -1,5 +1,5 @@
debug("WebGL Hook", document.URL, document.documentElement && document.documentElement.innerHTML);
try {
if (correctFrame()) {
debug("WebGL Hook", document.URL, document.documentElement && document.documentElement.innerHTML);
let proto = HTMLCanvasElement.prototype;
let getContext = proto.getContext;
exportFunction(function(type, ...rest) {
@ -24,8 +24,5 @@ try {
}
return getContext.call(this, type, ...rest);
}, proto, {defineAs: "getContext"});
} catch (e) {
console.error(e);
document.URL;
}
null;