forked from BrightGamePanel/bgpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scriptconsole.php
209 lines (172 loc) · 5.43 KB
/
scriptconsole.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* LICENSE:
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
* @categories Games/Entertainment, Systems Administration
* @package Bright Game Panel
* @author warhawk3407 <warhawk3407@gmail.com> @NOSPAM
* @copyleft 2013
* @license GNU General Public License version 3.0 (GPLv3)
* @version (Release 0) DEVELOPER BETA 8
* @link http://www.bgpanel.net/
*/
$page = 'scriptconsole';
$tab = 4;
$isSummary = TRUE;
###
if (isset($_GET['id']) && is_numeric($_GET['id']))
{
$scriptid = $_GET['id'];
}
else
{
exit('Error:ScriptID error.');
}
###
$return = 'scriptconsole.php?id='.urlencode($scriptid);
require("configuration.php");
require("include.php");
require("./includes/func.ssh2.inc.php");
require_once("./libs/phpseclib/Crypt/AES.php");
require_once("./libs/phpseclib/ANSI.php");
$title = T_('Script Console');
if (query_numrows( "SELECT `name` FROM `".DBPREFIX."script` WHERE `scriptid` = '".$scriptid."'" ) == 0)
{
exit('Error: ScriptID is invalid.');
}
$rows = query_fetch_assoc( "SELECT * FROM `".DBPREFIX."script` WHERE `scriptid` = '".$scriptid."' LIMIT 1" );
if ($rows['status'] != 'Active')
{
exit('Validation Error! The script is disabled!');
}
else
{
$box = query_fetch_assoc( "SELECT `ip`, `login`, `password`, `sshport` FROM `".DBPREFIX."box` WHERE `boxid` = '".$rows['boxid']."' LIMIT 1" );
###
$aes = new Crypt_AES();
$aes->setKeyLength(256);
$aes->setKey(CRYPT_KEY);
###
// Get SSH2 Object OR ERROR String
$ssh = newNetSSH2($box['ip'], $box['sshport'], $box['login'], $aes->decrypt($box['password']));
if (!is_object($ssh))
{
$_SESSION['msg1'] = T_('Connection Error!');
$_SESSION['msg2'] = $ssh;
$_SESSION['msg-type'] = 'error';
header( 'Location: index.php' );
die();
}
$ansi = new File_ANSI();
$screen = $rows['screen'];
if (empty($screen)) {
$screen = preg_replace('#[^a-zA-Z0-9]#', "_", $rows['name']);
}
// We retrieve screen name ($session)
$session = $ssh->exec( "screen -ls | awk '{ print $1 }' | grep '^[0-9]*\.".$screen."$'"."\n" );
$session = trim($session);
if ($rows['type'] == '1')
{
if (!empty($_GET['cmd']) && !empty($session))
{
$cmdRcon = $_GET['cmd'];
// We prepare and we send the command into the screen
$cmd = "screen -S ".$session." -p 0 -X stuff \"".$cmdRcon."\"`echo -ne '\015'`";
$ssh->exec($cmd."\n");
unset($cmd);
// Adding event to the database
$message = 'Script command ('.mysql_real_escape_string($cmdRcon).') sent to : '.mysql_real_escape_string($rows['name']);
query_basic( "INSERT INTO `".DBPREFIX."log` SET `scriptid` = '".$scriptid."', `message` = '".$message."', `name` = '".mysql_real_escape_string($_SESSION['clientusername'])."', `ip` = '".$_SERVER['REMOTE_ADDR']."'" );
unset($cmdRcon);
header( 'Location: scriptconsole.php?id='.urlencode($scriptid) );
die();
}
}
// We retrieve screen contents
if (!empty($session)) {
$ssh->write("screen -R ".$session."\n");
$ssh->setTimeout(1);
@$ansi->appendString($ssh->read());
$screenContents = htmlspecialchars_decode(strip_tags($ansi->getScreen()));
}
else {
$screenContents = "The Script is not running...\n";
}
$ssh->disconnect();
}
include("./bootstrap/header.php");
/**
* Notifications
*/
include("./bootstrap/notifications.php");
?>
<ul class="nav nav-tabs">
<li><a href="scriptsummary.php?id=<?php echo $scriptid; ?>"><?php echo T_('Summary'); ?></a></li>
<li class="active"><a href="scriptconsole.php?id=<?php echo $scriptid; ?>"><?php echo T_('Console'); ?></a></li>
</ul>
<script type="text/javascript">
$(document).ready(function() {
prettyPrint();
});
</script>
<div class="page-header">
<h1><small><?php echo htmlspecialchars($rows['name'], ENT_QUOTES); ?></small></h1>
</div>
<pre class="prettyprint">
<?php
// Each lines are a value of rowsTable
$rowsTable = explode("\n", $screenContents);
// Output
foreach ($rowsTable as $key => $value)
{
echo htmlentities($value, ENT_QUOTES);
}
?>
</pre>
<div style="text-align: center;">
<?php
if ($rows['type'] == '1' && !empty($session))
{
?>
<form class="form-inline" method="get" action="scriptconsole.php">
<input type="hidden" name="id" value="<?php echo $rows['scriptid']; ?>" />
<div class="input-prepend input-append">
<span class="add-on"><?php echo T_('Command'); ?>:</span>
<input type="text" name="cmd" class="input-xlarge" placeholder="<?php echo T_('Your Command'); ?>">
<button type="submit" class="btn">
<?php echo T_('Send'); ?>
</button>
<button class="btn" onclick="window.location.reload();">
<?php echo T_('Refresh'); ?>
</button>
</div>
</form>
<?php
}
else
{
?>
<button class="btn" onclick="window.location.reload();">
<?php echo T_('Refresh'); ?>
</button>
<?php
}
?>
</div>
<?php
include("./bootstrap/footer.php");
?>