Nmap
Build from source code by following youtube tut.
step 01 : Install some modules using apt
apt install subversion libssl-dev autoconf make g++
# install nmap using subversion (svn)
svn co https://svn.nmap.org/nmap
cd into nmap folder
./configure -h
# then user configure command
./configure
it will show the message of NMAP
compile nmap
make
**Faced Errors **
sudo apt install build-essential
sudo apt install libssl-dev libffi-dev libncurses5-dev zlib1g zlib1g-dev libreadline-dev libbz2-dev libsqlite3-dev make gcc
cd /to/extracted/folder
./configure
make
sudo make install
this will not work , the solution was on this url (opens in a new tab)
sudo pip install setuptools==62.0.0
# then configure back again
./configure
make