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.118.173.146
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 /
81 /
src /
ext /
curl /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
CREDITS
21
B
-rw-r--r--
config.m4
2.14
KB
-rw-r--r--
config.w32
1.4
KB
-rw-r--r--
curl.stub.php
2.86
KB
-rw-r--r--
curl_arginfo.h
9.18
KB
-rw-r--r--
curl_file.c
4.5
KB
-rw-r--r--
curl_file.stub.php
951
B
-rw-r--r--
curl_file_arginfo.h
5.11
KB
-rw-r--r--
curl_private.h
4.52
KB
-rw-r--r--
interface.c
109.94
KB
-rw-r--r--
multi.c
14.74
KB
-rw-r--r--
php_curl.h
1.77
KB
-rw-r--r--
share.c
4.41
KB
-rw-r--r--
sync-constants.php
7.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : php_curl.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: | | https://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: Sterling Hughes <sterling@php.net> | | Wez Furlong <wez@thebrainroom.com> | +----------------------------------------------------------------------+ */ #ifndef _PHP_CURL_H #define _PHP_CURL_H #include "php.h" #ifdef PHP_WIN32 # ifdef PHP_CURL_EXPORTS # define PHP_CURL_API __declspec(dllexport) # else # define PHP_CURL_API __declspec(dllimport) # endif #elif defined(__GNUC__) && __GNUC__ >= 4 # define PHP_CURL_API __attribute__ ((visibility("default"))) #else # define PHP_CURL_API #endif extern zend_module_entry curl_module_entry; #define phpext_curl_ptr &curl_module_entry PHP_CURL_API extern zend_class_entry *curl_ce; PHP_CURL_API extern zend_class_entry *curl_share_ce; PHP_CURL_API extern zend_class_entry *curl_multi_ce; PHP_CURL_API extern zend_class_entry *curl_CURLFile_class; PHP_CURL_API extern zend_class_entry *curl_CURLStringFile_class; #endif /* _PHP_CURL_H */
Close