📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: cron.php
<?php namespace CookieAdminPro; if(!defined('COOKIEADMIN_PRO_VERSION') || !defined('ABSPATH')){ die('Hacking Attempt'); } class Cron{ // Handles the consent logs deletion static function consent_log_pruning(){ if(get_transient('cookieadmin_pruning_in_progress')){ return; } $cookieadmin_settings = get_option('cookieadmin_settings', array('consent_logs_expiry' => 0, 'consent_logs_expiry_days' => 0)); $consent_logs_expiry = (int) $cookieadmin_settings['consent_logs_expiry_days']; if(empty($cookieadmin_settings['consent_logs_expiry']) || $consent_logs_expiry <= 0){ return; } $retention_limit = time() - ($consent_logs_expiry * DAY_IN_SECONDS); set_transient('cookieadmin_pruning_in_progress', 'true', 3600); self::consent_log_pruning_batch($retention_limit); } // Does the actual logs cleaning static function consent_log_pruning_batch($retention_limit = 0){ global $wpdb; $retention_limit = absint($retention_limit); if(empty($retention_limit)){ delete_transient('cookieadmin_pruning_in_progress'); return; } $table_name = $wpdb->prefix . 'cookieadmin_consents'; $rows_deleted = $wpdb->query( $wpdb->prepare( "DELETE FROM {$table_name} WHERE consent_time < %d LIMIT 100", $retention_limit ) ); if(!empty($wpdb->last_error)){ update_option('cookieadmin_consent_purge', [ 'status' => 3, 'success' => false, 'message' => $wpdb->last_error ]); delete_transient('cookieadmin_pruning_in_progress'); return; } $deletion_option = get_option('cookieadmin_consent_purge', ['status' => 2, 'count' => 0]); $deletion_count = $rows_deleted + (empty($deletion_option['count']) ? 0 : $deletion_option['count']); update_option('cookieadmin_consent_purge', ['status' => 2, 'count' => $deletion_count]); if ($rows_deleted >= 100) { wp_schedule_single_event(time() + 10, 'cookieadmin_daily_log_pruning_next_batch', array($retention_limit)); }else{ update_option('cookieadmin_consent_purge', ['success' => true, 'status' => 3, 'count' => $deletion_count]); delete_transient('cookieadmin_pruning_in_progress'); } } static function cookieadmin_pro_run_auto_scan(){ $loaded_settings = get_option('cookieadmin_settings'); if(empty($loaded_settings['cookieadmin_auto_scan']) || get_transient('cookieadmin_auto_scan_in_progress')){ return; } set_transient('cookieadmin_auto_scan_in_progress', time(), 10 * MINUTE_IN_SECONDS); // Status : 2,3 - running,completed update_option('cookieadmin_scan', array('status' => 2, 'update' => time())); \CookieAdmin\Admin\Scan::scan_cookies([]); } }
Save