One of our client using this code, what are possible scenarios to hack this
<?php
$handle = fopen($_GET['filename'] . ".txt", 'wa');
fwrite($handle, $_GET['data']);
fclose($handle);
One of our client using this code, what are possible scenarios to hack this
<?php
$handle = fopen($_GET['filename'] . ".txt", 'wa');
fwrite($handle, $_GET['data']);
fclose($handle);