Skip to main content

Easy-to-use Python wrapper for various port scanners.

Project description

pyScannerWrapper -- WORK IN PROGRESS --

Easy-to-use Python wrapper for various port scanners. (WIP)

Supported scanners

  • Masscan

Planned scanners planned to be added

  • Nmap
  • RustScan

Usage

masscan

from pyScannerWrapper.scanners import Masscan
from pyScannerWrapper.structs import *

# Initialize masscan object
mas = Masscan()

# Change some properties
mas.input_ip_list = ["192.168.0.0/16", "10.0.0.0/8"]
mas.input_port_list = ["22", "80", "443", "8080"]
mas.args = "--rate 10000"
mas.sudo = True # Required on Unix systems

# Normal example
mas.scan()
print(mas.output)

# Yielding example
results = mas.scan_yielder()
for result in results:
    print(result)

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

pyScannerWrapper-0.2.1.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

pyScannerWrapper-0.2.1-py3-none-any.whl (6.6 kB view hashes)

Uploaded Python 3

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