uawdijnntqw1x1x1
IP : 216.73.217.77
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
wordpress
/
..
/
codeskitter
/
project_name
/
tests
/
..
/
.
/
app
/
Config
/
Publisher.php
/
/
<?php namespace Config; use CodeIgniter\Config\Publisher as BasePublisher; /** * Publisher Configuration * * Defines basic security restrictions for the Publisher class * to prevent abuse by injecting malicious files into a project. */ class Publisher extends BasePublisher { /** * A list of allowed destinations with a (pseudo-)regex * of allowed files for each destination. * Attempts to publish to directories not in this list will * result in a PublisherException. Files that do no fit the * pattern will cause copy/merge to fail. * * @var array<string, string> */ public $restrictions = [ ROOTPATH => '*', FCPATH => '#\.(s?css|js|map|html?|xml|json|webmanifest|ttf|eot|woff2?|gif|jpe?g|tiff?|png|webp|bmp|ico|svg)$#i', ]; }
/home/users/unlimited/www/wordpress/../codeskitter/project_name/tests/.././app/Config/Publisher.php