HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.34
System: Linux atalantini.com 3.10.0-1127.13.1.el7.x86_64 #1 SMP Tue Jun 23 15:46:38 UTC 2020 x86_64
User: root (0)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //opt/plugins/facebook-auto-publish/admin/fbap-suggest-feature.php
<?php
if( !defined('ABSPATH') ){ exit();}
global $wpdb;
$xyz_fbap_message='';
if(isset($_GET['msg']))
	$xyz_fbap_message = $_GET['msg'];
if($xyz_fbap_message == 1){
	?>
	<div class="system_notice_area_style1" id="system_notice_area">
	Thank you for the suggestion.&nbsp;&nbsp;&nbsp;<span
	id="system_notice_area_dismiss">Dismiss</span>
	</div>
	<?php
	}
else if($xyz_fbap_message == 2){
		?>
		<div class="system_notice_area_style0" id="system_notice_area">
		wp_mail not able to process the request.&nbsp;&nbsp;&nbsp;<span
		id="system_notice_area_dismiss">Dismiss</span>
		</div>
		<?php
	}
else if($xyz_fbap_message == 3){
	?>
	<div class="system_notice_area_style0" id="system_notice_area">
	Please suggest a feature.&nbsp;&nbsp;&nbsp;<span
	id="system_notice_area_dismiss">Dismiss</span>
	</div>
	<?php
}
if (isset($_POST) && isset($_POST['xyz_send_mail']))
{
	if (! isset( $_REQUEST['_wpnonce'] )|| ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'xyz_fbap_suggest_feature_form_nonce' ))
	{
		wp_nonce_ays( 'xyz_fbap_suggest_feature_form_nonce' );
		exit();
	}
	if (isset($_POST['xyz_fbap_suggested_feature']) && $_POST['xyz_fbap_suggested_feature']!='')
	{
		$xyz_fbap_feature_content=esc_textarea($_POST['xyz_fbap_suggested_feature']);
		$xyz_fbap_sender_email = get_option('admin_email');
		$entries0 = $wpdb->get_results( $wpdb->prepare( 'SELECT display_name FROM '.$wpdb->base_prefix.'users WHERE user_email=%s',array($xyz_fbap_sender_email)));
		foreach( $entries0 as $entry ) {
			$xyz_fbap_admin_username=$entry->display_name;
		}
		$xyz_fbap_recv_email='support@xyzscripts.com';
		$xyz_fbap_mail_subject="WP2SOCIAL AUTO PUBLISH - FEATURE SUGGESTION";
		$xyz_fbap_headers = array('From: '.$xyz_fbap_admin_username.' <'. $xyz_fbap_sender_email .'>' ,'Content-Type: text/html; charset=UTF-8');
		$wp_mail_processed=wp_mail( $xyz_fbap_recv_email, $xyz_fbap_mail_subject, $xyz_fbap_feature_content, $xyz_fbap_headers );
		if ($wp_mail_processed==true){
		 header("Location:".admin_url('admin.php?page=facebook-auto-publish-suggest-feature&msg=1'));exit();}
		else {
			header("Location:".admin_url('admin.php?page=facebook-auto-publish-suggest-feature&msg=2'));exit();}
	}
	else{ 
		header("Location:".admin_url('admin.php?page=facebook-auto-publish-suggest-feature&msg=3'));exit();}
}?>
<form method="post" >
<?php wp_nonce_field( 'xyz_fbap_suggest_feature_form_nonce' );?>
<h3>Contribute And Get Rewarded</h3>
<span style="color: #1A87B9;font-size:13px;padding-left: 10px;" >* Suggest a feature for this plugin and stand a chance to get a free copy of premium version of this plugin.</span>
<table  class="widefat xyz_fbap_widefat_table" style="width:98%;padding-top: 10px;">
<tr><td>
<textarea name="xyz_fbap_suggested_feature" id="xyz_fbap_suggested_feature" style="width:620px;height:250px !important;"></textarea>
</td></tr>
<tr>
<td><input name="xyz_send_mail" class="submit_fbap_new" style="color:#FFFFFF;border-radius:4px;border:1px solid #1A87B9; margin-bottom:10px;" type="submit" value="Send Mail To Us">
</td></tr>
</table>
</form>