Seditio Source code viewer
Root | Root
./Seditio-Developer/Seditio-177/resize/resize.php
<?php

require_once('../system/functions.image.php');

$filename = $_GET['file'];
$token = $_GET['token'];
   
$resized_filename =  resize($filename);

if(
is_readable($resized_filename))
{
   
header('Content-type: image');
    print
file_get_contents($resized_filename);
}

Presented with Sourceer