8 lines
176 B
PHP
Executable File
8 lines
176 B
PHP
Executable File
<?php
|
|
include_once 'header.php';
|
|
$old_path = getcwd();
|
|
chdir('/var/www/');
|
|
$output = shell_exec('./getcron');
|
|
chdir($old_path);
|
|
|
|
echo nl2br(file_get_contents( "streams.txt" )); |