Page MenuHomePhabricator
Paste P10533

beacon_event.php
ActivePublic

Authored by matmarex on Feb 27 2020, 1:36 AM.
Tags
None
Referenced Files
F31646037: raw.txt
Feb 27 2020, 1:36 AM
Subscribers
None
<?php
$data = time() . "\n" . urldecode( $_SERVER['QUERY_STRING'] ) . "\n";
$path = 'beacon_event_log.txt';
file_put_contents( $path, $data, FILE_APPEND );
echo $data;