Fixed typo in XSS name sanitization script injection (thanks skriptimaahinen).
This commit is contained in:
parent
a874f6031c
commit
80e1f10db5
|
@ -61,7 +61,7 @@ var XSS = (() => {
|
||||||
let block = !!(reasons.urlInjection || reasons.postInjection)
|
let block = !!(reasons.urlInjection || reasons.postInjection)
|
||||||
|
|
||||||
if (reasons.protectName) {
|
if (reasons.protectName) {
|
||||||
await include("bg/COntentScriptOnce.js");
|
await include("bg/ContentScriptOnce.js");
|
||||||
await ContentScriptOnce.execute(request, {
|
await ContentScriptOnce.execute(request, {
|
||||||
js: [{file: "/xss/sanitizeName.js"}],
|
js: [{file: "/xss/sanitizeName.js"}],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue