mirror of
https://github.com/nmap/nmap.git
synced 2025-12-14 19:59:02 +00:00
Fix a crash in Zenmap Compare Results.
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
|
o Fix a crash in Zenmap when using Compare Results:
|
||||||
|
AttributeError: 'NoneType' object has no attribute 'get_nmap_output'
|
||||||
|
[Daniel Miller]
|
||||||
|
|
||||||
o [NSE] Fix http.get_url function when used with https scheme. Previously,
|
o [NSE] Fix http.get_url function when used with https scheme. Previously,
|
||||||
plaintext http to port 443 was attempted first. [jah]
|
plaintext http to port 443 was attempted first. [jah]
|
||||||
|
|
||||||
|
|||||||
@@ -302,7 +302,10 @@ class ScanChooser(HIGVBox):
|
|||||||
def get_nmap_output(self):
|
def get_nmap_output(self):
|
||||||
"""Return the currently selected scan's output as a string, or None if
|
"""Return the currently selected scan's output as a string, or None if
|
||||||
no valid scan is selected."""
|
no valid scan is selected."""
|
||||||
return self.parsed_scan.get_nmap_output()
|
if self.parsed_scan is not None:
|
||||||
|
return self.parsed_scan.get_nmap_output()
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
nmap_output = property(get_nmap_output)
|
nmap_output = property(get_nmap_output)
|
||||||
parsed_scan = property(get_parsed_scan)
|
parsed_scan = property(get_parsed_scan)
|
||||||
|
|||||||
Reference in New Issue
Block a user