Search found 2893 matches: html

Searched query: +html

by Giorgio Maone
Wed Sep 09, 2020 7:03 pm
Forum: NoScript Support
Topic: [Fixed] BUG im 11.0.42
Replies: 15
Views: 4779

Re: BUG im 11.0.42

Could you provide us with a sample file? Are they plain txt, HTML or...?
by mkupper
Wed Sep 09, 2020 5:55 pm
Forum: NoScript Support
Topic: Fileview corrupted
Replies: 8
Views: 2767

Re: Fileview corrupted

... I planned to post a separate report about the issue but when I saw this thread about that 11.0.43rc1 fixed a corruption issue related to non HTML/HTML content I realized that 11.0.43rc1 could be relevant as I was trying to view .jpeg and .png files. I installed 11.0.43rc1 which fixed the ...
by barbaz
Tue Sep 08, 2020 12:29 am
Forum: NoScript Support
Topic: [Fixed] Local file directory listing sometimes shown as garbage text
Replies: 5
Views: 2352

Re: Local file directory listing sometimes shown as garbage text

Giorgio Maone wrote: Mon Sep 07, 2020 9:33 pm Please check latest development build:
v 11.0.43rc1
============================================================
x Should fix some race conditions causing corruptions in
non-HTML non-XML documents
It's not available through updating, and trying to get it from noscript.net returns 404.
by Giorgio Maone
Mon Sep 07, 2020 9:33 pm
Forum: NoScript Support
Topic: [Fixed] Local file directory listing sometimes shown as garbage text
Replies: 5
Views: 2352

Re: Local file directory listing sometimes shown as garbage text

Please check latest development build:
v 11.0.43rc1
============================================================
x Should fix some race conditions causing corruptions in
non-HTML non-XML documents
by Giorgio Maone
Mon Sep 07, 2020 9:33 pm
Forum: NoScript Support
Topic: Fileview corrupted
Replies: 8
Views: 2767

Re: Fileview corrupted

Please check latest development build:
v 11.0.43rc1
============================================================
x Should fix some race conditions causing corruptions in
non-HTML non-XML documents
by Giorgio Maone
Fri Sep 04, 2020 1:29 pm
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

Please check #ldb#:
v 11.0.42rc7
============================================================
x Updated TLDs
x Let injected CSP prevent onload events from firing on
unfrozen embedded elements
x Work-around for applying DOM CSP to non-HTML XML documents
(thanks skriptimaahinen)
by skriptimaahinen
Fri Sep 04, 2020 9:50 am
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

Chromium doesnt need it: you can insert a propery namespaced HTML element in as a child of the <svg> element, and the <meta> csp you add there just work. Not familiar with XML/HTML namespaces enough to say which one is proper behaviour or if there is even ...
by Giorgio Maone
Fri Sep 04, 2020 6:47 am
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

... simply how to write the CSP as <head> has no special meaning in XML generally. The situation is quite similar to as when we tried to write CSP to HTML in document-start and the head was not parsed yet. But now we do not even have anything to put the head in. I bet you already figured where this ...
by skriptimaahinen
Fri Sep 04, 2020 5:07 am
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

... simply how to write the CSP as <head> has no special meaning in XML generally. The situation is quite similar to as when we tried to write CSP to HTML in document-start and the head was not parsed yet. But now we do not even have anything to put the head in. I bet you already figured where this ...
by skriptimaahinen
Wed Sep 02, 2020 12:41 pm
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

Well, something did change with FF 81. The problem with events attributes on HTML page does not occur anymore with normal page reloads. It doesn't seem to happen on session restore or tab restore either, but it still does happen when navigating to another page ...
by morganism
Tue Sep 01, 2020 6:38 pm
Forum: Security
Topic: PNG and Hidden Pixels
Replies: 0
Views: 12489

PNG and Hidden Pixels

The new Hidden Pixels decoder at FotoForensics checks how much padding is available. If it is enough to fill out 1 or more rows of pixels, then it increases the image height accordingly.

https://www.hackerfactor.com/blog/index ... ixels.html
by barbaz
Sat Aug 29, 2020 1:44 pm
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

... script ] attributeName: null attributeNamespace: null nextSibling: null oldValue: null previousSibling: <head> removedNodes: NodeList [] target: <html> type: "childList" <prototype>: MutationRecordPrototype { type: Getter, target: Getter, addedNodes: Getter, … } 1: MutationRecord addedNodes: ...
by skriptimaahinen
Sat Aug 29, 2020 11:11 am
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

Event attribute suppression looking good. And to test the suspending on DOMContentLoaded: Document used for testing: <!DOCTYPE html> <html> <head> <meta charset='UTF-8'> </head> <body> <script src="script.js"></script> </body> </html> script.js: console.log("External script ...
by barbaz
Fri Aug 28, 2020 2:38 am
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

(11.0.40rc2 and up) Local files external JS files sometimes cannot listen on DOMContentLoaded

I have file:// set to Trusted. With NoScript 11.0.40rc1 and earlier, in this configuration my local HTML files can run scripts fine. In 11.0.40rc2 and later, including in 11.0.41rc2, some of my local files are broken. I can't reproduce this 100% consistently. Seems to be ...
by skriptimaahinen
Wed Aug 26, 2020 1:34 pm
Forum: NoScript Development
Topic: 11.0.41
Replies: 26
Views: 11220

Re: 11.0.41

... example that seems to have the body parsed quickly is this one https://forums.informaction.com/viewtopic.php?f=7&t=26061#p102698 Other is the html taken from https://webdriver-herald.herokuapp.com/. Just put it in local file. The external js and css are not needed. Also things that help bring ...