« NetCat » : différence entre les versions

De Justine's wiki
Aller à la navigation Aller à la recherche
(Page créée avec « NAME<br/>      nc — arbitrary TCP and UDP connections and listens SYNOPSIS<br/>      nc [-46bCDdFhklNnrStUuvZz] [-I length] [-i... »)
 
(Contenu remplacé par « https://www.thegeekstuff.com/2012/04/nc-command-examples/?utm_source=feedburner =Qu'est-ce que c'est ?= Netcat ou nc est un utilitaire servant à débuguer et investi... »)
Balise : Contenu remplacé
Ligne 1 : Ligne 1 :
https://www.thegeekstuff.com/2012/04/nc-command-examples/?utm_source=feedburner


NAME<br/> &nbsp;&nbsp;&nbsp;&nbsp; nc — arbitrary TCP and UDP connections and listens
=Qu'est-ce que c'est ?=
Netcat ou nc est un utilitaire servant à débuguer et investiguer le réseau. Souvent appellé "le couteau suisse du réseau", son but est de créer des connexion TCP/UDP et de les étudier. Sa principale utilité est d'être utilisé dans des scripts ayant besoin de connexions TCP/UDP.


SYNOPSIS<br/> &nbsp;&nbsp;&nbsp;&nbsp; nc [-46bCDdFhklNnrStUuvZz] [-I length] [-i interval] [-M ttl] [-m minttl] [-O length] [-P proxy_username] [-p source_port]<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [-q seconds] [-s source] [-T keyword] [-V rtable] [-W recvlimit] [-w timeout] [-X proxy_protocol] [-x proxy_address[:port]]<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [destination] [port]
==Quelques exemple==
===Client-Serveur===


DESCRIPTION<br/> &nbsp;&nbsp;&nbsp;&nbsp; The nc (or netcat) utility is used for just about anything under the sun involving TCP, UDP, or UNIX-domain sockets.&nbsp; It can open<br/> &nbsp;&nbsp;&nbsp;&nbsp; TCP connections, send UDP packets, listen on arbitrary TCP and UDP ports, do port scanning, and deal with both IPv4 and IPv6.&nbsp; Un‐<br/> &nbsp;&nbsp;&nbsp;&nbsp; like telnet(1), nc scripts nicely, and separates error messages onto standard error instead of sending them to standard output, as<br/> &nbsp;&nbsp;&nbsp;&nbsp; telnet(1) does with some.
Pour écouter un port :
nc -l 2389


&nbsp;&nbsp;&nbsp;&nbsp; Common uses include:
En mode client, pour essayer de se connecter à un port :
nc localhost 2389


&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp; simple TCP proxies<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp; shell-script based HTTP clients and servers<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp; network daemon testing<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp; a SOCKS or HTTP ProxyCommand for ssh(1)<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp; and much, much more
Ainsi, si je lance les deux commandes, une fois connectée je peux taper du texte pour l'envoyer directement ! On peux désactiver cette fonction avec -d.


&nbsp;&nbsp;&nbsp;&nbsp; The options are as follows:
Par défaut, netcat utilise tcp; on peut cependant faire de l'UDP avec l'argument -u.


&nbsp;&nbsp;&nbsp;&nbsp; -4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use IPv4 addresses only.
===Transfert de fichiers===


&nbsp;&nbsp;&nbsp;&nbsp; -6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use IPv6 addresses only.
Netcat peut aussi transférer des fichiers. Côté client, on veut envoyer le fichier :


&nbsp;&nbsp;&nbsp;&nbsp; -b&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Allow broadcast.
cat fichiertest.txt
Salut!


&nbsp;&nbsp;&nbsp;&nbsp; -C&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Send CRLF as line-ending.&nbsp; Each line feed (LF) character from the input data is translated into CR+LF before being written<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; to the socket.&nbsp; Line feed characters that are already preceded with a carriage return (CR) are not translated.&nbsp; Received<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data is not affected.
Côté serveur, nous avons un fichier vide appellé "test".


&nbsp;&nbsp;&nbsp;&nbsp; -D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Enable debugging on the socket.
On lance le serveur:
nc -l 2389 > test


&nbsp;&nbsp;&nbsp;&nbsp; -d&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do not attempt to read from stdin.
Et pour le client:
cat fichiertest.txt | nc localhost 2389


&nbsp;&nbsp;&nbsp;&nbsp; -F&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Pass the first connected socket using sendmsg(2) to stdout and exit.&nbsp; This is useful in conjunction with -X to have nc per‐<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; form connection setup with a proxy but then leave the rest of the connection to another program (e.g. ssh(1) using the<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ssh_config(5) ProxyUseFdpass option).&nbsp; Cannot be used with -U.
Le fichier est rempli côté serveur et la connexion est coupée.


&nbsp;&nbsp;&nbsp;&nbsp; -h&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Print out the nc help text and exit.
===Le support des timeouts===


&nbsp;&nbsp;&nbsp;&nbsp; -I length<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Specify the size of the TCP receive buffer.
On peut préciser un nombre de secondes après lequel la connexion passera en timeout. Pour cela, on utilise -w :


&nbsp;&nbsp;&nbsp;&nbsp; -i interval<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sleep for interval seconds between lines of text sent and received.&nbsp; Also causes a delay time between connections to multi‐<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ple ports.
nc -w 10 localhost 1289


&nbsp;&nbsp;&nbsp;&nbsp; -k&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; When a connection is completed, listen for another one.&nbsp; Requires -l.&nbsp; When used together with the -u option, the server<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; socket is not connected and it can receive UDP datagrams from multiple hosts.
Attention, on ne peut utiliser -w avec -l coté serveur; -w n'est du coup pas pris en compte.


&nbsp;&nbsp;&nbsp;&nbsp; -l&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Listen for an incoming connection rather than initiating a connection to a remote host.&nbsp; The destination and port to listen<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; on can be specified either as non-optional arguments, or with options -s and -p respectively.&nbsp; Cannot be used together with<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -x or -z.&nbsp; Additionally, any timeouts specified with the -w option are ignored.
===IPv4 vs IPv6===


&nbsp;&nbsp;&nbsp;&nbsp; -M ttl&nbsp; Set the TTL / hop limit of outgoing packets.
On peut forcer l'usage de l'un ou l'autre avec -4 ou -6.


&nbsp;&nbsp;&nbsp;&nbsp; -m minttl<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Ask the kernel to drop incoming packets whose TTL / hop limit is under minttl.
===Forcer le serveur à rester up===


&nbsp;&nbsp;&nbsp;&nbsp; -N&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; shutdown(2) the network socket after EOF on the input.&nbsp; Some servers require this to finish their work.
Lorsque le client se déconnecte, en temps normal le serveur s'arrête. On peut empêcher ce comportement avec -k:


&nbsp;&nbsp;&nbsp;&nbsp; -n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do not do any DNS or service lookups on any specified addresses, hostnames or ports.
nc -k -l 1289


&nbsp;&nbsp;&nbsp;&nbsp; -O length<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Specify the size of the TCP send buffer.
===Faire en sorte que le client reste up après la fin du fichier===


&nbsp;&nbsp;&nbsp;&nbsp; -P proxy_username<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Specifies a username to present to a proxy server that requires authentication.&nbsp; If no username is specified then authenti‐<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cation will not be attempted.&nbsp; Proxy authentication is only supported for HTTP CONNECT proxies at present.
Quand le client reàoit un EOF, il s'arrête. On peut empêcher cela avec -q; cet argument attend en paramètre un nombre de secondes après lequel le client s'arrêtera, après avoir reçu un EOF :


&nbsp;&nbsp;&nbsp;&nbsp; -p source_port<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Specify the source port nc should use, subject to privilege restrictions and availability.
nc -q 5 localhost 1289
 
&nbsp;&nbsp;&nbsp;&nbsp; -q seconds<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; after EOF on stdin, wait the specified number of seconds and then quit. If seconds is negative, wait forever (default).<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Specifying a non-negative seconds implies -N.
 
&nbsp;&nbsp;&nbsp;&nbsp; -r&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Choose source and/or destination ports randomly instead of sequentially within a range or in the order that the system as‐<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; signs them.
 
&nbsp;&nbsp;&nbsp;&nbsp; -S&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Enable the RFC 2385 TCP MD5 signature option.
 
&nbsp;&nbsp;&nbsp;&nbsp; -s source<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Send packets from the interface with the source IP address.&nbsp; For UNIX-domain datagram sockets, specifies the local tempo‐<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rary socket file to create and use so that datagrams can be received.&nbsp; Cannot be used together with -x.
 
&nbsp;&nbsp;&nbsp;&nbsp; -T keyword<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Change the IPv4 TOS/IPv6 traffic class value.&nbsp; keyword may be one of critical, inetcontrol, lowcost, lowdelay, netcontrol,<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throughput, reliability, or one of the DiffServ Code Points: ef, af11 ... af43, cs0 ... cs7; or a number in either hex or<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; decimal.
 
&nbsp;&nbsp;&nbsp;&nbsp; -t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Send RFC 854 DON'T and WON'T responses to RFC 854 DO and WILL requests.&nbsp; This makes it possible to use nc to script telnet<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sessions.
 
&nbsp;&nbsp;&nbsp;&nbsp; -U&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use UNIX-domain sockets.&nbsp; Cannot be used together with -F or -x.
 
&nbsp;&nbsp;&nbsp;&nbsp; -u&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use UDP instead of TCP.&nbsp; Cannot be used together with -x.&nbsp; For UNIX-domain sockets, use a datagram socket instead of a<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stream socket.&nbsp; If a UNIX-domain socket is used, a temporary receiving socket is created in /tmp unless the -s flag is<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; given.
 
&nbsp;&nbsp;&nbsp;&nbsp; -V rtable<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set the routing table to be used.
 
&nbsp;&nbsp;&nbsp;&nbsp; -v&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Produce more verbose output.
 
&nbsp;&nbsp;&nbsp;&nbsp; -W recvlimit<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Terminate after receiving recvlimit packets from the network.
 
&nbsp;&nbsp;&nbsp;&nbsp; -w timeout<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connections which cannot be established or are idle timeout after timeout seconds.&nbsp; The -w flag has no effect on the -l op‐<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tion, i.e. nc will listen forever for a connection, with or without the -w flag.&nbsp; The default is no timeout.
 
&nbsp;&nbsp;&nbsp;&nbsp; -X proxy_protocol<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use proxy_protocol when talking to the proxy server.&nbsp; Supported protocols are 4 (SOCKS v.4), 5 (SOCKS v.5) and connect<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (HTTPS proxy).&nbsp; If the protocol is not specified, SOCKS version 5 is used.
 
&nbsp;&nbsp;&nbsp;&nbsp; -x proxy_address[:port]<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connect to destination using a proxy at proxy_address and port.&nbsp; If port is not specified, the well-known port for the<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; proxy protocol is used (1080 for SOCKS, 3128 for HTTPS).&nbsp; An IPv6 address can be specified unambiguously by enclosing<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; proxy_address in square brackets.&nbsp; A proxy cannot be used with any of the options -lsuU.
 
&nbsp;&nbsp;&nbsp;&nbsp; -Z&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DCCP mode.
 
&nbsp;&nbsp;&nbsp;&nbsp; -z&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Only scan for listening daemons, without sending any data to them.&nbsp; Cannot be used together with -l.
 
&nbsp;&nbsp;&nbsp;&nbsp; destination can be a numerical IP address or a symbolic hostname (unless the -n option is given).&nbsp; In general, a destination must<br/> &nbsp;&nbsp;&nbsp;&nbsp; be specified, unless the -l option is given (in which case the local host is used).&nbsp; For UNIX-domain sockets, a destination is re‐<br/> &nbsp;&nbsp;&nbsp;&nbsp; quired and is the socket path to connect to (or listen on if the -l option is given).
 
&nbsp;&nbsp;&nbsp;&nbsp; port can be a specified as a numeric port number, or as a service name.&nbsp; Ports may be specified in a range of the form nn-mm.&nbsp; In<br/> &nbsp;&nbsp;&nbsp;&nbsp; general, a destination port must be specified, unless the -U option is given.
 
CLIENT/SERVER MODEL<br/> &nbsp;&nbsp;&nbsp;&nbsp; It is quite simple to build a very basic client/server model using nc.&nbsp; On one console, start nc listening on a specific port for a<br/> &nbsp;&nbsp;&nbsp;&nbsp; connection.&nbsp; For example:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -l 1234
 
&nbsp;&nbsp;&nbsp;&nbsp; nc is now listening on port 1234 for a connection.&nbsp; On a second console (or a second machine), connect to the machine and port be‐<br/> &nbsp;&nbsp;&nbsp;&nbsp; ing listened on:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc 127.0.0.1 1234
 
&nbsp;&nbsp;&nbsp;&nbsp; There should now be a connection between the ports.&nbsp; Anything typed at the second console will be concatenated to the first, and<br/> &nbsp;&nbsp;&nbsp;&nbsp; vice-versa.&nbsp; After the connection has been set up, nc does not really care which side is being used as a ‘server’ and which side is<br/> &nbsp;&nbsp;&nbsp;&nbsp; being used as a ‘client’.&nbsp; The connection may be terminated using an EOF (‘^D’).
 
&nbsp;&nbsp;&nbsp;&nbsp; There is no -c or -e option in this netcat, but you still can execute a command after connection being established by redirecting<br/> &nbsp;&nbsp;&nbsp;&nbsp; file descriptors. Be cautious here because opening a port and let anyone connected execute arbitrary command on your site is DAN‐<br/> &nbsp;&nbsp;&nbsp;&nbsp; GEROUS. If you really need to do this, here is an example:
 
&nbsp;&nbsp;&nbsp;&nbsp; On ‘server’ side:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ rm -f /tmp/f; mkfifo /tmp/f<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ cat /tmp/f | /bin/sh -i 2>&1 | nc -l 127.0.0.1 1234 > /tmp/f
 
&nbsp;&nbsp;&nbsp;&nbsp; On ‘client’ side:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc host.example.com 1234<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ (shell prompt from host.example.com)
 
&nbsp;&nbsp;&nbsp;&nbsp; By doing this, you create a fifo at /tmp/f and make nc listen at port 1234 of address 127.0.0.1 on ‘server’ side, when a ‘client’<br/> &nbsp;&nbsp;&nbsp;&nbsp; establishes a connection successfully to that port, /bin/sh gets executed on ‘server’ side and the shell prompt is given to<br/> &nbsp;&nbsp;&nbsp;&nbsp; ‘client’ side.
 
&nbsp;&nbsp;&nbsp;&nbsp; When connection is terminated, nc quits as well. Use -k if you want it keep listening, but if the command quits this option won't<br/> &nbsp;&nbsp;&nbsp;&nbsp; restart it or keep nc running. Also don't forget to remove the file descriptor once you don't need it anymore:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ rm -f /tmp/f
 
DATA TRANSFER<br/> &nbsp;&nbsp;&nbsp;&nbsp; The example in the previous section can be expanded to build a basic data transfer model.&nbsp; Any information input into one end of<br/> &nbsp;&nbsp;&nbsp;&nbsp; the connection will be output to the other end, and input and output can be easily captured in order to emulate file transfer.
 
&nbsp;&nbsp;&nbsp;&nbsp; Start by using nc to listen on a specific port, with output captured into a file:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -l 1234 > filename.out
 
&nbsp;&nbsp;&nbsp;&nbsp; Using a second machine, connect to the listening nc process, feeding it the file which is to be transferred:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -N host.example.com 1234 < filename.in
 
&nbsp;&nbsp;&nbsp;&nbsp; After the file has been transferred, the connection will close automatically.
 
TALKING TO SERVERS<br/> &nbsp;&nbsp;&nbsp;&nbsp; It is sometimes useful to talk to servers “by hand” rather than through a user interface.&nbsp; It can aid in troubleshooting, when it<br/> &nbsp;&nbsp;&nbsp;&nbsp; might be necessary to verify what data a server is sending in response to commands issued by the client.&nbsp; For example, to retrieve<br/> &nbsp;&nbsp;&nbsp;&nbsp; the home page of a web site:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ printf "GET / HTTP/1.0\r\n\r\n" | nc host.example.com 80
 
&nbsp;&nbsp;&nbsp;&nbsp; Note that this also displays the headers sent by the web server.&nbsp; They can be filtered, using a tool such as sed(1), if necessary.
 
&nbsp;&nbsp;&nbsp;&nbsp; More complicated examples can be built up when the user knows the format of requests required by the server.&nbsp; As another example,<br/> &nbsp;&nbsp;&nbsp;&nbsp; an email may be submitted to an SMTP server using:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc [-C] localhost 25 << EOF<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HELO host.example.com<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MAIL FROM:<user@host.example.com><br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RCPT TO:<user2@host.example.com><br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DATA<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Body of email.<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QUIT<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EOF
 
PORT SCANNING<br/> &nbsp;&nbsp;&nbsp;&nbsp; It may be useful to know which ports are open and running services on a target machine.&nbsp; The -z flag can be used to tell nc to re‐<br/> &nbsp;&nbsp;&nbsp;&nbsp; port open ports, rather than initiate a connection. Usually it's useful to turn on verbose output to stderr by use this option in<br/> &nbsp;&nbsp;&nbsp;&nbsp; conjunction with -v option.
 
&nbsp;&nbsp;&nbsp;&nbsp; For example:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -zv host.example.com 20-30<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connection to host.example.com 22 port [tcp/ssh] succeeded!<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connection to host.example.com 25 port [tcp/smtp] succeeded!
 
&nbsp;&nbsp;&nbsp;&nbsp; The port range was specified to limit the search to ports 20 - 30, and is scanned by increasing order (unless the -r flag is set).
 
&nbsp;&nbsp;&nbsp;&nbsp; You can also specify a list of ports to scan, for example:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -zv host.example.com http 20 22-23<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nc: connect to host.example.com 80 (tcp) failed: Connection refused<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nc: connect to host.example.com 20 (tcp) failed: Connection refused<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connection to host.example.com port [tcp/ssh] succeeded!<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nc: connect to host.example.com 23 (tcp) failed: Connection refused
 
&nbsp;&nbsp;&nbsp;&nbsp; The ports are scanned by the order you given (unless the -r flag is set).
 
&nbsp;&nbsp;&nbsp;&nbsp; Alternatively, it might be useful to know which server software is running, and which versions.&nbsp; This information is often con‐<br/> &nbsp;&nbsp;&nbsp;&nbsp; tained within the greeting banners.&nbsp; In order to retrieve these, it is necessary to first make a connection, and then break the<br/> &nbsp;&nbsp;&nbsp;&nbsp; connection when the banner has been retrieved.&nbsp; This can be accomplished by specifying a small timeout with the -w flag, or perhaps<br/> &nbsp;&nbsp;&nbsp;&nbsp; by issuing a "QUIT" command to the server:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ echo "QUIT" | nc host.example.com 20-30<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SSH-1.99-OpenSSH_3.6.1p2<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Protocol mismatch.<br/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 220 host.example.com IMS SMTP Receiver Version 0.84 Ready
 
EXAMPLES<br/> &nbsp;&nbsp;&nbsp;&nbsp; Open a TCP connection to port 42 of host.example.com, using port 31337 as the source port, with a timeout of 5 seconds:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -p 31337 -w 5 host.example.com 42
 
&nbsp;&nbsp;&nbsp;&nbsp; Open a UDP connection to port 53 of host.example.com:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -u host.example.com 53
 
&nbsp;&nbsp;&nbsp;&nbsp; Open a TCP connection to port 42 of host.example.com using 10.1.2.3 as the IP for the local end of the connection:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -s 10.1.2.3 host.example.com 42
 
&nbsp;&nbsp;&nbsp;&nbsp; Create and listen on a UNIX-domain stream socket:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -lU /var/tmp/dsocket
 
&nbsp;&nbsp;&nbsp;&nbsp; Connect to port 42 of host.example.com via an HTTP proxy at 10.2.3.4, port 8080.&nbsp; This example could also be used by ssh(1); see<br/> &nbsp;&nbsp;&nbsp;&nbsp; the ProxyCommand directive in ssh_config(5) for more information.
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -x10.2.3.4:8080 -Xconnect host.example.com 42
 
&nbsp;&nbsp;&nbsp;&nbsp; The same example again, this time enabling proxy authentication with username “ruser” if the proxy requires it:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ nc -x10.2.3.4:8080 -Xconnect -Pruser host.example.com 42
&nbsp;
&nbsp;

Version du 19 juillet 2019 à 11:38

https://www.thegeekstuff.com/2012/04/nc-command-examples/?utm_source=feedburner

Qu'est-ce que c'est ?

Netcat ou nc est un utilitaire servant à débuguer et investiguer le réseau. Souvent appellé "le couteau suisse du réseau", son but est de créer des connexion TCP/UDP et de les étudier. Sa principale utilité est d'être utilisé dans des scripts ayant besoin de connexions TCP/UDP.

Quelques exemple

Client-Serveur

Pour écouter un port :

nc -l 2389

En mode client, pour essayer de se connecter à un port :

nc localhost 2389

Ainsi, si je lance les deux commandes, une fois connectée je peux taper du texte pour l'envoyer directement ! On peux désactiver cette fonction avec -d.

Par défaut, netcat utilise tcp; on peut cependant faire de l'UDP avec l'argument -u.

Transfert de fichiers

Netcat peut aussi transférer des fichiers. Côté client, on veut envoyer le fichier :

cat fichiertest.txt
Salut!

Côté serveur, nous avons un fichier vide appellé "test".

On lance le serveur:

nc -l 2389 > test

Et pour le client:

cat fichiertest.txt | nc localhost 2389

Le fichier est rempli côté serveur et la connexion est coupée.

Le support des timeouts

On peut préciser un nombre de secondes après lequel la connexion passera en timeout. Pour cela, on utilise -w :

nc -w 10 localhost 1289

Attention, on ne peut utiliser -w avec -l coté serveur; -w n'est du coup pas pris en compte.

IPv4 vs IPv6

On peut forcer l'usage de l'un ou l'autre avec -4 ou -6.

Forcer le serveur à rester up

Lorsque le client se déconnecte, en temps normal le serveur s'arrête. On peut empêcher ce comportement avec -k:

nc -k -l 1289

Faire en sorte que le client reste up après la fin du fichier

Quand le client reàoit un EOF, il s'arrête. On peut empêcher cela avec -q; cet argument attend en paramètre un nombre de secondes après lequel le client s'arrêtera, après avoir reçu un EOF :

nc -q 5 localhost 1289