Web Addicto

Results 11 comments of Web Addicto

> ```js > const waitForNetwork0 = async (page, timeout = 500) => { > await new Promise((resolve) => { > let timer; > page.on('response', () => { > clearTimeout(timer); >...

Personally I would still wait before implementing that, looks like it is not yet definitive. More information can be found on these recent articles: [The winners and losers of the...

I believe that it is not a requirement to allow the user to block cookies singularly via the cookie banner, but instead from what I have understood we should block...

Maybe we can remove minHeight option? I notice that if we use data-min-height we set also line-height to same minHeight value: `el.style.lineHeight = el.style.minHeight;` Isn't this bad? Because if we...

The problem seems to be when the proxy decrypts the value from the` $_GET['q']` On this file: https://github.com/Athlon1600/php-proxy-app/blob/master/index.php We can see this on line 68: ``` // decode q parameter...

@Benji-Collins I just made a quick test now, and my SecurityPlugin prevents the `$_GET['q']` LFI vulnerability. It validates the URL scheme and returns "Scheme is not allowed" for file://

Can you paste here the content of the URL: `https://onlinehmp.com/content/banner/zotac.php` So I can test it locally. Thanks!

Interesting changes @reef-actor @Athlon1600 what do you think about these changes? I like the refactor of ProxifyPlugin and that remove_js and replace_title have becomed a plugin.

Looks like requests to i.ytimg.com are not proxied: https://postimg.org/image/jmcoapf6x/

Found the fix: Edit \src\Plugin\ProxifyPlugin.php And add this line: `$str = preg_replace_callback('@data-thumb=(["|\'])(.*?)\1@i', array($this, 'html_src'), $str);` After line 167: `$str = preg_replace_callback('@src\s*=\s*(["|\'])(.*?)\1@i', array($this, 'html_src'), $str);`