Jump to content

Netcat: Difference between revisions

From sexy wiki
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
= нетcat =
= nc // нетcat =


Test localhost port 8080, verbose (-v), only scan vor listening demons (-z):<br>
Netcat differs a lot in syntax across versions.<br>
 
== Examples ==
 
Test localhost port 8080, verbose (-v), only scan for listening demons (-z):<br>
<code>nc -vz localhost 8080</code><br>
<code>nc -vz localhost 8080</code><br>



Latest revision as of 15:55, 13 August 2026

nc // нетcat

Netcat differs a lot in syntax across versions.

Examples

Test localhost port 8080, verbose (-v), only scan for listening demons (-z):
nc -vz localhost 8080

Start a listening demon on port 1312:
nc -l 1312

Connect interactively:
nc localhost 1312