googleprojectzero / domato

DOM fuzzer
https://googleprojectzero.blogspot.ch/2017/09/the-great-dom-fuzz-off-of-2017.html
Apache License 2.0
1.69k stars 278 forks source link

Use html.escape() by default and fallback to cgi.escape() #24

Closed tysmith closed 4 years ago

tysmith commented 4 years ago

Python 3.8 removed cgi.escape(). This fixes support for all Python versions >=2.7.

ifratric commented 4 years ago

Cool, thanks!