NAME
WWW::Wappalyzer
DESCRIPTION
Perl port of Wappalyzer (http://wappalyzer.com). Uncovers the technologies used on websites: detects content management systems, web shops, web servers, JavaScript frameworks, analytics tools and many more.
Lacks 'version' and 'confidence' support of original Wappalyzer in favour of speed.
Clues: https://github.com/ElbertF/Wappalyzer/blob/master/share/apps.json
More info: https://github.com/ElbertF/Wappalyzer/blob/master/README.md
VERSION
Version 0.01
SYNOPSIS
use WWW::Wappalyzer;
use LWP::UserAgent;
my $response = LWP::UserAgent->new->get( 'http://www.drupal.org' );
my %detected = WWW::Wappalyzer::detect(
html => $response->decoded_content,
headers => $response->headers,
);
# %detected = (
# 'web-servers' => [ 'Apache' ],
# 'cms' => [ 'Drupal' ],
# 'cache-tools' => [ 'Varnish' ],
# 'analytics' => [ 'Google Analytics' ],
# 'operating-systems' => [ 'CentOS' ]
# );
EXPORT
None by default.
SUBROUTINES/METHODS
%detected = detect( %params )
Tries to detect CMS, framework, etc for given html code, http headers, url.
Available parameters: html - html code of web page headers - hash ref to http headers list url - url of web page cats - array ref to a list of trying categories, defaults to all categories; less cats => less cpu usage
Returns the hash of detected applications by categorie: ( cms => [ 'Joomla' ], javascript-frameworks => [ 'jQuery', 'jQuery UI' ], )
my @cats = get_categories( )
Returns the array of all application categories.
AUTHOR
Alexander Nalobin, <alexander at nalobin.ru>
BUGS
Please report any bugs or feature requests to bug-www-wappalyzer at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Wappalyzer. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc WWW::Wappalyzer
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2013 Alexander Nalobin.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.