+4 votes
41 views
How to use NETCAT

in Linux/Unix by (551k points)
reopened | 41 views

1 Answer

+5 votes
Best answer

How to use netcat

To stay up to date, remember to subscribe to our YouTube channel!
SUBSCRIBE ON YOUTUBE

 

In Linux environments there are hundreds of processes and services that must be managed on a daily basis, but it is no secret to anyone that one of the most delicate are those related to the network, this includes protocols such as TCP, UDP, checking port status and stability. of the connection, this is a really extensive task but thanks to netcat we can have a centralized administration on these..

 

Netcat is a utility which is capable of reading and writing data through network connections using the TCP or UDP protocols. In a simple way, without much explanation, Netcat is in charge of creating a TCP connection to the port that we specify on the destination computer or host, when detected, a standard input will be created sent to the host and all the information that is collected will be returned using the connection in a standard outlet. In addition to this, Netcat can be used as a server, in this mode it is in charge of listening for incoming connections and carrying out the reading and writing tasks, some of the things that we can do with Netcat are:

 

functions
  • Forward TCP and UDP ports to other sites.
  • Works with iPv4 and iPv6.
  • SSL-compliant.
  • Supports proxy connections using SOCKS4 or HTTP (CONNECT method).
  • Available for Linux, Windows and macOS systems.

 


 

parameters
There is a group of parameters that we can use with Netcat which are:

 

  • -c (string): Specifies the shell commands to run after connecting to the host.
  • -e (filename): Indicates the filename to execute after connecting.
  • -g gateway – Indicates the source routing hops of the gateway, supports up to 8 hops.
  • -i – Indicates the delay interval in seconds for scanned ports.
  • -l: is the listening mode for incoming connections.
  • -n: Allows only numeric ip addresses that do not have dns.
  • -p (port): Refers to the local port number either individually or in range.
  • -b: Allow udp transmissions.
  • -r: Randomize local and remote ports.
  • -s (addr): is the local source address.
  • -t: enable telnet negotiation.
  • -u: udp mode is used.
  • -v: activate verbose mode.
  • -w (seconds): This is the amount of time to wait for final connections and reads in seconds.
  • -z: is the zero I/O mode which is used for scanning.

 

 

Now TechnoWikis will explain how to use Netcat in Linux, in this case it will be Ubuntu.

 

How to use netcat

 

Step 1

To start we are going to open the terminal and it is possible to use the following command to analyze the local connections of the system, there the port must be specified:
 netcat -vn 127.0.0.1 #port 
We will see the current status of that port in the system.

 

 

image

 

Step 2

It is possible to carry out the analysis to an Internet domain and we can use a range of ports to receive the status of these, in this case we will use the following syntax:
 netcat -z -v domain.com (port range) 
image
Step 3

We can detect when a port is active since its legend tells us:

 

 

image

 

Step 4

Now it is possible to carry out the analysis on a remote computer by entering the following command together with its respective IP address:
 netcat -z -v IP_Address (port range) 
image

 

step 5

One option of this command is to send messages between the local terminals, if we want to use it we will execute the following in the terminal indicating the port to activate listening:
 netcat -l -p (port) 
step 6

Now we open another terminal in the system and there we are going to use the following command with the local address of the equipment and the port that we have activated:
 netcat 127.0.0.1 (port) 

image

 

step 7

Now when something is entered in the console it will be reflected in real time in the other window when pressing Enter:

 

image

 

step 8

Now it will be possible to work between two computers, first of all on the main computer we are going to enable the listening port with the command:
 netcat -l -vv -p (port) 
image
step 9

We see that the port remains active in listening mode, now on the other computer we are going to establish the connection with the main one using the following command:
 netcat Remote_IP_address (port) 
image

 

step 10

We see that the port is activated, now we enter some text:

 

image

 

step 11

When we press Enter this text will be reflected on the remote computer in real time:

 

image

 

step 12

It is possible to transfer files with this command as we mentioned, to begin with we will go to the file path and see its name with the "dir" command:

 

image

 

step 13

In this case it will be the "TechnoWikis.txt" file, now in the terminal we execute the following to upload this file:
 netcat -l -p (port) <file 
image

 

step 14

On the remote computer we are going to execute the following to download this file that is available:
 netcat “name” >file 
image

 

step 15

We execute the "dir" command to validate that it has been loaded correctly:

 

image

 

step 16

Now with the “cat” command we are going to see the content of the file that was transferred remotely:
 cat “file” 
image

 

There are some more options that Netcat offers us, but with these alternatives we will have the ability to access complete TCP and UDP results, but not only this, but also to be able to send messages between computers and be able to transfer files safely and quickly, make the most of it. to this command so that the administration scopes are more and more complete..

 


by (3.5m points)
edited

Related questions

+5 votes
2 answers
asked May 11, 2023 in Linux/Unix by backtothefuture (551k points) | 86 views
+3 votes
1 answer
asked Feb 6, 2023 in Linux/Unix by backtothefuture (551k points) | 60 views
+4 votes
1 answer
asked Oct 19, 2022 in Linux/Unix by backtothefuture (551k points) | 51 views
Sponsored articles cost $40 per post. You can contact us via Feedback
10,634 questions
10,766 answers
510 comments
3 users