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.147.56.125
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 /
html /
sdu /
libs /
adodb5 /
session /
[ HOME SHELL ]
Name
Size
Permission
Action
old
[ DIR ]
drwxr-xr-x
adodb-compress-bzip2.php
2.01
KB
-rwxr-xr-x
adodb-compress-gzip.php
1.48
KB
-rwxr-xr-x
adodb-cryptsession.php
630
B
-rwxr-xr-x
adodb-cryptsession2.php
631
B
-rwxr-xr-x
adodb-encrypt-mcrypt.php
1.79
KB
-rwxr-xr-x
adodb-encrypt-md5.php
757
B
-rwxr-xr-x
adodb-encrypt-secret.php
1008
B
-rwxr-xr-x
adodb-encrypt-sha1.php
374
B
-rwxr-xr-x
adodb-sess.txt
3.69
KB
-rwxr-xr-x
adodb-session-clob.php
553
B
-rwxr-xr-x
adodb-session-clob2.php
554
B
-rwxr-xr-x
adodb-session.php
20.73
KB
-rwxr-xr-x
adodb-session2.php
21.29
KB
-rwxr-xr-x
adodb-sessions.mysql.sql
396
B
-rwxr-xr-x
adodb-sessions.oracle.clob.sql
281
B
-rwxr-xr-x
adodb-sessions.oracle.sql
313
B
-rwxr-xr-x
crypt.inc.php
2.75
KB
-rwxr-xr-x
session_schema.xml
537
B
-rwxr-xr-x
session_schema2.xml
715
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : adodb-encrypt-secret.php
<?php /* V5.04a 25 Mar 2008 (c) 2000-2008 John Lim (jlim#natsoft.com.my). All rights reserved. Contributed by Ross Smith (adodb@netebb.com). 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. */ @define('HORDE_BASE', dirname(dirname(dirname(__FILE__))) . '/horde'); if (!is_dir(HORDE_BASE)) { trigger_error(sprintf('Directory not found: \'%s\'', HORDE_BASE), E_USER_ERROR); return 0; } include_once HORDE_BASE . '/lib/Horde.php'; include_once HORDE_BASE . '/lib/Secret.php'; /** NOTE: On Windows 2000 SP4 with PHP 4.3.1, MCrypt 2.4.x, and Apache 1.3.28, the session didn't work properly. This may be resolved with 4.3.3. */ class ADODB_Encrypt_Secret { /** */ function write($data, $key) { return Secret::write($key, $data); } /** */ function read($data, $key) { return Secret::read($key, $data); } } return 1; ?>
Close