Skip to content

Python port scanner and host discovery tool, using only the python standard library

License

Notifications You must be signed in to change notification settings

ickerwx/portscanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

portscanner

Python port scanner and host discovery tool, using only the python standard library

import portscanner
scanner = portscanner.Scanner()
scanner.discoverHosts("192.168.1.")
scanner.scanHosts()

for h in scanner.hosts:
    print h, h.ports

This is, for now, a dirty prototype, because I needed a python-based portscanner and host discovery tool. I will implement proper IP handling next, but because of reasons I am for now limited to what is included in jython.

About

Python port scanner and host discovery tool, using only the python standard library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages