Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.116.49.66
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
vendor /
torann /
geoip /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Console
[ DIR ]
drwxr-xr-x
Contracts
[ DIR ]
drwxr-xr-x
Facades
[ DIR ]
drwxr-xr-x
Services
[ DIR ]
drwxr-xr-x
Support
[ DIR ]
drwxr-xr-x
Cache.php
1.35
KB
-rw-r--r--
GeoIP.php
7.09
KB
-rw-r--r--
GeoIPServiceProvider.php
1.63
KB
-rw-r--r--
Location.php
4.28
KB
-rw-r--r--
helpers.php
360
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Cache.php
<?php namespace Torann\GeoIP; use Illuminate\Cache\CacheManager; class Cache { /** * Instance of cache manager. * * @var \Illuminate\Cache\CacheManager */ protected $cache; /** * Lifetime of the cache. * * @var int */ protected $expires; /** * Create a new cache instance. * * @param CacheManager $cache * @param array $tags * @param int $expires */ public function __construct(CacheManager $cache, $tags, $expires = 30) { $this->cache = $tags ? $cache->tags($tags) : $cache; $this->expires = $expires; } /** * Get an item from the cache. * * @param string $name * * @return Location|null */ public function get($name) { $value = $this->cache->get($name); return is_array($value) ? new Location($value) : null; } /** * Store an item in cache. * * @param string $name * @param Location $location * * @return bool */ public function set($name, Location $location) { return $this->cache->put($name, $location->toArray(), $this->expires); } /** * Flush cache for tags. * * @return bool */ public function flush() { return $this->cache->flush(); } }
Close