Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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
/
usr /
local /
src /
xcache-3.2.0 /
xcache /
[ HOME SHELL ]
Name
Size
Permission
Action
.libs
[ DIR ]
drwxr-xr-x
README
15
B
-rw-rw-r--
xc_allocator.c
2.72
KB
-rw-rw-r--
xc_allocator.h
2.91
KB
-rw-rw-r--
xc_allocator.lo
322
B
-rw-r--r--
xc_allocator_bestfit.c
7.7
KB
-rw-rw-r--
xc_allocator_bestfit.lo
338
B
-rw-r--r--
xc_compatibility.c
726
B
-rw-rw-r--
xc_compatibility.h
8.2
KB
-rw-rw-r--
xc_compatibility.lo
330
B
-rw-r--r--
xc_const_string.c
2.21
KB
-rw-rw-r--
xc_const_string.h
270
B
-rw-rw-r--
xc_const_string.lo
328
B
-rw-r--r--
xc_const_string_opcodes_php4.x...
2.51
KB
-rw-rw-r--
xc_const_string_opcodes_php5.0...
3.36
KB
-rw-rw-r--
xc_const_string_opcodes_php5.1...
3.37
KB
-rw-rw-r--
xc_const_string_opcodes_php5.2...
3.37
KB
-rw-rw-r--
xc_const_string_opcodes_php5.3...
3.5
KB
-rw-rw-r--
xc_const_string_opcodes_php5.4...
3.62
KB
-rw-rw-r--
xc_const_string_opcodes_php5.5...
3.75
KB
-rw-rw-r--
xc_const_string_opcodes_php5.6...
3.84
KB
-rw-rw-r--
xc_const_string_opcodes_php6.x...
3.62
KB
-rw-rw-r--
xc_extension.c
1.77
KB
-rw-rw-r--
xc_extension.h
578
B
-rw-rw-r--
xc_extension.lo
322
B
-rw-r--r--
xc_ini.c
606
B
-rw-rw-r--
xc_ini.h
457
B
-rw-rw-r--
xc_ini.lo
310
B
-rw-r--r--
xc_malloc.c
5.37
KB
-rw-rw-r--
xc_mutex.c
8.2
KB
-rw-rw-r--
xc_mutex.h
546
B
-rw-rw-r--
xc_mutex.lo
314
B
-rw-r--r--
xc_opcode_spec.c
1.27
KB
-rw-rw-r--
xc_opcode_spec.h
905
B
-rw-rw-r--
xc_opcode_spec.lo
326
B
-rw-r--r--
xc_opcode_spec_def.h
20.75
KB
-rw-rw-r--
xc_processor.c
28
B
-rw-rw-r--
xc_processor.lo
322
B
-rw-r--r--
xc_sandbox.c
13.57
KB
-rw-rw-r--
xc_sandbox.h
1.01
KB
-rw-rw-r--
xc_sandbox.lo
318
B
-rw-r--r--
xc_shm.c
2.01
KB
-rw-rw-r--
xc_shm.h
2.16
KB
-rw-rw-r--
xc_shm.lo
310
B
-rw-r--r--
xc_shm_mmap.c
6.65
KB
-rw-rw-r--
xc_shm_mmap.lo
320
B
-rw-r--r--
xc_utils.c
16.71
KB
-rw-rw-r--
xc_utils.h
2.43
KB
-rw-rw-r--
xc_utils.lo
314
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xc_const_string.c
#include "xcache.h" #include "xc_const_string.h" /* {{{ xc_get_op_type */ static const char *const op_type_names[] = { /* 0 */ "NULL?", /* 1 */ "IS_CONST", /* 2 */ "IS_TMP_VAR", /* 3 */ NULL, /* 4 */ "IS_VAR", /* 5 */ NULL, /* 6 */ NULL, /* 7 */ NULL, /* 8 */ "IS_UNUSED", #ifdef IS_CV /* 9 */ NULL, /* 10 */ NULL, /* 11 */ NULL, /* 12 */ NULL, /* 13 */ NULL, /* 14 */ NULL, /* 15 */ NULL, /* 16 */ "IS_CV" #endif }; zend_uchar xc_get_op_type_count() { return sizeof(op_type_names) / sizeof(op_type_names[0]); } const char *xc_get_op_type(zend_uchar op_type) { assert(op_type < xc_get_op_type_count()); return op_type_names[op_type]; } /* }}} */ /* {{{ xc_get_data_type */ static const char *const data_type_names[] = { /* 0 */ "IS_NULL", /* 1 */ "IS_LONG", /* 2 */ "IS_DOUBLE", #ifdef ZEND_ENGINE_2_1 /* 3 */ "IS_BOOL", #else /* 6 */ "IS_STRING", #endif /* 4 */ "IS_ARRAY", /* 5 */ "IS_OBJECT", #ifdef ZEND_ENGINE_2_1 /* 6 */ "IS_STRING", #else /* 3 */ "IS_BOOL", #endif /* 7 */ "IS_RESOURCE", /* 8 */ "IS_CONSTANT", /* 9 */ "IS_CONSTANT_ARRAY", /* 10 */ "IS_UNICODE" }; zend_uchar xc_get_data_type_count() { return sizeof(data_type_names) / sizeof(data_type_names[0]); } const char *xc_get_data_type(zend_uchar data_type) { return data_type_names[(data_type & IS_CONSTANT_TYPE_MASK)]; } /* }}} */ /* {{{ xc_get_opcode */ #if PHP_MAJOR_VERSION >= 6 # include "xc_const_string_opcodes_php6.x.h" #elif defined(ZEND_ENGINE_2_6) # include "xc_const_string_opcodes_php5.6.h" #elif defined(ZEND_ENGINE_2_5) # include "xc_const_string_opcodes_php5.5.h" #elif defined(ZEND_ENGINE_2_4) # include "xc_const_string_opcodes_php5.4.h" #elif defined(ZEND_ENGINE_2_3) # include "xc_const_string_opcodes_php5.3.h" #elif defined(ZEND_ENGINE_2_2) # include "xc_const_string_opcodes_php5.2.h" #elif defined(ZEND_ENGINE_2_1) # include "xc_const_string_opcodes_php5.1.h" #elif defined(ZEND_ENGINE_2) # include "xc_const_string_opcodes_php5.0.h" #else # include "xc_const_string_opcodes_php4.x.h" #endif zend_uchar xc_get_opcode_count() { return sizeof(xc_opcode_names) / sizeof(xc_opcode_names[0]); } const char *xc_get_opcode(zend_uchar opcode) { assert(opcode < xc_get_opcode_count()); return xc_opcode_names[opcode]; } /* }}} */
Close