Skip to content

Releases: projectdiscovery/httpx

v1.6.8

14 Aug 18:10
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.7...v1.6.8

v1.6.7

02 Aug 22:09
5f806a8
Compare
Choose a tag to compare

What's Changed

   -pd, -dashboard                 upload / view output in projectdiscovery cloud (pdcp) UI dashboard
   -aid, -asset-id string          upload new assets to existing asset id (optional)
   -aname, -asset-name string      assets group name to set (optional)
   -pdu, -dashboard-upload string  upload httpx output file (jsonl) in projectdiscovery cloud (pdcp) UI dashboard

image

   -fep, -filter-error-page  filter response with ML based error page detection

Full Changelog: v1.6.6...v1.6.7

v1.6.6

10 Jul 16:47
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.5...v1.6.6

v1.6.5

24 Jun 14:33
Compare
Choose a tag to compare

What's Changed

# OPTION
-favicon  display mmh3 hash for '/favicon.ico' file
# EXAMPLE
$ echo hackerone.com | ./httpx -favicon -j -silent | jq -r .favicon_url
https://hackerone.com/favicon.ico

Full Changelog: v1.6.4...v1.6.5

v1.6.4

22 Jun 20:18
Compare
Choose a tag to compare

What's Changed

🎉 New Features

  • Added -efqdn option to extract subdomans from response header and body by @RamanaReddy0M in #1733
# OPTION
-extract-fqdn, -efqdn  get domain and subdomains from response body and header in jsonl/csv output
# EXAMPLE
$ echo tesla.com | ./httpx -efqdn -j -fr  | jq .
  • Added support to exclude response body with -sr option by @saeed0x1 in #1671
# OPTION
-ob, -omit-body  omit response body in output
# EXAMPLE
$ echo hackerone.com | ./httpx -store-response -omit-body

🐞 Bug Fixes

Other Changes

New Contributors

Full Changelog: v1.6.3...v1.6.4

v1.6.3

29 May 15:19
Compare
Choose a tag to compare

What's Changed

🐞 Bug Fixes

Full Changelog: v1.6.2...v1.6.3

v1.6.2

28 May 09:15
Compare
Choose a tag to compare

What's Changed

🎉 New Features

🐞 Bug Fixes

Other Changes

Full Changelog: v1.6.1...v1.6.2

v1.6.1

19 May 17:51
Compare
Choose a tag to compare

What's Changed

🎉 New Features

  • Added -protocol option for force http 1.1 connection by @Mzack9999 in #1669
   -pr, -protocol string  protocol to use (unknown, http11)

🐞 Bug Fixes

Other Changes

New Contributors

Full Changelog: v1.6.0...v1.6.1

v1.6.0

06 Mar 19:33
Compare
Choose a tag to compare

What's Changed

  • Fixed issue with -csv format including response header/body as default by @RamanaReddy0M in #1618
  • Fixed issue with -exclude option by @dogancanbakir in #1617
  • Updated default JSONL output fields by @RamanaReddy0M in #1614
    • Added tech and cdn, cdn_name, can be optionally disabled (-tech-detect=false)
    • Removed hash, can be optionally enabled (-hash md5,mmh3)
{
  "timestamp": "2024-03-02T02:37:52.116518+05:30",
-  "hash": {
-    "body_md5": "84238dfc8092e5d9c0dac8ef93371a07",
-    "body_mmh3": "-1139337416",
-    "body_sha256": "ea8fac7c65fb589b0d53560f5251f74f9e9b243478dcb6b3ea79b5e36449c8d9",
-    "body_simhash": "9899951357530060719",
-    "header_md5": "1892a0082f71e142d1972cd0ad94416b",
-    "header_mmh3": "-1939422575",
-    "header_sha256": "fac11d1b8a4259066455332206523eb94ff2da43d408873e7d4246cebf855716",
-    "header_simhash": "14461785313525862383"
-  },
  "port": "443",
  "url": "https://example.com",
  "input": "example.com",
  "title": "Example Domain",
  "scheme": "https",
  "webserver": "ECS (dce/2694)",
  "content_type": "text/html",
  "method": "GET",
  "host": "93.184.216.34",
  "path": "/",
  "time": "1.248762166s",
  "a": [
    "93.184.216.34",
    "2606:2800:220:1:248:1893:25c8:1946"
  ],
+  "tech": [
+    "Amazon ECS",
+    "Amazon Web Services",
+    "Azure",
+    "Azure CDN",
+    "Docker"
+  ],
+  "cdn_name": "google",
+  "cdn": true,
  "words": 298,
  "lines": 47,
  "status_code": 200,
  "content_length": 1256,
  "failed": false,
  "knowledgebase": {
    "PageType": "nonerror",
    "pHash": 0
  }
}

Caution

Updated default JSONL output fields by @RamanaReddy0M in #1614

Full Changelog: v1.5.0...v1.6.0

v1.5.0

01 Mar 19:42
Compare
Choose a tag to compare

Warning

This release upgrades ASNMap to the latest version that uses an authenticated API. If you utilize the -asn option of httpx, one time configuration is required to set up PDCP API Key. You can do this using the -auth option or through setting up an environment variable, such as export PDCP_API_KEY=xxxxx

What's Changed

Full Changelog: v1.4.0...v1.5.0