-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5015303
commit 7a8bd48
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# NetHex | ||
A small rust utility for dumping data-layer network traffic | ||
|
||
``` | ||
./net_hex --help | ||
NetHex 0.1.0 | ||
Jack Newman | ||
A small utility for reading / writing directly to a network interface | ||
USAGE: | ||
net_hex [FLAGS] [OPTIONS] <interface> [bytes] | ||
FLAGS: | ||
-h, --help Prints help information | ||
-l, --list List network interfaces | ||
-V, --version Prints version information | ||
OPTIONS: | ||
-c, --count <count> Number of packet to receive before exiting [default: -1] | ||
-t, --timeout <timeout> Timeout before exiting the program. Default no timeout | ||
ARGS: | ||
<interface> The network interface to send/read from | ||
<bytes> A hex string of raw bytes to send to the interface e.g. 11EE22FF | ||
``` |