| Crates.io | netnyan |
| lib.rs | netnyan |
| version | 0.1.0 |
| created_at | 2023-09-03 00:31:22.346733+00 |
| updated_at | 2023-09-03 00:31:22.346733+00 |
| description | netnyan is a replacement for netcat |
| homepage | |
| repository | https://github.com/kumavale/netnyan |
| max_upload_size | |
| id | 961976 |
| size | 38,940 |
netnyan is a replacement for netcat written in Rust.
netcat (often abbreviated to nc) is a computer networking utility for reading from and writing to network connections using TCP or UDP.
cargo install netnyan
listen:
nn -lp 22222
connect:
nn localhost 22222
HTTP request:
echo -e "GET / HTTP/1.1\r\nHost: example.com\r\nConnection: close\r\n\r\n" | nn example.com 80 | grep 200