tcp – Page 2 – POFTUT

What Is Socket In Linux?

What Is Socket In Linux?

The socket is a mechanism that provides a connection between the two-processor system by using network stacks. In a more clear way, we can use sockets to communicate and transfer data between two systems. As we know Unix and Linux systems work on file logic. Everything in the operating system is a file where network connections … Read more

Linux SSH Tunneling or Port Forwarding Local and Remote Ports with Examples?

Linux SSH Tunneling or Port Forwarding Local and Remote Ports with Examples?

Ssh protocol secures remote connections which are shell or terminal-based to the remote systems. Ssh protocol and tool provides more than that. We can use ssh to create tunnels over local and remote systems or connect remote system X server. In this tutorial, we will look at how to tunnel and port forward locally and remotely. … Read more

How To Scan All TCP and UDP Ports with Nmap?

How To Scan All TCP and UDP Ports with Nmap?

Nmap is a very useful and popular tool used to scan ports. Nmap by default scans the most popular 1000 ports. We may need to change the port range and protocol type to all while scanning with Nmap. Scan All TCP Ports with Range We can specify the port range with the -p option. As we … Read more

How To Solve “DNS Server not responding”

DNS is one of the most important protocols for internet and network usage. If DNS wouldn’t exist you will have to type https://45.79.133.118 to your browser in order to access this web site. But some times even have an internet connection we may have some access errors related to DNS. In this tutorial, we will look … Read more

What is IP Address (Internet Protocol Address)?

In computer networks we need to give each host or system a unique number and/or name. This is the only way to make communication possible. In other ways there will be a lot of problems like collusion or miss interpretation. Most of the system uses IP addresses to communication over computer or IT networks. In … Read more

How To Check and List Listening Ports with Netstat In Linux

netstat is very useful tool which provides a lot of information about the network of operating system. netstat command can list ip addreass, route, port, connections etc. More detailed information about the netstat command can be found in the following tutorial. Linux Netstat Command With Examples List All Listening Ports We can use netstat -l options in order to list … Read more

How To Scan TCP and UDP Ports With Nmap?

Nmap is very popular tool among pentester and system/network administrators. We have all ready provided different nmap tutorials and cheat sheet but TCP and UDP port scan is important part of the scan. We will dive in detail in this tutorial. Start Port Scan The most simple usage without any parameter for a port scan … Read more

Nmap Commands Cheat Sheet

Nmap is the most popular tools used in penetrations test or assessments for network scanning. Nmap have another features like listing some basic vulnerabilities and protocol related details. We will look Nmap features in fast way. For more detailed information read following tutorial. Nmap Tutorial Target Selection Target is the remote system nmap will scan. … Read more

TCP and UDP Port List, Names and Usage Frequency

TCP and UDP Port List, Names and Usage Frequency

Nmap tool provides a popular ports list as a database where this list is also used in network and service scans. Here is the list but before we will look at the command which will list ports according to the popularity. Nmap Top Ports Listing We can use sort command in order to list ports according … Read more

Nmap Port Scan (TCP , UDP , ACK, SYNC,…)

[rps-include post=6632] This chapter is real part of the scanning. In this chapter we will look how to define port scanning parameters. The techniques described in this chapter generally requires privileged user which means root or Administrator user. Tcp Syn Scan This scan is default and most popular scan. This scan is also referred half … Read more