Local file inclusion to RCE
Here is the code:
<?php
$file=trim($_GET[‘img_name’]);
//echo $file;
if (file_exists($file)) {
header(‘Content-Description: File Transfer’);
header(‘Content-Type: application/octet-stream’);
header(‘Content-D… Continue reading Local file inclusion to RCE