{% else-1 %}

Нет фото
• 31 дек 2013, 00:34

•••
<?php

if(!isset($_GET[\'jar\']))exit;

$zip = new ZipArchive;

if ($zip->open(base64_decode($_GET[\'jar\'])) === TRUE) {

if($manifest = $zip->getFromName(\'META-INF/MANIFEST.MF\')){

if (strpos($manifest, \'MIDlet-Icon: \') !== FALSE){

$jad = explode(\'MIDlet-Icon: \',$manifest);

$icon = str_replace(\"\\n\",\' \', $jad);

$icon = str_replace(\"\\r\&qu ...
Комментариев нет!