Skip to content

Commit 4129b88

Browse files
committed
readme update
1 parent ead3d97 commit 4129b88

File tree

2 files changed

+30
-20
lines changed

2 files changed

+30
-20
lines changed

README.md

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,26 @@ httpx is a fast and multi-purpose HTTP toolkit allow to run multiple probers usi
4444

4545
### Supported **httpx** probes:-
4646

47-
| Probes | Status |
48-
|-------------------------|---------------------------------------|
49-
| URL ||
50-
| Title ||
51-
| Status Code ||
52-
| Content Length ||
53-
| TLS Certificate ||
54-
| CSP Header ||
55-
| HTTP2 ||
56-
| HTTP 1.1 Pipeline ||
57-
| Virtual host ||
58-
| Location Header ||
59-
| Web Server ||
60-
| Web Socket ||
61-
| Path ||
62-
| Ports ||
63-
| Request method ||
47+
| Probes | Status |
48+
|--------------------|---------|
49+
| URL ||
50+
| Title ||
51+
| Status Code ||
52+
| Content Length ||
53+
| TLS Certificate ||
54+
| CSP Header ||
55+
| HTTP2 ||
56+
| HTTP 1.1 Pipeline ||
57+
| Virtual host ||
58+
| Location Header ||
59+
| Web Server ||
60+
| Web Socket ||
61+
| Path ||
62+
| Ports ||
63+
| Request method ||
64+
| Ip ||
65+
| CNAME ||
66+
| CDN ||
6467

6568

6669
# Installation Instructions
@@ -131,7 +134,7 @@ This will display help for the tool. Here are all the switches it supports.
131134
| -sr | Store responses to file (default false) | httpx -store-response |
132135
| -srd | Directory to store response (default output) | httpx -store-response-dir output |
133136
| -unsafe | Send raw requests skipping golang normalization | httpx -unsafe |
134-
| -request | File containing raw request to process | httpx -request |
137+
| -request | File containing raw request to process | httpx -request |
135138
| -retries | Number of retries | httpx -retries |
136139
| -silent | Prints only results in the output | httpx -silent |
137140
| -timeout | Timeout in seconds (default 5) | httpx -timeout 10 |
@@ -141,6 +144,13 @@ This will display help for the tool. Here are all the switches it supports.
141144
| -method | Output requested method | httpx -method |
142145
| -response-in-json | Include response in stdout (only works with -json) | httpx -response-in-json |
143146
| -websocket | Prints if a websocket is exposed | httpx -websocket |
147+
| -ip | Prints the host IP | httpx -ip |
148+
| -cname | Prints the cname record if available | httpx -cname |
149+
| -cdn | Check if domain's ip belongs to known CDN | httpx -cdn |
150+
| -filter-string | Filter results based on filtered string | httpx -filter-string XXX |
151+
| -match-string | Filter results based on matched string | httpx -match-string XXX |
152+
| -filter-regex | Filter results based on filtered regex | httpx -filter-regex XXX |
153+
| -match-regex | Filter results based on matched regex | httpx -match-regex XXX |
144154

145155

146156
### Running httpx with stdin

cmd/httpx/httpx.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -797,11 +797,11 @@ const banner = `
797797
/ __ \/ __/ __/ __ \| /
798798
/ / / / /_/ /_/ /_/ / |
799799
/_/ /_/\__/\__/ .___/_/|_|
800-
/_/ v1.0.1
800+
/_/ v1.0.2
801801
`
802802

803803
// Version is the current version of httpx
804-
const Version = `1.0.1`
804+
const Version = `1.0.2`
805805

806806
// showBanner is used to show the banner to the user
807807
func showBanner() {

0 commit comments

Comments
 (0)