Skip to main content

Simple port scanning module

Project description

Star Scan

Module form of the 'Port Scan' utility

You can find the original utilities (Python file and CLI version) from here.

To utilize this package, do: pip3 install star_scan

To scan a single client:

import star_scan.scanner as scanner

ip_address = '127.0.0.1'
start_port = 1
end_port = 1000
scanner.scan_host(ip_address, start_port, end_port)

or directly passing values

import star_scan.scanner as scanner

scanner.scan_host('127.0.0.1', 1, 1000)

will produce similair results as:

Image of Results

To scan a network:

import star_scan.scanner as scanner 

#remove the last octet for scan_range()
ip_address = '192.168.1'
start_port = 1
end_port = 1000

#scans ports on all addresses from 192.168.1.1 to 192.168.1.255
scanner.scan_range(ip_address, start_port, end_port)

You can also directly pass values to scan_host()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

star_scan-1.2.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page