2020-10-06 17:27:34 +01:00
|
|
|
# httpflow
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
> A command-line utility to capture and dump HTTP streams.
|
2020-10-06 17:27:34 +01:00
|
|
|
> More information: <https://github.com/six-ddc/httpflow>.
|
|
|
|
|
|
|
|
- Capture traffic on all interfaces:
|
|
|
|
|
|
|
|
`httpflow -i {{any}}`
|
|
|
|
|
|
|
|
- Use a bpf-style capture to filter the results:
|
|
|
|
|
|
|
|
`httpflow {{host httpbin.org or host baidu.com}}`
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
- Use a regular expression to filter requests by URLs:
|
2020-10-06 17:27:34 +01:00
|
|
|
|
2021-05-10 10:03:12 +01:00
|
|
|
`httpflow -u '{{regular_expression}}'`
|
2020-10-06 17:27:34 +01:00
|
|
|
|
|
|
|
- Read packets from pcap format binary file:
|
|
|
|
|
|
|
|
`httpflow -r {{out.cap}}`
|
|
|
|
|
|
|
|
- Write the output to a directory:
|
|
|
|
|
|
|
|
`httpflow -w {{path/to/directory}}`
|