Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 578 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 578 Bytes

Port Scanner

A basic port scanner developed in python as part of my computer network learning.


There are three versions, scanner.py, scannerV1.py and scannerV2.py.

  • scanner.py: Basic version
  • scannerV1.py: Uses multiprocessing.dummy and accepts no of thread pools as argument
  • scannerv2.py: Usethreading module; 4 threads

Usage

scanner.py

python3 scanner.py <ip address>

scannerV1.py

python3 scanner.py <ip address> <no of thread pools>

scannerV2.py

python3 scanner.py <ip address>

Requirements

  • Python 3