mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
117 B
PHP
7 lines
117 B
PHP
<?php
|
|||
function read_and_leak($path) {
|
|||
$fh = fopen($path, 'r');
|
|||
$data = fread($fh, 1024);
|
|||
return $data;
|
|||
}
|