Skip to content

A Simple wrapper of Rustscan in Python to scan the ports and service discovery asynchronously.

Notifications You must be signed in to change notification settings

signorrayan/RustScanPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation:

Usage:

  • For a single IP:
python3 rustpy.py <IP> -b 5000 -t 2000 -c 3
  • For a domain:
python3 rustpy.py example.com
  • For a CIDR range (use a small range for testing):
python3 rustpy.py 192.168.1.0/29 -b 20000 -u 45000 -t 4000 -c 3
  • For mixed targets:
python3 rustpy.py 192.168.10.146 example.com

As a library:

import rustpy

rust_scanner = rustpy.RustScanner(
    batch_size=batch_size, # By default it is 30000
    ulimit=ulimit, # By default it is 45000
    timeout=timeout, # By default it is 3500
    concurrent_limit=concurrent, # By default it is 5
    tries=tries, # By default it is 1
    service_detection=False, # setting it to True will enable deeper service detection, but consuming more time.
)

await rustpy.run(rust_scanner, targets, output))

About

A Simple wrapper of Rustscan in Python to scan the ports and service discovery asynchronously.

Topics

Resources

Stars

Watchers

Forks

Languages