Enumeration =========== Here is documentation on enumeration. PortScanner ^^^^^^^^^^^ You can initialize the class as so: .. code-block:: python dos = DrSploitberg.enumeration.PortScanner() This class can take in these arguments: =========== =========================== ======= ========= Arguments Description Type Default =========== =========================== ======= ========= ipAddress This is the IP Address of String 127.0.0.1 the target host. timeout This is the length in Float 5.0 seconds how long it takes to timeout. =========== =========================== ======= ========= scanSingle ********** This function only takes in an argument called "port". .. code-block:: python portScanner.scanSingle(port=80) scanCommon ********** This function does not take in any arguments. Simply just call this function to scan common ports. .. code-block:: python portScanner.scanCommon() scanRange ********* This function only takes in an argument called "portRange". =========== =========================== ======= ========= Arguments Description Type Default =========== =========================== ======= ========= portRange This is the range of ports Range range(65535) to scan =========== =========================== ======= =========