NAME
WWW::Wappalyzer - Perl port of Wappalyzer (http://wappalyzer.com)
DESCRIPTION
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/AliasIO/Wappalyzer/blob/master/src/apps.json
More info on Wappalyzer: https://github.com/AliasIO/Wappalyzer
VERSION
Version 0.16
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
detect
my %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' ],
)
get_categories
my @cats = get_categories()
Returns the array of all application categories.
add_clues_file
add_clues_file( $filepath )
Puts additional clues file to a list of processed clues files. See apps.json as format sample.
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:
GitHub
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2013-2015 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.