Summarized by [geek challenge 2019]RCE ME disable_functions bypass
Summarized by [geek challenge 2019]RCE ME disable_functions bypass
source code
<?php
error_reporting(0);
if(isset($_GET['code'])){
$code=$_GET['code'];
if(strlen($code)>40){
die("This is too Long.");
}
if(preg_match("/[A-Za-z0-9]+/",$code)){
die("NO.");
}
@eval($code);
}else ...
Added by Ofro04 on Tue, 01 Feb 2022 11:38:04 +0200