Home > System Tutorial > LINUX > body text

PortSpider – Advanced network port scanner on Kali Linux

王林
Release: 2024-02-10 09:09:31
forward
898 people have browsed it

PortSpider is a tool for scanning large ranges of networks for open ports and vulnerable services. This tool is not designed to scan one target, but an entire IP range. (e.g. 192.168.0.0/24) Most of the time companies/organizations have public information about the public IP ranges they own, so portSpider will help you scan all their machines at once for vulnerable devices/services.

Module:

  • http –Scan open HTTP ports and get headers.
  • mysql –Scan for open MySQL servers and attempt to log in using default credentials.
  • mongodb –Scan open MongoDB instances and check if they are password protected.
  • ssh –Scan for open SSH ports.
  • printer –Scan for open printer ports and websites.
  • gameserver –Scan for open game server ports.
  • manual –Scan custom ports.

Order:

  • modules –List all modules.
  • use –Use modules.
  • options –Display module options.
  • set –Set an option.
  • run –Run the selected module.
  • back –Return to the menu.
  • exit –Close portSpider.

Let’s start with the Advance Network Ports scanner

**Step 1:-**You need to download the PortSpider tool by executing this command in the terminal window of Kali Linux

┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com]
└─$ git clone https://github.com/xdavidhu/portSpider.git
Copy after login
PortSpider – Kali Linux 上高级网络端口扫描仪

**Step 2:-**First, we read the README.md file to learn how to install the port scanner.

┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com]
└─$ ls
┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com]
└─$ cd portSpider
Copy after login
PortSpider – Kali Linux 上高级网络端口扫描仪
┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com/portSpider]
└─$ cat README.md
Copy after login
PortSpider – Kali Linux 上高级网络端口扫描仪

**Step 3:-**Now install all the requirements.

┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com/portSpider]
└─$ python3 -m pip install -r requirements.txt
Copy after login
PortSpider – Kali Linux 上高级网络端口扫描仪

**Step 4:-**Start, run it now

┌──(linuxmi㉿linuxmi)-[~/www.linuxmi.com/portSpider]
└─$ ./portSpider.py
Copy after login
PortSpider – Kali Linux 上高级网络端口扫描仪

**Step 5: -**Show all module types:

portSpider $> modules
Copy after login
PortSpider – Kali Linux 上高级网络端口扫描仪

**Step 6:-**Select module, here I choose http option, you can choose any one from the list.

PortSpider – Kali Linux 上高级网络端口扫描仪

The above is the detailed content of PortSpider – Advanced network port scanner on Kali Linux. For more information, please follow other related articles on the PHP Chinese website!

source:lxlinux.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template