Browse Source

Limit recursion when parsing URL in document-blocked page.

b75921c2fd
https://github.com/geekprojects/nuTensor/issues/23
https://github.com/vtriolet/writings/blob/main/posts/2021/ublock_origin_and_umatrix_denial_of_service.adoc

Co-authored-by: Raymond Hill <rhill@raymondhill.net>
pull/24/head
jtagcat 4 years ago
parent
commit
ed444706b8
  1. 8
      src/js/main-blocked.js

8
src/js/main-blocked.js

@ -87,7 +87,9 @@ uDom('.what').text(details.url);
return s; return s;
}; };
const renderParams = function(parentNode, rawURL) {
// https://github.com/geekprojects/nuTensor/issues/23
// Limit recursion.
const renderParams = function(parentNode, rawURL, depth = 0) {
const a = document.createElement('a'); const a = document.createElement('a');
a.href = rawURL; a.href = rawURL;
if ( a.search.length === 0 ) { return false; } if ( a.search.length === 0 ) { return false; }
@ -109,9 +111,9 @@ uDom('.what').text(details.url);
const name = safeDecodeURIComponent(param.slice(0, pos)); const name = safeDecodeURIComponent(param.slice(0, pos));
const value = safeDecodeURIComponent(param.slice(pos + 1)); const value = safeDecodeURIComponent(param.slice(pos + 1));
const li = liFromParam(name, value); const li = liFromParam(name, value);
if ( reURL.test(value) ) {
if ( depth < 2 && reURL.test(value) ) {
const ul = document.createElement('ul'); const ul = document.createElement('ul');
renderParams(ul, value);
renderParams(ul, value, depth + 1);
li.appendChild(ul); li.appendChild(ul);
} }
parentNode.appendChild(li); parentNode.appendChild(li);

Loading…
Cancel
Save