Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 18.116.20.108
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
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
/
opt /
alt /
php74 /
usr /
include /
php /
ext /
mysqlnd /
[ HOME SHELL ]
Name
Size
Permission
Action
config-win.h
3.08
KB
-rw-r--r--
mysql_float_to_double.h
1.98
KB
-rw-r--r--
mysqlnd.h
18.72
KB
-rw-r--r--
mysqlnd_alloc.h
4.71
KB
-rw-r--r--
mysqlnd_auth.h
4.08
KB
-rw-r--r--
mysqlnd_block_alloc.h
1.56
KB
-rw-r--r--
mysqlnd_charset.h
2.25
KB
-rw-r--r--
mysqlnd_commands.h
1.32
KB
-rw-r--r--
mysqlnd_connection.h
3.17
KB
-rw-r--r--
mysqlnd_debug.h
9.83
KB
-rw-r--r--
mysqlnd_enum_n_def.h
20.66
KB
-rw-r--r--
mysqlnd_ext_plugin.h
8.13
KB
-rw-r--r--
mysqlnd_libmysql_compat.h
7.42
KB
-rw-r--r--
mysqlnd_plugin.h
1.44
KB
-rw-r--r--
mysqlnd_portability.h
15.23
KB
-rw-r--r--
mysqlnd_priv.h
2.29
KB
-rw-r--r--
mysqlnd_protocol_frame_codec.h
1.59
KB
-rw-r--r--
mysqlnd_ps.h
2.24
KB
-rw-r--r--
mysqlnd_read_buffer.h
1.35
KB
-rw-r--r--
mysqlnd_result.h
1.84
KB
-rw-r--r--
mysqlnd_result_meta.h
1.65
KB
-rw-r--r--
mysqlnd_reverse_api.h
1.83
KB
-rw-r--r--
mysqlnd_statistics.h
5
KB
-rw-r--r--
mysqlnd_structs.h
64.03
KB
-rw-r--r--
mysqlnd_vio.h
1.54
KB
-rw-r--r--
mysqlnd_wireprotocol.h
9.95
KB
-rw-r--r--
php_mysqlnd.h
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config-win.h
/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB This file is public domain and comes with NO WARRANTY of any kind */ /* Defines for Win32 to make it compatible for MySQL */ #ifndef _MYSQLND_CONFIG_WIN_H #define _MYSQLND_CONFIG_WIN_H #include <sys/locking.h> #include <windows.h> #include <math.h> /* Because of rint() */ #include <fcntl.h> #include <io.h> #include <malloc.h> #include <win32/php_stdint.h> #ifndef HAVE_INT8_T #define HAVE_INT8_T #endif #ifndef HAVE_UINT8_T #define HAVE_UINT8_T #endif #ifndef HAVE_INT16_T #define HAVE_INT16_T #endif #ifndef HAVE_UINT16_T #define HAVE_UINT16_T #endif #ifndef HAVE_INT32_T #define HAVE_INT32_T #endif #ifndef HAVE_UINT32_T #define HAVE_UINT32_T #endif #ifndef HAVE_INT64_T #define HAVE_INT64_T #endif #ifndef HAVE_UINT64_T #define HAVE_UINT64_T #endif #ifndef _WIN64 #ifndef _WIN32 #define _WIN32 /* Compatible with old source */ #endif #ifndef __WIN32__ #define __WIN32__ #endif #endif /* _WIN64 */ #ifndef __WIN__ #define __WIN__ /* To make it easier in VC++ */ #endif /* Type information */ #define SIZEOF_LONG 4 #define SIZEOF_LONG_LONG 8 #ifndef _WIN64 /* Optimized store functions for Intel x86 */ #define sint2korr(A) (*((int16_t *) (A))) #define sint3korr(A) ((int32_t) ((((zend_uchar) (A)[2]) & 128) ? \ (((uint32_t) 255L << 24) | \ (((uint32_t) (zend_uchar) (A)[2]) << 16) |\ (((uint32_t) (zend_uchar) (A)[1]) << 8) | \ ((uint32_t) (zend_uchar) (A)[0])) : \ (((uint32_t) (zend_uchar) (A)[2]) << 16) |\ (((uint32_t) (zend_uchar) (A)[1]) << 8) | \ ((uint32_t) (zend_uchar) (A)[0]))) #define sint4korr(A) (*((int32_t *) (A))) #define uint2korr(A) (*((uint16_t *) (A))) #define uint3korr(A) (int32_t) (*((uint32_t *) (A)) & 0xFFFFFF) #define uint4korr(A) (*((uint32_t *) (A))) #define uint5korr(A) ((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\ (((uint32_t) ((zend_uchar) (A)[1])) << 8) +\ (((uint32_t) ((zend_uchar) (A)[2])) << 16) +\ (((uint32_t) ((zend_uchar) (A)[3])) << 24)) +\ (((uint64_t) ((zend_uchar) (A)[4])) << 32)) #define uint8korr(A) (*((uint64_t *) (A))) #define sint8korr(A) (*((int64_t *) (A))) #define int2store(T,A) *((uint16_t*) (T))= (uint16_t) (A) #define int3store(T,A) { *(T)= (zend_uchar) ((A));\ *(T+1)=(zend_uchar) (((uint32_t) (A) >> 8));\ *(T+2)=(zend_uchar) (((A) >> 16)); } #define int4store(T,A) *((int32_t *) (T))= (int32_t) (A) #define int5store(T,A) { *(T)= (zend_uchar)((A));\ *((T)+1)=(zend_uchar) (((A) >> 8));\ *((T)+2)=(zend_uchar) (((A) >> 16));\ *((T)+3)=(zend_uchar) (((A) >> 24)); \ *((T)+4)=(zend_uchar) (((A) >> 32)); } #define int8store(T,A) *((uint64_t *) (T))= (uint64_t) (A) #define float8get(V,M) { *((int32_t *) &V) = *((int32_t*) M); \ *(((int32_t *) &V)+1) = *(((int32_t*) M)+1); } #define float8store(T,V) { *((int32_t *) T) = *((int32_t*) &V); \ *(((int32_t *) T)+1) = *(((int32_t*) &V)+1); } #define float4get(V,M) { *((int32_t *) &(V)) = *((int32_t*) (M)); } #endif /* _WIN64 */ #endif /* _MYSQLND_CONFIG_WIN_H */
Close