Skip to content

Instantly share code, notes, and snippets.

@avraampiperidis
Created June 18, 2013 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avraampiperidis/5808918 to your computer and use it in GitHub Desktop.
Save avraampiperidis/5808918 to your computer and use it in GitHub Desktop.
an alternate shell thru php. it can be combined with html
<?php
//by zeron
menu:
$out = fwrite(STDOUT,"zeron@box~/$:");
$out = trim(fgets(STDIN));
echo passthru($out);
if ($out == 'exit') {
exit;
}
goto menu
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment