Skip to content

starhound/star_scan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()

About

Module form of the 'Port Scan' utility

Topics

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages