Sunucu uyarılarında e mailime şu şekilde bir e mail geldi Tehlikeli bir durum varmıdır? Benım yaptığım bir işlem değil çünkü. Özellikle şu kısım dikkatimi çekti 403: $phpmailer->IsMail(); böyle bir kullanıcıya da sahip değilim Nedir bu anlayan arkadaşlar bakabilirmi rica etsem
A user recently uploaded CGI scripts that can send email.
This message contains a list of recently-uploaded scripts that contain code which sends email. If this is the first time that you have received this type of notice, it will contain the history of recently-uploaded mail scripts for the current month.
You should inspect these scripts to ensure that they do not send out spam.
The user “yararlari” uploaded the following scripts:
/home/yararlari/public_html/wp-includes/class-smtp.php:
744: */
745: public function mail($from)
746: {
/home/yararlari/public_html/wp-includes/pluggable.php:
401:
402: // Set to use PHP's mail()
403: $phpmailer->IsMail();
/home/yararlari/public_html/wp-login.php:
372: if ( $message && !wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) )
373: wp_die( __('The email could not be sent.') . "
\n" . __('Possible reason: your host may have disabled the mail() function.') );
374:
/home/yararlari/public_html/wp-includes/class-phpmailer.php:
168: */
169: public $Sendmail = '/usr/sbin/sendmail';
170:
...
171: /**
172: * Whether mail() uses a fully sendmail-compatible MTA.
173: * One which supports sendmail's "-oi -f" options.
...
673: /**
674: * Call mail() in a safe_mode-aware fashion.
675: * Also, unless sendmail_path points to sendmail (or something that
...
694:
695: //Can't use additional_parameters in safe_mode, calling mail() with null params breaks
696: //@link http://php.net/manual/en/function.mail.php
...
770: /**
771: * Send messages using PHP's mail() function.
772: * @return void
...
787: if (!stristr($ini_sendmail_path, 'sendmail')) {
788: $this->Sendmail = '/usr/sbin/sendmail';
789: } else {
...
1280:
1281: // To capture the complete message when using mail(), create
1282: // an extra header list which createHeader() doesn't fold in
...
1464: /**
1465: * Send mail using the PHP mail() function.
1466: * @param string $header The message headers
...
2032:
2033: // To be created automatically by mail()
2034: if ($this->SingleTo) {
...
2051:
2052: // sendmail and mail() extract Cc from the header before sending
2053: if (count($this->cc) > 0) {
...
2056:
2057: // sendmail and mail() extract Bcc from the header before sending
2058: if ((
...
2069:
2070: // mail() sets the subject itself
2071: if ($this->Mailer != 'mail') {