Search found 244 matches

by skriptimaahinen
Thu Aug 23, 2018 10:24 am
Forum: NoScript Development
Topic: 10.1.8.17rc8 queryDocStatus loop
Replies: 1
Views: 3098

10.1.8.17rc8 queryDocStatus loop

But before the main bug, some small fries first: XSS.js:64 v await include("bg/COntentScriptOnce.js"); content.js:188 v now() - performance.timing.domContentLoadedEvenStart < 5000)) { content.js:178 ({canScript, shouldScript} = await Messages.send("queryDocStatus", {url: document...
by skriptimaahinen
Tue Aug 21, 2018 11:18 am
Forum: NoScript Development
Topic: [FIXED] 10.1.8.17rc5 webgl blocking bug on urls with paths
Replies: 2
Views: 2048

[FIXED] 10.1.8.17rc5 webgl blocking bug on urls with paths

Likely affects "media" too, didn't test though. For example: https://www.tutorialspoint.com/webgl/src/sample_application.htm To reproduce: 1. Allow script for the subdomain https://www.tutorialspoint.com (NOT ...tutorialspoint.com) 2. Enable WebGL by clicking the placeholder (enables it fo...
by skriptimaahinen
Tue Aug 21, 2018 4:44 am
Forum: Web Tech
Topic: someone look at bank's code_see why check images not visible
Replies: 11
Views: 92365

Re: someone look at bank's code_see why check images not vis

var isNativeApp = navigator.userAgent ? /nativeapp/.test(navigator.userAgent.toLowerCase()) : false; is equivalent to var isNativeApp; if (navigator.userAgent) { isNativeApp = /nativeapp/.test(navigator.userAgent.toLowerCase()) // test if navigator.userAgent (in lower case) contains "nativeapp...
by skriptimaahinen
Mon Aug 20, 2018 5:45 am
Forum: NoScript Support
Topic: Pros and cons of adding a permanent whitelist for Cloudflare
Replies: 9
Views: 5798

Re: Pros and cons of adding a permanent whitelist for Cloudf

Decentraleyes requiring that the resource (CDN) is unblocked by any content blocker used (e.g. NoScript) is by design (see their wiki). What exactly is not working properly with Decentraleyes? Is there some specific web page that you have problem with? The test page gives "fully operational&quo...
by skriptimaahinen
Mon Aug 13, 2018 3:59 am
Forum: NoScript Support
Topic: [FIXED] NoScript causing need to refresh pages in Firefox
Replies: 106
Views: 41665

Re: NoScript causing need to refresh pages in Firefox

...I had a bunch of noscript entries which have been leftover even after I had uninstalled noscript from that profile, and I noticed that in the new profile there are zero entries for noscript in about:config. Could it be some migration setting bug? Maybe, maybe not. https://forums.informaction.com...
by skriptimaahinen
Tue Aug 07, 2018 9:34 pm
Forum: NoScript Support
Topic: Reset settings
Replies: 2
Views: 2523

Re: Reset settings

Unfortunately webextensions, which NS10 is, cannot read or write preferences, so modifying those settings would not affect NS10 in any way. The noscript prefs you see in about:config are residue from NS5 and no longer in use. Currently, afaik, the only way to alter webextensions settings are through...
by skriptimaahinen
Mon Aug 06, 2018 9:36 am
Forum: NoScript Support
Topic: [FIXED] NoScript causing need to refresh pages in Firefox
Replies: 106
Views: 41665

Re: NoScript causing need to refresh pages in Firefox

OK, just to be clear, when we ask to create a new profile for testing, that does not mean that one should delete their old one. In fact it's advised to make backups of everything you hold dear (bookmarks etc.) before doing so, so that afterwards you can safely delete the testing profile and go back ...
by skriptimaahinen
Sun Aug 05, 2018 9:16 pm
Forum: NoScript Support
Topic: [FIXED] NoScript causing need to refresh pages in Firefox
Replies: 106
Views: 41665

Re: NoScript causing need to refresh pages in Firefox

Sorry but I have given up and have switched to using ScriptSafe which, so far, is working perfectly. I don't really want to go through the hassle of creating yet another new profile and, with the one I'm using now NoScript seems to be broken whatever I try. I was hoping for bit more enthusiasm to g...
by skriptimaahinen
Sun Aug 05, 2018 10:02 am
Forum: NoScript Support
Topic: [FIXED] NoScript causing need to refresh pages in Firefox
Replies: 106
Views: 41665

Re: NoScript causing need to refresh pages in Firefox

Well, moving to "ScriptSafe" is not going to get the problem fixed. What we need is to find reproducible case (gmail and drivetribe work just fine for me too) or what change caused the problem. Can you test what is the last good NoScript version/rc that works for you?
by skriptimaahinen
Thu Aug 02, 2018 5:25 pm
Forum: NoScript Development
Topic: NoScript prevents XML feeds from loading
Replies: 4
Views: 3223

Re: NoScript prevents XML feeds from loading

Yup, this kills the RSS feed (can reproduce on other feeds too e.g. https://noscript.net/feed). It appears, that for some reason, the executeScript in RequestUtil simply hangs indeterminately. And what is even more baffling is that hitting home button (have newtab set there, in case that makes any d...
by skriptimaahinen
Thu Aug 02, 2018 2:15 pm
Forum: NoScript Development
Topic: NoScript prevents XML feeds from loading
Replies: 4
Views: 3223

Re: NoScript prevents XML feeds from loading

Can't reproduce. Test on clean profile?
by skriptimaahinen
Wed Aug 01, 2018 5:38 am
Forum: NoScript General
Topic: No-script Ver:10.1.8.16 is glitchy?
Replies: 6
Views: 90825

Re: No-script Ver:10.1.8.16 is glitchy?

More important would be to find the steps to reproduce the problem. Could you provide your NoScript settings for the affected sites? It is also quite possible that the problem is caused by NS and uBlock Origin not working well together. If you find reproducible case, please disable the uBlock to see...
by skriptimaahinen
Tue Jul 31, 2018 5:21 am
Forum: NoScript Development
Topic: Inline scripts are not "seen"
Replies: 2
Views: 3609

Re: Inline scripts are not "seen"

Something like this should do it: RequestGuard.js/onViolationReport:525 } else if (report["violated-directive"] === "script-src" && /; script-src 'none'/.test(report["original-policy"])) { let r = fakeRequestFromCSP(report, request); Content.reportTo(r, false, &...
by skriptimaahinen
Tue Jul 31, 2018 5:20 am
Forum: NoScript Support
Topic: GitHub wiki heading anchors
Replies: 3
Views: 2860

Re: GitHub wiki heading anchors

This reminds me that there is still an issue with inline-scripts not "seen" either. (https://forums.informaction.com/viewtopic.php?t=24723) Mind fixing that while you are at it?