File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1919#
2020
2121__author__ = 'Wangolo Joel (inquiry@nmapper.com)'
22- __version__ = '1.6.0 '
23- __last_modification__ = 'Sep/15/2024 '
22+ __version__ = '1.9.3 '
23+ __last_modification__ = 'Jun/06/2025 '
2424
2525class NmapNotInstalledError (Exception ):
2626 """Exception raised when nmap is not installed"""
Original file line number Diff line number Diff line change 3232import re
3333
3434__author__ = 'Wangolo Joel (inquiry@nmapper.com)'
35- __version__ = '1.6.0 '
36- __last_modification__ = 'Sep/15/2024 '
35+ __version__ = '1.9.3 '
36+ __last_modification__ = 'Jun/06/2025 '
3737
3838OS_TYPE = sys .platform
3939
@@ -56,7 +56,7 @@ def __init__(self, path:str=''):
5656 self .target = ""
5757 self .top_ports = dict ()
5858 self .parser = NmapCommandParser (None )
59- self .raw_ouput = None
59+ self .raw_output = None
6060 self .as_root = False
6161
6262 def require_root (self , required = True ):
@@ -279,7 +279,7 @@ def get_xml_et(self, command_output):
279279 @ return xml ET
280280 """
281281 try :
282- self .raw_ouput = command_output
282+ self .raw_output = command_output
283283 return ET .fromstring (command_output )
284284 except ParseError :
285285 raise NmapXMLParserError ()
Original file line number Diff line number Diff line change 2828from nmap3 .exceptions import NmapNotInstalledError
2929
3030__author__ = 'Wangolo Joel (inquiry@nmapper.com)'
31- __version__ = '1.6.0 '
32- __last_modification__ = 'Sep/15/2024 '
31+ __version__ = '1.9.3 '
32+ __last_modification__ = 'Jun/06/2025 '
3333
3434def get_nmap_path (path :str = '' ) -> str :
3535 """
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "python3-nmap" ,
8- version = "1.9.1 " ,
8+ version = "1.9.3 " ,
99 author = "nmmapper" ,
1010 author_email = "info@nmmapper.com" ,
1111 description = "Python3-nmap converts Nmap commands into python3 methods making it very easy to use nmap in any of your python pentesting projects" ,
You can’t perform that action at this time.
0 commit comments