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 /
lusedi /
libraries /
fof /
database /
Delete
Unzip
Name
Size
Permission
Date
Action
driver
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
iterator
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
query
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
database.php
5.74
KB
-rw-r--r--
2017-11-07 06:31
driver.php
53.83
KB
-rw-r--r--
2017-11-07 06:31
factory.php
3.93
KB
-rw-r--r--
2017-11-07 06:31
installer.php
22.94
KB
-rw-r--r--
2017-11-07 06:31
interface.php
888
B
-rw-r--r--
2017-11-07 06:31
iterator.php
5.28
KB
-rw-r--r--
2017-11-07 06:31
query.php
39.8
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package FrameworkOnFramework * @subpackage database * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * * This file is adapted from the Joomla! Platform. It is used to iterate a database cursor returning FOFTable objects * instead of plain stdClass objects */ // Protect from unauthorized access defined('FOF_INCLUDED') or die; if (!interface_exists('JDatabaseInterface')) { /** * Joomla Platform Database Interface * * @since 11.2 */ interface JDatabaseInterface { /** * Test to see if the connector is available. * * @return boolean True on success, false otherwise. * * @since 11.2 */ public static function isSupported(); } } interface FOFDatabaseInterface extends JDatabaseInterface { }