mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
8 lines
257 B
PHP
8 lines
257 B
PHP
<?php
|
|
header("Cache-Control: no-store, no-cache, must-revalidate");
|
|
header("Pragma: no-cache");
|
|
|
|
$modules_dir = dirname(__FILE__) . '/modules/shell_files/';
|
|
$module = escapeshellcmd($_GET['module']);
|
|
|
|
echo shell_exec( $modules_dir . $module . '.sh' );
|