Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Wordpress Fingerprinting"
From NetSec
(Redirected page to Kolkata) |
|||
Line 1: | Line 1: | ||
+ | #REDIRECT [[Kolkata]] | ||
+ | |||
{{info|Wordpress comes bundled with the tinymce.js plug-in. Because this code changes '''every''' wordpress release, we are able to use its [[Cryptography|md5sum]] to determine a wordpress version against a target site. A [[perl]] script is below.}} | {{info|Wordpress comes bundled with the tinymce.js plug-in. Because this code changes '''every''' wordpress release, we are able to use its [[Cryptography|md5sum]] to determine a wordpress version against a target site. A [[perl]] script is below.}} | ||
{{code|text= | {{code|text= |
Revision as of 21:15, 19 May 2012
Redirect to:
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.
|