diff options
author | hackademix | 2019-08-02 18:03:49 +0200 |
---|---|---|
committer | hackademix | 2019-08-02 18:03:49 +0200 |
commit | 845b0ee7dd1e90beea9af3d5660613fa19726c43 (patch) | |
tree | ddabe52ac00e66860419b14053972a4a68f6080a /src/xss/XSS.js | |
parent | 207bd159c5ae99b03883d2f938ab200e527791c3 (diff) | |
download | noscript-845b0ee7dd1e90beea9af3d5660613fa19726c43.tar.gz noscript-845b0ee7dd1e90beea9af3d5660613fa19726c43.tar.xz noscript-845b0ee7dd1e90beea9af3d5660613fa19726c43.zip |
[XSS] Enable InjectionChecker logging when debugging mode is on.
Diffstat (limited to 'src/xss/XSS.js')
-rw-r--r-- | src/xss/XSS.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xss/XSS.js b/src/xss/XSS.js index 5b93921..14a2ad6 100644 --- a/src/xss/XSS.js +++ b/src/xss/XSS.js @@ -254,6 +254,7 @@ var XSS = (() => { await include("/xss/InjectionChecker.js"); let ic = new (await this.InjectionChecker)(); + ic.logEnabled = ns.local.debug; let {timing} = ic; timingsMap.set(request.id, timing); timing.fatalTimeout = true; |