Nmap/Parser/XML version 0.66 ============================ nmap xml 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 passing an xml filename that is the output of the of using the '-oX file.xml' 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 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.0+ 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.64 to 0.66 - added short-cut function hostname() to return first hostname - added preliminary callback functionality (for registering events) - tcp_ports and udp_ports do not return hashref of all ports, only if passed a port number as an argument.The argument must be a port number. They default to returning an array of port numbers. - added short-cuts tcp_ports_count and udp_ports_count functions - added tcp_service_proto and udp_service_proto - added tcp_service_rpcnum and udp_service_rpcnum - POD fixes. - speed improvements FOR OTHER CHANGE INFORMATION SEE THE "CHANGES" FILE COPYRIGHT AND LICENCE Copyright (C) 2003 Anthony G Persaud L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.