Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-4.4.0-119 /
scripts /
kconfig /
Delete
Unzip
Name
Size
Permission
Date
Action
lxdialog
[ DIR ]
drwxr-xr-x
2018-04-05 07:11
.gitignore
167
B
-rw-r--r--
2016-01-11 00:01
Makefile
10.59
KB
-rw-r--r--
2018-04-02 18:07
POTFILES.in
361
B
-rw-r--r--
2016-01-11 00:01
check.sh
214
B
-rwxr-xr-x
2016-01-11 00:01
conf.c
15.7
KB
-rw-r--r--
2016-01-11 00:01
confdata.c
25.6
KB
-rw-r--r--
2018-04-02 18:07
expr.c
26.95
KB
-rw-r--r--
2016-01-11 00:01
expr.h
7.01
KB
-rw-r--r--
2016-01-11 00:01
gconf.c
38.17
KB
-rw-r--r--
2016-01-11 00:01
gconf.glade
25.04
KB
-rw-r--r--
2016-01-11 00:01
images.c
6.41
KB
-rw-r--r--
2016-01-11 00:01
kxgettext.c
4.1
KB
-rw-r--r--
2016-01-11 00:01
list.h
3.62
KB
-rw-r--r--
2016-01-11 00:01
lkc.h
4.47
KB
-rw-r--r--
2018-04-02 18:07
lkc_proto.h
2.1
KB
-rw-r--r--
2016-01-11 00:01
mconf.c
27.74
KB
-rw-r--r--
2016-01-11 00:01
menu.c
16.84
KB
-rw-r--r--
2016-01-11 00:01
merge_config.sh
4.2
KB
-rwxr-xr-x
2016-01-11 00:01
nconf.c
38.46
KB
-rw-r--r--
2016-01-11 00:01
nconf.gui.c
14.73
KB
-rw-r--r--
2018-04-02 18:07
nconf.h
1.87
KB
-rw-r--r--
2016-01-11 00:01
qconf.cc
44.04
KB
-rw-r--r--
2016-01-11 00:01
qconf.h
7.37
KB
-rw-r--r--
2016-01-11 00:01
streamline_config.pl
14.85
KB
-rwxr-xr-x
2016-01-11 00:01
symbol.c
29.35
KB
-rw-r--r--
2016-01-11 00:01
util.c
2.91
KB
-rw-r--r--
2016-01-11 00:01
zconf.gperf
1.43
KB
-rw-r--r--
2016-01-11 00:01
zconf.hash.c_shipped
12.17
KB
-rw-r--r--
2016-01-11 00:01
zconf.l
6.86
KB
-rw-r--r--
2016-01-11 00:01
zconf.lex.c_shipped
58.46
KB
-rw-r--r--
2016-01-11 00:01
zconf.tab.c_shipped
75.58
KB
-rw-r--r--
2016-01-11 00:01
zconf.y
15.43
KB
-rw-r--r--
2016-01-11 00:01
Save
Rename
/* * Copyright (C) 2008 Nir Tzachar <nir.tzachar@gmail.com? * Released under the terms of the GNU GPL v2.0. * * Derived from menuconfig. * */ #include <ctype.h> #include <errno.h> #include <fcntl.h> #include <limits.h> #include <stdarg.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <locale.h> #include <curses.h> #include <menu.h> #include <panel.h> #include <form.h> #include <stdio.h> #include <time.h> #include <sys/time.h> #include "ncurses.h" #define max(a, b) ({\ typeof(a) _a = a;\ typeof(b) _b = b;\ _a > _b ? _a : _b; }) #define min(a, b) ({\ typeof(a) _a = a;\ typeof(b) _b = b;\ _a < _b ? _a : _b; }) typedef enum { NORMAL = 1, MAIN_HEADING, MAIN_MENU_BOX, MAIN_MENU_FORE, MAIN_MENU_BACK, MAIN_MENU_GREY, MAIN_MENU_HEADING, SCROLLWIN_TEXT, SCROLLWIN_HEADING, SCROLLWIN_BOX, DIALOG_TEXT, DIALOG_MENU_FORE, DIALOG_MENU_BACK, DIALOG_BOX, INPUT_BOX, INPUT_HEADING, INPUT_TEXT, INPUT_FIELD, FUNCTION_TEXT, FUNCTION_HIGHLIGHT, ATTR_MAX } attributes_t; extern attributes_t attributes[]; typedef enum { F_HELP = 1, F_SYMBOL = 2, F_INSTS = 3, F_CONF = 4, F_BACK = 5, F_SAVE = 6, F_LOAD = 7, F_SEARCH = 8, F_EXIT = 9, } function_key; void set_colors(void); /* this changes the windows attributes !!! */ void print_in_middle(WINDOW *win, int starty, int startx, int width, const char *string, chtype color); int get_line_length(const char *line); int get_line_no(const char *text); const char *get_line(const char *text, int line_no); void fill_window(WINDOW *win, const char *text); int btn_dialog(WINDOW *main_window, const char *msg, int btn_num, ...); int dialog_inputbox(WINDOW *main_window, const char *title, const char *prompt, const char *init, char **resultp, int *result_len); void refresh_all_windows(WINDOW *main_window); void show_scroll_win(WINDOW *main_window, const char *title, const char *text);