-
hello.php
prints out “happy hacking” using web browser.
-
hash
i think i did not find typical manpages for “hash”
-
nc – tcp/ip swiss army knife
ABOUT nc Netcat (often abbreviated to nc) is a computer networking utility for reading from and writing to network connections using TCP or UDP. Netcat is designed to be a dependable back-end that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging…
-
nc – TCP/IP swiss army knife
A UNIX Command Window I Server $nc -l -p 3333 hello hello how are you ? fine Window II client $nc 127.0.0.1 3333 hello hello how are you ? fine UNIX Explanation netcat is a simple unix utility which reads and writes data across network connections, using TCP or UDP protocol. Related Source Code Exposition…
-
nc
netcat is a simple unix utility which reads and writes data across network connections, using TCP or UDP protocol. netcat examples