Re: Crash Report
Daniel Miller <[email protected]>
| Newsgroups | gmane.comp.security.nmap.devel |
|---|---|
| Message-ID | <CABmvJnOSYEwj-JL+uD3HF9qutcxAfYfBwkHLJvJGMNQPugDiYg@mail.gmail.com> |
Zafer,
Thanks for this bug report. We have received similar reports in the past
[1][2], but no one has bothered following up with diagnostic information so
we have been unable to find a cause. Please let us know the output of the
following Python code (also attached as a Python script):
import xml.sax
for p in xml.sax.default_parser_list:
print p
r = __import__(p, {}, {}, ["create_parser"])
print repr(r.create_parser())
Thanks,
Dan
[1] http://seclists.org/nmap-dev/2014/q3/357
[2] http://seclists.org/nmap-dev/2016/q3/281
On Thu, May 25, 2017 at 11:08 AM, Zafer AKTAN <[email protected]>
wrote:
> Hi there,
>
> I just installed and tried using zenmap on Ubuntu 16.04 (64bit) earlier
> today. Started the intense scan, and observed open ports, then the NSE
> info, the Read data files from: info and Nmap done: message. But the
> Crash Report window popped up with the following information. Reporting
> as asked...
>
>
> Version: 7.01
> Traceback (most recent call last):
> File "/usr/lib/python2.7/dist-packages/zenmapGUI/ScanInterface.py",
> line 601, in verify_execution
> self.load_from_command(scan)
> File "/usr/lib/python2.7/dist-packages/zenmapGUI/ScanInterface.py",
> line 615, in load_from_command
> parsed = NmapParser()
> File "/usr/lib/python2.7/dist-packages/zenmapCore/NmapParser.py", line
> 1378, in nmap_parser_sax
> parser = make_parser()
> File "/usr/lib/python2.7/xml/sax/__init__.py", line 93, in make_parser
> raise SAXReaderNotAvailable("No parsers found", None)
> SAXReaderNotAvailable: No parsers found
>
> _______________________________________________
> Sent through the dev mailing list
> https://nmap.org/mailman/listinfo/dev
> Archived at http://seclists.org/nmap-dev/
>
_______________________________________________
Sent through the dev mailing list
https://nmap.org/mailman/listinfo/dev
Archived at http://seclists.org/nmap-dev/
parserlist.py
(text/x-python, 171 B)
#!/usr/bin/env python
import xml.sax
for p in xml.sax.default_parser_list:
print p
r = __import__(p, {}, {}, ["create_parser"])
print repr(r.create_parser())