nc icon indicating copy to clipboard operation
nc copied to clipboard

Porting Netcat in Node.js. CLI util. :computer:

Results 4 nc issues
Sort by recently updated
recently updated
newest added

Hello, using `nc` triggers problems in `npm audit fix`: ``` │ Manual Review │ │ Some vulnerabilities require your attention to resolve │ │ │ │ Visit https://go.npm.me/audit-guide for additional...

Currently, `nc -l -p 1234 -c cowsay Hello` runs `/bin/sh cowsay Hello`. It should be `/bin/sh -c 'cowsay Hello'`.

#### Netcat as a Proxy ```sh $ mkfifo /tmp/fifo $ nc -l -k -p 8080 /tmp/fifo ``` Raise: ```text events.js:472 function arrayClone(arr, i) { ^ RangeError: Maximum call stack size...

bug

When doing a `.retry(5000)`: $ nc -R 5 localhost 2389 - Sending data `process.stdin.pipe(nc2.stream())` seems not effective on reconnect, but `nc2.pipe(process.stdout)` works.

bug
help wanted