HEX
Server: nginx/1.18.0
System: Linux iZuf6ar3jbed2aosvzu1ofZ 4.18.0-240.22.1.el8_3.x86_64 #1 SMP Thu Apr 8 19:01:30 UTC 2021 x86_64
User: root (0)
PHP: 7.3.28
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/wood-lk.cn/wp-content/plugins/wp-statistics/includes/admin/templates/postbox.php
<div id="postbox-container-1" class="postbox-container">
    <div class="meta-box-sortables">
        <div id="wps-plugins-support" class="postbox">
            <h2 class="hndle"><span><?php _e('Subscribe to Newsletter', 'wp-statistics'); ?></span></h2>

            <div class="inside">
                <form action="//veronalabs.us7.list-manage.com/subscribe/post?u=628dc1468c7c7db0ba42f0137&amp;id=ea320ea877" method="post" name="mc-embedded-subscribe-form" target="_blank" novalidate>
                    <p><?php _e('Subscribe to our mailing list for get any news of the WP-Statistics', 'wp-statistics'); ?></p>
                    <input name="EMAIL" type="email" class="ltr" value="<?php bloginfo('admin_email'); ?>">
                    <input type="hidden" name="b_628dc1468c7c7db0ba42f0137_ea320ea877" tabindex="-1" value="">
                    <input type="submit" value="<?php _e('Subscribe', 'wp-statistics'); ?>" name="subscribe" class="button">
                </form>
            </div>
        </div>
    </div>

    <?php
    // Check Disable PostBox
    if (apply_filters('wp_statistics_ads_setting_page_show', true) === false) {
        return;
    }

    $response      = wp_remote_get('https://wp-statistics.com/wp-json/plugin/postbox');
    $response_code = wp_remote_retrieve_response_code($response);

    if (!is_wp_error($response) and $response_code == '200') :
        $result = json_decode($response['body']);
        foreach ($result->items as $item) : ?>
            <div class="meta-box-sortables">
                <div id="wps-plugins-support" class="postbox">
                    <h2 class="hndle"><span><?php echo $item->title; ?></span></h2>
                    <div class="inside"><?php echo $item->content; ?></div>
                </div>
            </div>
        <?php
        endforeach;
    endif;
    ?>
</div>