mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-04-04 22:32:25 +02:00
Do not allow stream wrappers other than http and https in file paths
This commit is contained in:
parent
64fc194398
commit
9f0350dca7
@ -6840,6 +6840,15 @@ class TCPDF {
|
||||
// image from string
|
||||
$imgdata = substr($file, 1);
|
||||
} else { // image file
|
||||
$wrappers = stream_get_wrappers();
|
||||
foreach ($wrappers as $wrapper) {
|
||||
if ($wrapper === 'http' || $wrapper === 'https') {
|
||||
continue;
|
||||
}
|
||||
if (strpos($file, $wrapper.'://') === 0) {
|
||||
$this->Error('Stream wrappers in file paths are not supported');
|
||||
}
|
||||
}
|
||||
if ($file[0] === '*') {
|
||||
// image as external stream
|
||||
$file = substr($file, 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user