Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.148.229.54
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
php /
81 /
src /
ext /
dba /
[ HOME SHELL ]
Name
Size
Permission
Action
libcdb
[ DIR ]
drwxr-xr-x
libflatfile
[ DIR ]
drwxr-xr-x
libinifile
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
CREDITS
36
B
-rw-r--r--
config.m4
18.12
KB
-rw-r--r--
config.w32
1.99
KB
-rw-r--r--
dba.c
29.91
KB
-rw-r--r--
dba.stub.php
1.69
KB
-rw-r--r--
dba_arginfo.h
2.95
KB
-rw-r--r--
dba_cdb.c
6.84
KB
-rw-r--r--
dba_db1.c
3.59
KB
-rw-r--r--
dba_db2.c
4.14
KB
-rw-r--r--
dba_db3.c
4.85
KB
-rw-r--r--
dba_db4.c
6.44
KB
-rw-r--r--
dba_dbm.c
3.75
KB
-rw-r--r--
dba_flatfile.c
3.55
KB
-rw-r--r--
dba_gdbm.c
3.98
KB
-rw-r--r--
dba_inifile.c
3.49
KB
-rw-r--r--
dba_lmdb.c
7.15
KB
-rw-r--r--
dba_ndbm.c
3.03
KB
-rw-r--r--
dba_qdbm.c
3.48
KB
-rw-r--r--
dba_tcadb.c
3.96
KB
-rw-r--r--
install_cdb.sh
1.02
KB
-rw-r--r--
php_cdb.h
104
B
-rw-r--r--
php_db1.h
104
B
-rw-r--r--
php_db2.h
104
B
-rw-r--r--
php_db3.h
104
B
-rw-r--r--
php_db4.h
104
B
-rw-r--r--
php_dba.h
4.27
KB
-rw-r--r--
php_dbm.h
104
B
-rw-r--r--
php_flatfile.h
124
B
-rw-r--r--
php_gdbm.h
108
B
-rw-r--r--
php_inifile.h
120
B
-rw-r--r--
php_lmdb.h
108
B
-rw-r--r--
php_ndbm.h
108
B
-rw-r--r--
php_qdbm.h
108
B
-rw-r--r--
php_tcadb.h
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install_cdb.sh
#! /bin/sh # You can use this script if you want to use an external cdb lib. If you # compile php using --with-cdb the internal functions will be used and no # external library is used so that this script is not necessary. # # cdb-0.75 lacks support for installing header files and creating a # library which programs can link against. This shell script fills # the gap. if test -r "cdb.a" && test -r "auto-str.c" && test -r "byte.a"; then : else echo "Please execute this script in the cdb-0.75 source directory after 'make'" exit 1 fi prefix=$1 if test -z "$prefix"; then prefix=/usr/local fi echo "Using prefix $prefix" if mkdir -p "$prefix/include" "$prefix/lib"; then : else echo "Creating directories failed. Please become superuser." exit 1 fi mkdir -p tmp || exit 1 cd tmp ar x ../cdb.a ar x ../byte.a ar x ../unix.a ar x ../byte.a ar x ../buffer.a cp ../error.o . # not really portable ar r "$prefix/lib/libcdb.a" * ranlib "$prefix/lib/libcdb.a" cd .. rm -rf tmp cp cdb.h uint32.h "$prefix/include" echo "done"
Close