Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
includes /
cache /
Delete
Unzip
Name
Size
Permission
Date
Action
localisation
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
BacklinkCache.php
15.04
KB
-rw-r--r--
2016-11-28 20:20
CacheDependency.php
6.87
KB
-rw-r--r--
2016-11-28 20:20
CacheHelper.php
10.19
KB
-rw-r--r--
2016-11-28 20:20
FileCacheBase.php
6.64
KB
-rw-r--r--
2016-11-28 20:20
GenderCache.php
5.11
KB
-rw-r--r--
2016-11-28 20:20
HTMLCacheUpdate.php
6.6
KB
-rw-r--r--
2011-05-28 20:58
HTMLFileCache.php
7.29
KB
-rw-r--r--
2016-11-28 20:20
LinkBatch.php
6.17
KB
-rw-r--r--
2016-11-28 20:20
LinkCache.php
8.6
KB
-rw-r--r--
2016-11-28 20:20
MemcachedSessions.php
2.05
KB
-rw-r--r--
2011-04-25 23:38
MessageBlobStore.php
7.42
KB
-rw-r--r--
2016-11-28 20:20
MessageCache.php
36.38
KB
-rw-r--r--
2016-11-28 20:20
ResourceFileCache.php
3.42
KB
-rw-r--r--
2016-11-28 20:20
SquidUpdate.php
5.84
KB
-rw-r--r--
2011-10-17 00:13
UserCache.php
4.23
KB
-rw-r--r--
2016-11-28 20:20
Save
Rename
<?php /** * This file gets included if $wgSessionsInMemcache is set in the config. * It redirects session handling functions to store their data in memcached * instead of the local filesystem. Depending on circumstances, it may also * be necessary to change the cookie settings to work across hostnames. * See: http://www.php.net/manual/en/function.session-set-save-handler.php * * @file * @ingroup Cache */ /** * Get a cache key for the given session id. * * @param $id String: session id * @return String: cache key */ function memsess_key( $id ) { return wfMemcKey( 'session', $id ); } /** * Callback when opening a session. * NOP: $wgMemc should be set up already. * * @param $save_path String: path used to store session files, unused * @param $session_name String: session name * @return Boolean: success */ function memsess_open( $save_path, $session_name ) { return true; } /** * Callback when closing a session. * NOP. * * @return Boolean: success */ function memsess_close() { return true; } /** * Callback when reading session data. * * @param $id String: session id * @return Mixed: session data */ function memsess_read( $id ) { global $wgMemc; $data = $wgMemc->get( memsess_key( $id ) ); if( ! $data ) return ''; return $data; } /** * Callback when writing session data. * * @param $id String: session id * @param $data Mixed: session data * @return Boolean: success */ function memsess_write( $id, $data ) { global $wgMemc; $wgMemc->set( memsess_key( $id ), $data, 3600 ); return true; } /** * Callback to destroy a session when calling session_destroy(). * * @param $id String: session id * @return Boolean: success */ function memsess_destroy( $id ) { global $wgMemc; $wgMemc->delete( memsess_key( $id ) ); return true; } /** * Callback to execute garbage collection. * NOP: Memcached performs garbage collection. * * @param $maxlifetime Integer: maximum session life time * @return Boolean: success */ function memsess_gc( $maxlifetime ) { return true; } function memsess_write_close() { session_write_close(); }