📁
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: linksmanage.php
<?php /* * SITESEO * https://siteseo.io * (c) SiteSEO Team */ namespace SiteSEOPro; if(!defined('ABSPATH')){ die('Hacking Attempt !'); } class LinksManage{ static function init(){ global $siteseo; if(empty($siteseo->pro['toggle_state_external_links'])){ return; } add_filter('the_content', '\SiteSEOPro\LinksManage::manage_external_links', 999); } static function manage_external_links($content){ if(empty($content)){ return $content; } global $siteseo; $options = $siteseo->pro; $nofollow = !empty($options['external_links_nofollow']) ? $options['external_links_nofollow'] : ''; $sponsored = !empty($options['external_links_sponsored']) ? $options['external_links_sponsored'] : ''; $target_blank = !empty($options['external_links_target_blank']) ? $options['external_links_target_blank'] : ''; $noreferrer = !empty($options['external_links_noreferrer']) ? $options['external_links_noreferrer'] : ''; $exclude_links = !empty($options['external_links_exclude']) ? $options['external_links_exclude'] : ''; // Convert exclude domains to array $exclude_domains = array_filter(array_map('trim', explode(',', $exclude_links))); // Get site host $site_host = parse_url(home_url(), PHP_URL_HOST); libxml_use_internal_errors(true); $dom = new \DOMDocument(); $dom->loadHTML('<?xml encoding="utf-8" ?>' . $content); $links = $dom->getElementsByTagName('a'); foreach($links as $link){ $href = $link->getAttribute('href'); if(empty($href)){ continue; } // Skip anchors, mailto, tel if(strpos($href, '#') === 0 || strpos($href, 'mailto:') === 0 || strpos($href, 'tel:') === 0){ continue; } $link_host = parse_url($href, PHP_URL_HOST); // If no host (relative link), skip if(empty($link_host)){ continue; } // Skip internal links if($link_host === $site_host){ continue; } // Check excluded domains $skip = false; foreach($exclude_domains as $domain){ if(strpos($link_host, $domain) !== false){ $skip = true; break; } } if($skip){ continue; } // Get existing rel values $rel = $link->getAttribute('rel'); $rel_values = array_filter(explode(' ', $rel)); // Add rel attributes if(!empty($nofollow) && !in_array('nofollow', $rel_values)){ $rel_values[] = 'nofollow'; } if(!empty($sponsored) && !in_array('sponsored', $rel_values)){ $rel_values[] = 'sponsored'; } if(!empty($noreferrer)){ if(!in_array('noopener', $rel_values)){ $rel_values[] = 'noopener'; } if(!in_array('noreferrer', $rel_values)){ $rel_values[] = 'noreferrer'; } } // Set rel attribute if(!empty($rel_values)){ $link->setAttribute('rel', implode(' ', $rel_values)); } // Target blank if(!empty($target_blank)){ $link->setAttribute('target', '_blank'); } } // Save HTML $html = $dom->saveHTML(); // Remove unwanted tags added by DOMDocument $body = preg_replace('~<(?:!DOCTYPE|/?(?:html|body))[^>]*>\s*~i', '', $html); return $body; } }
Save