Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.133.141.201
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
results /
jssum /
libs /
adodb5 /
datadict /
[ HOME SHELL ]
Name
Size
Permission
Action
datadict-access.inc.php
2.11
KB
-rwxrwxrwx
datadict-db2.inc.php
3.99
KB
-rwxrwxrwx
datadict-firebird.inc.php
3.78
KB
-rwxrwxrwx
datadict-generic.inc.php
2.58
KB
-rwxrwxrwx
datadict-ibase.inc.php
1.49
KB
-rwxrwxrwx
datadict-informix.inc.php
1.85
KB
-rwxrwxrwx
datadict-mssql.inc.php
7.32
KB
-rwxrwxrwx
datadict-mssqlnative.inc.php
9.78
KB
-rwxrwxrwx
datadict-mysql.inc.php
4.6
KB
-rwxrwxrwx
datadict-oci8.inc.php
7.51
KB
-rwxrwxrwx
datadict-postgres.inc.php
15.56
KB
-rwxrwxrwx
datadict-sapdb.inc.php
3.25
KB
-rwxrwxrwx
datadict-sqlite.inc.php
2.69
KB
-rwxrwxrwx
datadict-sybase.inc.php
5.74
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : datadict-access.inc.php
<?php /** @version v5.20.9 21-Dec-2016 @copyright (c) 2000-2013 John Lim (jlim#natsoft.com). All rights reserved. @copyright (c) 2014 Damien Regad, Mark Newnham and the ADOdb community 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. */ // security - hide paths if (!defined('ADODB_DIR')) die(); class ADODB2_access extends ADODB_DataDict { var $databaseType = 'access'; var $seqField = false; function ActualType($meta) { switch($meta) { case 'C': return 'TEXT'; case 'XL': case 'X': return 'MEMO'; case 'C2': return 'TEXT'; // up to 32K case 'X2': return 'MEMO'; case 'B': return 'BINARY'; case 'TS': case 'D': return 'DATETIME'; case 'T': return 'DATETIME'; case 'L': return 'BYTE'; case 'I': return 'INTEGER'; case 'I1': return 'BYTE'; case 'I2': return 'SMALLINT'; case 'I4': return 'INTEGER'; case 'I8': return 'INTEGER'; case 'F': return 'DOUBLE'; case 'N': return 'NUMERIC'; default: return $meta; } } // return string must begin with space function _CreateSuffix($fname, &$ftype, $fnotnull,$fdefault,$fautoinc,$fconstraint,$funsigned) { if ($fautoinc) { $ftype = 'COUNTER'; return ''; } if (substr($ftype,0,7) == 'DECIMAL') $ftype = 'DECIMAL'; $suffix = ''; if (strlen($fdefault)) { //$suffix .= " DEFAULT $fdefault"; if ($this->debug) ADOConnection::outp("Warning: Access does not supported DEFAULT values (field $fname)"); } if ($fnotnull) $suffix .= ' NOT NULL'; if ($fconstraint) $suffix .= ' '.$fconstraint; return $suffix; } function CreateDatabase($dbname,$options=false) { return array(); } function SetSchema($schema) { } function AlterColumnSQL($tabname, $flds, $tableflds='',$tableoptions='') { if ($this->debug) ADOConnection::outp("AlterColumnSQL not supported"); return array(); } function DropColumnSQL($tabname, $flds, $tableflds='',$tableoptions='') { if ($this->debug) ADOConnection::outp("DropColumnSQL not supported"); return array(); } }
Close