Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Wordpress Fingerprinting"
From NetSec
(Added version 3.3.1) |
GertieUbpgdd (Talk | contribs) (Fixing category redirect) |
||
(5 intermediate revisions by 2 users not shown) | |||
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.}} | ||
+ | {{code|text= | ||
<syntaxhighlight lang="perl"> | <syntaxhighlight lang="perl"> | ||
#!/usr/bin/perl | #!/usr/bin/perl | ||
Line 52: | Line 54: | ||
print "Version:\t$ver_hash{$final}\n\n"; | print "Version:\t$ver_hash{$final}\n\n"; | ||
} | } | ||
− | </syntaxhighlight> | + | </syntaxhighlight>}} |
+ | {{InHouse}} | ||
− | + | [[Category:Information gathering]] | |
− | + | ||
− | + | ||
− | + |
Latest revision as of 18:04, 17 June 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 |
|