Questions about this topic? Sign up to ask in the talk tab.
Wordpress Fingerprinting
From NetSec
Revision as of 04:05, 12 March 2012 by LashawnSeccombe (Talk | contribs)
Wordpress comes bundled with the tinymce.js plug-in. Because this code changes every wordpress release, we are able to use its md5sum to determine a wordpress version against a target site. A perl script is below. |
<syntaxhighlight lang="perl">
use strict; use LWP::UserAgent; use HTTP::Request; use HTTP::Response; use Digest::MD5 qw(md5_hex); my $domain = shift |
|
Wordpress Fingerprinting Visit the Web applications Portal for complete coverage.
|