Nmap/Parser/XML version 0.72 ============================ nmap output parser in perl This module is intended to sift through the nmap scan outputs in xml form, either by passing a filehandle that is being piped from a current nmap scan or using an xml filename that is formatted as the output of nmap when using the '-oX file.xml' command line option. It uses the XML::Twig library, which is memory efficient and fast. In the authors opinion, this module is very easy to use to extract information from an nmap xml scan output about the scan itself and the hosts that were scanned. I am trying to balance efficiency with ease of use. If you think something can be done differently send your feedback. INSTALLATION Latest version: http://sourceforge.net/projects/npx http://search.cpan.org/~apersaud/Nmap-Parser-XML/ Website: http://npx.sourceforge.net/ Download the file and unpack. This is usually done by: tar xvf Nmap-Parser-XML-x.xx.tar.gz Where x.xx is the version number. Next change into the newly created directory. To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES This module requires these other modules and libraries: XML::Twig 3.09+ In addition, you will need nmap 3.00+. You don't exactly need it, but this version of nmap supports the xml output that this module can parse. So, you do not really need the executable, but the xml output that you will be parsing (or able to parse), must be from this version onward. CHANGES Changes from 0.71 to 0.72 - removed IGNORE_ADDPORTS constant - added contribution from Sebastian: nmap2csv. - edited the links to the sourceforge project site. - added parsescan() function to peroform quick nmap scans and parsing. - added more documentation - fixed some example scripts - added more tests for the new functionality FOR OTHER CHANGE INFORMATION SEE THE "CHANGES" FILE COPYRIGHT AND LICENCE Copyright (C) 2004 Anthony G Persaud http://www.opensource.org/licenses/gpl-license.php This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.