Created
January 30, 2010 17:50
-
-
Save robertpfeiffer/290648 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Embedded webshell</title> | |
<script type="text/javascript" src="http://prototypejs.org/assets/2009/8/31/prototype.js"></script> | |
<script type="text/javascript" src="http://localhost:8081/rest/backend/eval.js"></script> | |
</head> | |
<body> | |
<h1>Embedded webshell</h1> | |
<div id="output" > </div> | |
<textarea id="code" cols="50" rows="10"></textarea> | |
<br> | |
<a href="javascript:backend_eval();">eval</a> | |
<script type="text/javascript"> | |
Event.observe(window, 'load', function() { | |
init_webshell("http://localhost:8081/rest/backend/", "code", "output"); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment