What's Changed
- Added multiple hash support (
md5,mmh3,simhash,sha1,sha256,sha512
) by @M09Ic in #517 - Added support to display CDN service name by @Ice3man543 in #499
- Added ratelimit per minute (
rlm
) support by @LuitelSamikshya in #490 - Added stats-interval/si flag for changing stats display frequency by @Ice3man543 in #500
- Added
euc-kr
charset support by @Mzack9999 in #510 - Fixed bug in stats timer by @LuitelSamikshya in #504
Issues closed in release: https://github.com/projectdiscovery/httpx/milestone/4?closed=1
New CLI flag:
-hash string display response body hash (supported: md5,mmh3,simhash,sha1,sha256,sha512)
-rlm, -rate-limit-minute int maximum number of requests to send per minute
-si, -stats-interval int number of seconds to wait between showing a statistics update (default: 5)
JSON output update (breaking change):
- "body-sha256": "ea8fac7c65fb589b0d53560f5251f74f9e9b243478dcb6b3ea79b5e36449c8d9",
- "header-sha256": "8012a277d8e5cfe979f25c3f8c89a19fb6ed06ccf3e6f0987b69809f17a29d20",
+ "hashes":{
+ "body-md5":"84238dfc8092e5d9c0dac8ef93371a07",
+ "body-mmh3":"-1139337416",
+ "body-sha256":"ea8fac7c65fb589b0d53560f5251f74f9e9b243478dcb6b3ea79b5e36449c8d9",
+ "body-simhash":"9899951357530060719",
+ "header-md5":"34becaa0b301740409a00e0ac1ae996a",
+ "header-mmh3":"-337164226",
+ "header-sha256":"1fbc7168a1fdba67b2ee91c20556c9efc9d5898e4bdbf50a77e2c880b42662ae",
+ "header-simhash":"15614706818132708719"
+ }
New Contributors
Full Changelog: v1.1.5...v1.2.0