2017-01-30 21:14:16 +00:00
|
|
|
# wuzz
|
|
|
|
|
|
|
|
Interactive cli tool for HTTP inspection
|
|
|
|
|
|
|
|
Wuzz command line arguments are similar to cURL's arguments,
|
|
|
|
so it can be used to inspect/modify requests copied from the
|
|
|
|
browser's network inspector with the "copy as cURL" feature.
|
|
|
|
|
|
|
|
![wuzz screencast](docs/images/screencast.gif)
|
|
|
|
|
|
|
|
|
|
|
|
## Installation and usage
|
|
|
|
|
|
|
|
```
|
|
|
|
$ go get github.com/asciimoo/wuzz
|
|
|
|
$ "$GOPATH/bin/wuzz" --help
|
|
|
|
```
|
|
|
|
|
2017-02-05 10:07:37 +00:00
|
|
|
### Commands
|
|
|
|
|
2017-02-05 15:55:46 +00:00
|
|
|
Keybinding | Description
|
|
|
|
----------------------------------------|------------------------------------------------------------
|
|
|
|
<kbd>Ctrl+R</kbd> | Send request.
|
|
|
|
<kbd>Ret</kbd> | Send request from window URL only.
|
|
|
|
<kbd>Ctrl+C</kbd> | Quit.
|
|
|
|
<kbd>Ctrl+K</kbd>, <kbd>Shift+Tab</kbd> | Previous view.
|
|
|
|
<kbd>Ctlr+J</kbd>, <kbd>Tab</kbd> | Next view.
|
2017-02-05 16:40:47 +00:00
|
|
|
<kbd>Ctrl+H</kbd>, <kbd>Alt+H</kbd> | Toggle history.
|
2017-02-05 15:55:46 +00:00
|
|
|
<kbd>Down</kbd> | Move down one view line.
|
|
|
|
<kbd>Up</kbd> | Move up one view line.
|
|
|
|
<kbd>Page down</kbd> | Move down one view page.
|
|
|
|
<kbd>Page up</kbd> | Move up one view page.
|
2017-01-30 21:14:16 +00:00
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
|
|
|
* Colors
|
|
|
|
* Save response with ctrl+s
|
|
|
|
* Response specific filters (xpath, etc..)
|
|
|
|
* Binary respone view
|
|
|
|
* Better navigation
|
2017-02-05 02:23:30 +00:00
|
|
|
* File upload
|
2017-01-30 21:14:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Bugs
|
|
|
|
|
|
|
|
Bugs or suggestions? Visit the [issue tracker](https://github.com/asciimoo/wuzz/issues).
|