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 | : 172.71.203.60
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-215 /
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
29.6
KB
-rw-r--r--
expr.h
9.63
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.3
KB
-rw-r--r--
merge_config.sh
4.72
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 : qconf-cfg.sh
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 PKG="Qt5Core Qt5Gui Qt5Widgets" PKG2="QtCore QtGui" if [ -z "$(command -v pkg-config)" ]; then echo >&2 "*" echo >&2 "* 'make xconfig' requires 'pkg-config'. Please install it." echo >&2 "*" exit 1 fi if pkg-config --exists $PKG; then echo cflags=\"-std=c++11 -fPIC $(pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets)\" echo libs=\"$(pkg-config --libs $PKG)\" echo moc=\"$(pkg-config --variable=host_bins Qt5Core)/moc\" exit 0 fi if pkg-config --exists $PKG2; then echo cflags=\"$(pkg-config --cflags $PKG2)\" echo libs=\"$(pkg-config --libs $PKG2)\" echo moc=\"$(pkg-config --variable=moc_location QtCore)\" exit 0 fi echo >&2 "*" echo >&2 "* Could not find Qt via pkg-config." echo >&2 "* Please install either Qt 4.8 or 5.x. and make sure it's in PKG_CONFIG_PATH" echo >&2 "*" exit 1
Close