A Python network scan library developed in Rust with PyO3.
NETSCAN-RP is intended to be an interface between qscan Rust libray and Python. Bringing compiled language performance and optimization to Python.
pip install netscan-rpSCAN
import netscan_rp
ip_list = '172.16.0.10,172.16.0.20'
port_list = '80,443,21,53'
scan_result = netscan_rp.scan(ip_list, port_list)
print(scan_result)- Command Line Support
MIT