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 19
19
#
20
20
21
21
__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 '
24
24
25
25
class NmapNotInstalledError (Exception ):
26
26
"""Exception raised when nmap is not installed"""
Original file line number Diff line number Diff line change 32
32
import re
33
33
34
34
__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 '
37
37
38
38
OS_TYPE = sys .platform
39
39
@@ -56,7 +56,7 @@ def __init__(self, path:str=''):
56
56
self .target = ""
57
57
self .top_ports = dict ()
58
58
self .parser = NmapCommandParser (None )
59
- self .raw_ouput = None
59
+ self .raw_output = None
60
60
self .as_root = False
61
61
62
62
def require_root (self , required = True ):
@@ -279,7 +279,7 @@ def get_xml_et(self, command_output):
279
279
@ return xml ET
280
280
"""
281
281
try :
282
- self .raw_ouput = command_output
282
+ self .raw_output = command_output
283
283
return ET .fromstring (command_output )
284
284
except ParseError :
285
285
raise NmapXMLParserError ()
Original file line number Diff line number Diff line change 28
28
from nmap3 .exceptions import NmapNotInstalledError
29
29
30
30
__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 '
33
33
34
34
def get_nmap_path (path :str = '' ) -> str :
35
35
"""
Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = "python3-nmap" ,
8
- version = "1.9.1 " ,
8
+ version = "1.9.3 " ,
9
9
author = "nmmapper" ,
10
10
author_email = "info@nmmapper.com" ,
11
11
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