Skip to content

Instantly share code, notes, and snippets.

@AVGP
Created March 12, 2011 15:02
Show Gist options
  • Save AVGP/867295 to your computer and use it in GitHub Desktop.
Save AVGP/867295 to your computer and use it in GitHub Desktop.
The echo-App for the JS-Webshell
<?php
class echoApplication extends App
{
function run()
{
parent::run();
$data = $this->params;
$this->outputResults($data,$_GET['environment']);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment