Current Path: > home > transcarter > > www > > wp-content > plugins > protect-uploads
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
admin | Directory | - | - | |
includes | Directory | - | - | |
languages | Directory | - | - | |
LICENSE.txt | File | 18429 bytes | August 01 2025 16:16:02. | |
index.php | File | 26 bytes | August 01 2025 16:16:02. | |
protect-uploads.php | File | 1502 bytes | August 01 2025 16:16:02. | |
readme.txt | File | 2177 bytes | August 01 2025 16:16:02. | |
uninstall.php | File | 1303 bytes | August 01 2025 16:16:02. |
<?php /** * Plugin Name: Protect Uploads * Plugin URI: https://wordpress.org/support/plugin/protect-uploads/ * Description: Protect your uploads directory. Avoid browsing of your uploads directory by adding a htaccess file or an index.php file. * Version: 0.4 * Author: alticreation * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: protect-uploads * Domain Path: /languages */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } function activate_alti_protect_uploads() { require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads-activator.php'; $activation = new Alti_ProtectUploads_Activator(); $activation->run(); } function deactivate_alti_protect_uploads() { require_once plugin_dir_path( __FILE__ ) . 'admin/class-protect-uploads-admin.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads-deactivator.php'; $deactivation = new Alti_ProtectUploads_Deactivator(); $deactivation->run(); } register_activation_hook( __FILE__, 'activate_alti_protect_uploads' ); register_deactivation_hook( __FILE__, 'deactivate_alti_protect_uploads' ); require plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads.php'; $plugin = new Alti_ProtectUploads(); $plugin->run();
SILENT KILLER Tool