Skip to content

Commit 879e98d

Browse files
committed
fix: update version and correct variable name typo
1 parent e546893 commit 879e98d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nmap3/nmap3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
import 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

3838
OS_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()

0 commit comments

Comments
 (0)