shell bypass 403
UnknownSec Shell
:
/
home
/
a
/
k
/
w
/
akwariom
/
www
/
wp-content
/
plugins
/
gallery-by-supsystic
/
src
/
GridGallery
/
Core
/ [
drwxr-xr-x
]
upload
mass deface
mass delete
console
info server
name :
BaseModel.php
<?php class GridGallery_Core_BaseModel extends Rsc_Mvc_Model implements Rsc_Logger_AwareInterface { /** * @var bool */ protected $debugEnabled; /** * @var string */ protected $lastError; /** * @var int */ protected $insertId; /** * @var Rsc_Logger_Interface */ protected $logger; /** * @var Rsc_Environment */ protected $environment; public function setEnvironment($environment) { $this->environment = $environment; } public function translate($str) { if($this->environment && method_exists($this->environment, 'translate')) { return $this->environment->translate($str); } return $str; } /** * Sets the debug mode enabled * * @param bool $debugEnabled * @return GridGallery_Core_BaseModel */ public function setDebugEnabled($debugEnabled) { $this->debugEnabled = $debugEnabled; return $this; } /** * Returns the last insert id * * @return int */ public function getInsertId() { return $this->insertId; } /** * Returns the last MySQL error * * @return string|null */ public function getLastError() { if (!$this->lastError) { $this->lastError = $this->db->last_error; } return $this->lastError; } /** * Sets a logger instance on the object * * @param Rsc_Logger_Interface $logger * @return null */ public function setLogger(Rsc_Logger_Interface $logger) { $this->logger = $logger; } }
© 2026 UnknownSec