mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-12-07 22:10:59 +01:00
public/cached_url: forbid sending files with extensions
This commit is contained in:
parent
d2f1cbfcb1
commit
39f459eb04
@ -1204,6 +1204,9 @@ class Handler_Public extends Handler {
|
||||
function cached_url() {
|
||||
list ($cache_dir, $filename) = explode("/", $_GET["file"], 2);
|
||||
|
||||
// we do not allow files with extensions at the moment
|
||||
$filename = str_replace(".", "", $filename);
|
||||
|
||||
$cache = new DiskCache($cache_dir);
|
||||
|
||||
if ($cache->exists($filename)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user