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 | : 3.133.113.101
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 /
80 /
src /
ext /
mysqlnd /
[ HOME SHELL ]
Name
Size
Permission
Action
CREDITS
70
B
-rw-r--r--
config-win.h
3.07
KB
-rw-r--r--
config.w32
1.42
KB
-rw-r--r--
config9.m4
2.08
KB
-rw-r--r--
mysql_float_to_double.h
1.83
KB
-rw-r--r--
mysqlnd.h
18.51
KB
-rw-r--r--
mysqlnd_alloc.c
22.55
KB
-rw-r--r--
mysqlnd_alloc.h
4.56
KB
-rw-r--r--
mysqlnd_auth.c
45.28
KB
-rw-r--r--
mysqlnd_auth.h
3.93
KB
-rw-r--r--
mysqlnd_block_alloc.c
4.23
KB
-rw-r--r--
mysqlnd_block_alloc.h
1.41
KB
-rw-r--r--
mysqlnd_charset.c
37.68
KB
-rw-r--r--
mysqlnd_charset.h
2.11
KB
-rw-r--r--
mysqlnd_commands.c
25.33
KB
-rw-r--r--
mysqlnd_commands.h
1.17
KB
-rw-r--r--
mysqlnd_connection.c
79.58
KB
-rw-r--r--
mysqlnd_connection.h
3.02
KB
-rw-r--r--
mysqlnd_debug.c
23.23
KB
-rw-r--r--
mysqlnd_debug.h
9.69
KB
-rw-r--r--
mysqlnd_driver.c
10.37
KB
-rw-r--r--
mysqlnd_enum_n_def.h
20.51
KB
-rw-r--r--
mysqlnd_ext_plugin.c
12.46
KB
-rw-r--r--
mysqlnd_ext_plugin.h
7.99
KB
-rw-r--r--
mysqlnd_libmysql_compat.h
7.27
KB
-rw-r--r--
mysqlnd_loaddata.c
7.03
KB
-rw-r--r--
mysqlnd_plugin.c
5.27
KB
-rw-r--r--
mysqlnd_plugin.h
1.3
KB
-rw-r--r--
mysqlnd_portability.h
14.32
KB
-rw-r--r--
mysqlnd_priv.h
2.14
KB
-rw-r--r--
mysqlnd_protocol_frame_codec.c
19.05
KB
-rw-r--r--
mysqlnd_protocol_frame_codec.h
1.45
KB
-rw-r--r--
mysqlnd_ps.c
68.73
KB
-rw-r--r--
mysqlnd_ps.h
2.09
KB
-rw-r--r--
mysqlnd_ps_codec.c
31.65
KB
-rw-r--r--
mysqlnd_read_buffer.c
2.52
KB
-rw-r--r--
mysqlnd_read_buffer.h
1.2
KB
-rw-r--r--
mysqlnd_result.c
66.31
KB
-rw-r--r--
mysqlnd_result.h
1.7
KB
-rw-r--r--
mysqlnd_result_meta.c
10.38
KB
-rw-r--r--
mysqlnd_result_meta.h
1.51
KB
-rw-r--r--
mysqlnd_reverse_api.c
2.48
KB
-rw-r--r--
mysqlnd_reverse_api.h
1.68
KB
-rw-r--r--
mysqlnd_statistics.c
11.64
KB
-rw-r--r--
mysqlnd_statistics.h
4.85
KB
-rw-r--r--
mysqlnd_structs.h
63.89
KB
-rw-r--r--
mysqlnd_vio.c
24.63
KB
-rw-r--r--
mysqlnd_vio.h
1.39
KB
-rw-r--r--
mysqlnd_wireprotocol.c
90.1
KB
-rw-r--r--
mysqlnd_wireprotocol.h
9.81
KB
-rw-r--r--
php_mysqlnd.c
10.38
KB
-rw-r--r--
php_mysqlnd.h
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mysqlnd_alloc.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andrey Hristov <andrey@php.net> | | Ulf Wendel <uw@php.net> | +----------------------------------------------------------------------+ */ #ifndef MYSQLND_ALLOC_H #define MYSQLND_ALLOC_H PHPAPI extern const char * mysqlnd_debug_std_no_trace_funcs[]; #define MYSQLND_MEM_D ZEND_FILE_LINE_DC #define MYSQLND_MEM_C ZEND_FILE_LINE_CC struct st_mysqlnd_allocator_methods { void * (*m_emalloc)(size_t size MYSQLND_MEM_D); void * (*m_pemalloc)(size_t size, zend_bool persistent MYSQLND_MEM_D); void * (*m_ecalloc)(unsigned int nmemb, size_t size MYSQLND_MEM_D); void * (*m_pecalloc)(unsigned int nmemb, size_t size, zend_bool persistent MYSQLND_MEM_D); void * (*m_erealloc)(void *ptr, size_t new_size MYSQLND_MEM_D); void * (*m_perealloc)(void *ptr, size_t new_size, zend_bool persistent MYSQLND_MEM_D); void (*m_efree)(void *ptr MYSQLND_MEM_D); void (*m_pefree)(void *ptr, zend_bool persistent MYSQLND_MEM_D); void * (*m_malloc)(size_t size MYSQLND_MEM_D); void * (*m_calloc)(unsigned int nmemb, size_t size MYSQLND_MEM_D); void * (*m_realloc)(void *ptr, size_t new_size MYSQLND_MEM_D); void (*m_free)(void *ptr MYSQLND_MEM_D); char * (*m_pememdup)(const char * const ptr, size_t size, zend_bool persistent MYSQLND_MEM_D); char * (*m_pestrndup)(const char * const ptr, size_t size, zend_bool persistent MYSQLND_MEM_D); char * (*m_pestrdup)(const char * const ptr, zend_bool persistent MYSQLND_MEM_D); int (*m_sprintf)(char **pbuf, size_t max_len, const char *format, ...); int (*m_vsprintf)(char **pbuf, size_t max_len, const char *format, va_list ap); void (*m_sprintf_free)(char * p); }; PHPAPI extern struct st_mysqlnd_allocator_methods mysqlnd_allocator; #define mnd_emalloc(size) mysqlnd_allocator.m_emalloc((size) MYSQLND_MEM_C) #define mnd_pemalloc(size, pers) mysqlnd_allocator.m_pemalloc((size), (pers) MYSQLND_MEM_C) #define mnd_ecalloc(nmemb, size) mysqlnd_allocator.m_ecalloc((nmemb), (size) MYSQLND_MEM_C) #define mnd_pecalloc(nmemb, size, p) mysqlnd_allocator.m_pecalloc((nmemb), (size), (p) MYSQLND_MEM_C) #define mnd_erealloc(ptr, new_size) mysqlnd_allocator.m_erealloc((ptr), (new_size) MYSQLND_MEM_C) #define mnd_perealloc(ptr, new_size, p) mysqlnd_allocator.m_perealloc((ptr), (new_size), (p) MYSQLND_MEM_C) #define mnd_efree(ptr) mysqlnd_allocator.m_efree((ptr) MYSQLND_MEM_C) #define mnd_pefree(ptr, pers) mysqlnd_allocator.m_pefree((ptr), (pers) MYSQLND_MEM_C) #define mnd_malloc(size) mysqlnd_allocator.m_malloc((size) MYSQLND_MEM_C) #define mnd_calloc(nmemb, size) mysqlnd_allocator.m_calloc((nmemb), (size) MYSQLND_MEM_C) #define mnd_realloc(ptr, new_size) mysqlnd_allocator.m_realloc((ptr), (new_size) MYSQLND_MEM_C) #define mnd_free(ptr) mysqlnd_allocator.m_free((ptr) MYSQLND_MEM_C) #define mnd_pememdup(ptr, size, pers) mysqlnd_allocator.m_pememdup((ptr), (size), (pers) MYSQLND_MEM_C) #define mnd_pestrndup(ptr, size, pers) mysqlnd_allocator.m_pestrndup((ptr), (size), (pers) MYSQLND_MEM_C) #define mnd_pestrdup(ptr, pers) mysqlnd_allocator.m_pestrdup((ptr), (pers) MYSQLND_MEM_C) #define mnd_sprintf(p, mx_len, fmt,...) mysqlnd_allocator.m_sprintf((p), (mx_len), (fmt), __VA_ARGS__) #define mnd_vsprintf(p, mx_len, fmt,ap) mysqlnd_allocator.m_vsprintf((p), (mx_len), (fmt), (ap)) #define mnd_sprintf_free(p) mysqlnd_allocator.m_sprintf_free((p)) static inline MYSQLND_STRING mnd_dup_cstring(const MYSQLND_CSTRING str, const zend_bool persistent) { const MYSQLND_STRING ret = {(char*) mnd_pemalloc(str.l + 1, persistent), str.l}; if (ret.s) { memcpy(ret.s, str.s, str.l); ret.s[str.l] = '\0'; } return ret; } static inline MYSQLND_CSTRING mnd_str2c(const MYSQLND_STRING str) { const MYSQLND_CSTRING ret = {str.s, str.l}; return ret; } #endif /* MYSQLND_ALLOC_H */
Close