DM_

Results 4 issues of DM_

`PUBLIC_SUFFIX_LIST_URLS` now can only define with the function arguments, can this define by environment?

测试之前历史漏洞的时候,需要进行一些地方的微调,然后就发现历史的dockerfile现在已经无法重新编译。 比如这里 https://github.com/vulhub/vulhub/blob/master/base/thinkphp/5.0.9/Dockerfile 出错的原因是当前写dockerfile的时候,安装composer直接用的是最新版,所以当现在再去编译的时候依然拉取的是composer最新版,导致最后安装出现了不兼容的问题。 ![image](https://user-images.githubusercontent.com/6091595/81642722-a2f0a680-9456-11ea-834c-19b589add4cf.png) 所以考虑到这个项目能够尽可能的复现历史场景,在写dockerfile的时候应该注意某些包的版本固定问题。 > 需要重新固定composer的版本 ```bash RUN set -ex \ && cd /var/www \ && curl -#sSL https://getcomposer.org/download/1.7.3/composer.phar -o composer.phar \ && php composer.phar install \ &&...

In Progress

we should consider `._channel.send` have race condition issue with page close event in some Page's method. `Page._update_interception_patterns` is just a situation i encountered. This problem is triggered when the `Page.unroute`...