[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
mrclay
/
minify
/
builder
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 _index.js
9,444 B
SET
[ EDIT ]
|
[ DEL ]
📄 bm.js
1,473 B
SET
[ EDIT ]
|
[ DEL ]
📄 bm2.js
574 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
9,198 B
SET
[ EDIT ]
|
[ DEL ]
📄 ocCheck.php
812 B
SET
[ EDIT ]
|
[ DEL ]
📄 rewriteTest.js
1 B
SET
[ EDIT ]
|
[ DEL ]
📄 test.php
1,467 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ocCheck.php
<?php /** * AJAX checks for zlib.output_compression * * @package Minify */ $app = (require __DIR__ . '/../bootstrap.php'); /* @var \Minify\App $app */ $_oc = ini_get('zlib.output_compression'); // allow access only if builder is enabled if (!$app->config->enableBuilder) { header('Location: /'); exit; } if ($app->env->get('hello')) { // echo 'World!' // try to prevent double encoding (may not have an effect) ini_set('zlib.output_compression', '0'); HTTP_Encoder::$encodeToIe6 = true; // just in case $he = new HTTP_Encoder(array( 'content' => str_repeat('0123456789', 500), 'method' => 'deflate', )); $he->encode(); $he->sendAll(); } else { // echo status "0" or "1" header('Content-Type: text/plain'); echo (int)$_oc; }