From 36dd8c8eb00c36d4f0be3092c54081ece83984d2 Mon Sep 17 00:00:00 2001 From: Anthony Persaud Date: Fri, 5 Apr 2013 16:24:48 -0700 Subject: [PATCH] Updated version and contact information. --- .gitignore | 3 ++- Changes | 6 +++--- LICENSE | 2 +- Parser.pm | 15 +++++---------- README.md | 4 +--- tools/nmap2db.pl | 6 +++--- tools/nmap2sqlite.pl | 8 ++++---- tools/pdev.pl | 8 +++----- tools/scan.pl | 8 ++++---- 9 files changed, 26 insertions(+), 34 deletions(-) diff --git a/.gitignore b/.gitignore index 0331a07..ac25409 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ MYMETA.* Makefile *.tar.gz pm_to_* -blib \ No newline at end of file +blib +/Makefile.old \ No newline at end of file diff --git a/Changes b/Changes index 02333ba..06d8906 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,11 @@ Revision history for Perl extension Nmap::Parser. Bleeding Edge version: http://apersaud.github.com/Nmap-Parser/ - http://search.cpan.org/~apersaud/Nmap-Parser/ For a full list of changes and contributors see: https://github.com/apersaud/Nmap-Parser/commits/master +Changes for 1.31 + - Eliminate global variables %D - thanks to bonsaiviking Changes for 1.30 - Merged features of pull request #6 (bonsaiviking) https://github.com/apersaud/Nmap-Parser/commit/7ccf752af @@ -49,7 +50,6 @@ Changes for 1.11 - Added ignoring of taskend,taskbegin and taskprogress information. - Added tests for nmap 4.20. - Changed lisence to MIT. - - Points to new website http://anthonypersaud.com/category/nmap-parser/ Changes for 1.06 - Added patch for new OS fingerprint (Thanks Okan Demirmen) @@ -329,7 +329,7 @@ Changes for 0.40 COPYRIGHT AND LICENCE -Copyright (C) 2003-2005 Anthony G Persaud L +Copyright (C) 2003-2013 Anthony Persaud L MIT License diff --git a/LICENSE b/LICENSE index f1aa448..7467a62 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) <2003-2011> +Copyright (c) <2003-2013> MIT License diff --git a/Parser.pm b/Parser.pm index 6498057..1e70b3a 100644 --- a/Parser.pm +++ b/Parser.pm @@ -3,7 +3,7 @@ package Nmap::Parser; use strict; use XML::Twig; -our $VERSION = 1.30; +our $VERSION = 1.31; sub new { @@ -1885,7 +1885,7 @@ If you have questions about how to use the module, or any of its features, you can post messages to the Nmap::Parser module forum on CPAN::Forum. L -=head2 Bug Reports and Enhancements +=head2 Bug Reports, Enhancements, Merge Requests Please submit any bugs or feature requests to: L @@ -1904,16 +1904,11 @@ homepage can be found at: L. =head1 AUTHORS -Anthony G Persaud L . Please see Changes file and CONTRIBUTORS file for a list of other great contributors. - -Additional Contributors: - * Robin Bowes L - * Daniel Miller L - * See Changes file for other contributors. +Origiinal author, Anthony Persaud L. However, special thanks to: Daniel Miller L and Robin Bowes L. +Please see Changes file and CONTRIBUTORS file for a list of other great contributors. =head1 COPYRIGHT - -Copyright (c) <2003-2010> +Copyright (c) <2003-2013> L MIT License diff --git a/README.md b/README.md index c12e745..82cc59f 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,6 @@ Installation ================================================================= * Latest version: [https://github.com/apersaud/Nmap-Parser](https://github.com/apersaud/Nmap-Parser) -* Website: [http://anthonypersaud.com/](http://anthonypersaud.com) - Manual Install ================================================================= @@ -66,7 +64,7 @@ not really need the executable, but the xml output that you will be parsing Copyright and License ================================================================= -Copyright (C) 2003-2011 Anthony G Persaud L +Copyright (C) 2003-2011 Anthony Persaud L MIT License diff --git a/tools/nmap2db.pl b/tools/nmap2db.pl index 2f1e8ab..452ce18 100644 --- a/tools/nmap2db.pl +++ b/tools/nmap2db.pl @@ -386,11 +386,11 @@ =head1 SEE ALSO =head1 AUTHOR -Anthony G Persaud L - -MySQL support added by: +Anthony Persaud L +Additional features and improvements by: Robin Bowes L +Daniel Miller L =head1 COPYRIGHT diff --git a/tools/nmap2sqlite.pl b/tools/nmap2sqlite.pl index 20067a6..6e47bca 100644 --- a/tools/nmap2sqlite.pl +++ b/tools/nmap2sqlite.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -#Anthony G. Persaud +#Anthony Persaud #nmap2sqlite.pl #Description: # It takes in a nmap xml file and stores it into a SQLite database using DBI for @@ -51,7 +51,7 @@ pod2usage( -exitstatus => 0, -verbose => 2 ); } -print "\nnmap2sqlite.pl - ( http://anthonypersaud.com )\n", +print "\nnmap2sqlite.pl - ( http://modernistik.com )\n", ( '-' x 50 ), "\n\n"; if ( $G{scan} && $G{nmap} eq '' ) { @@ -314,11 +314,11 @@ =head1 SEE ALSO =head1 AUTHOR -Anthony G Persaud L +Anthony Persaud L =head1 COPYRIGHT -Copyright (c) <2003-2009> +Copyright (c) <2003-2013> MIT License diff --git a/tools/pdev.pl b/tools/pdev.pl index e77e840..8f2b205 100755 --- a/tools/pdev.pl +++ b/tools/pdev.pl @@ -2,9 +2,7 @@ =pod -Anthony G Persaud L - -Copyright (c) <2007> +Copyright (c) <2013> L MIT License @@ -401,10 +399,10 @@ sub _help { pdev> -Anthony G Persaud L +Anthony Persaud L -Copyright (c) <2003-2009> +Copyright (c) <2003-2013> MIT License diff --git a/tools/scan.pl b/tools/scan.pl index 2d9df52..fb82797 100644 --- a/tools/scan.pl +++ b/tools/scan.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -#Anthony G. Persaud +#Anthony Persaud use strict; use Nmap::Parser; @@ -12,7 +12,7 @@ my $np = new Nmap::Parser; -print "\nscan.pl - ( http://anthonypersaud.com )\n", ( '-' x 80 ), "\n\n"; +print "\nscan.pl - ( http://modernistik.com )\n", ( '-' x 80 ), "\n\n"; GetOptions( 'help|h|?' => \$G{helpme}, @@ -291,11 +291,11 @@ =head1 SEE ALSO =head1 AUTHOR -Anthony G Persaud L +Anthony Persaud L =head1 COPYRIGHT -Copyright (c) <2003-2009> +Copyright (c) <2003-2013> MIT License