1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/httpflow.md

25 lines
534 B
Markdown
Raw Normal View History

2020-10-06 09:27:34 -07:00
# httpflow
> A command-line utility to capture and dump HTTP streams.
2020-10-06 09:27:34 -07: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}}`
- Use a regular expression to filter requests by URLs:
2020-10-06 09:27:34 -07:00
`httpflow -u '{{regular_expression}}'`
2020-10-06 09:27:34 -07:00
- Read packets from pcap format binary file:
`httpflow -r {{out.cap}}`
- Write the output to a directory:
`httpflow -w {{path/to/directory}}`