Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
fileinfo /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:24
libmagic
[ DIR ]
drwxrwxr-x
2024-03-12 14:26
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
92
B
-rw-rw-r--
2022-10-31 11:36
Makefile.frag
58
B
-rw-rw-r--
2022-10-31 11:36
config.m4
1.5
KB
-rw-rw-r--
2022-10-31 11:36
config.w32
533
B
-rw-rw-r--
2022-10-31 11:36
create_data_file.php
472
B
-rwxrwxr-x
2022-10-31 11:36
data_file.c
32.47
MB
-rw-rw-r--
2022-10-31 11:36
fileinfo.c
16.33
KB
-rw-rw-r--
2022-10-31 11:36
fileinfo.lo
328
B
-rw-r--r--
2024-03-12 14:25
fileinfo.o
122.26
KB
-rw-r--r--
2024-03-12 14:25
generate_patch.sh
358
B
-rwxrwxr-x
2022-10-31 11:36
libmagic.patch
87.83
KB
-rw-rw-r--
2022-10-31 11:36
magicdata.patch
4.71
KB
-rw-rw-r--
2022-10-31 11:36
php_fileinfo.h
1.65
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.0 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_0.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: Ilia Alshanetsky <ilia@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_FILEINFO_H #define PHP_FILEINFO_H extern zend_module_entry fileinfo_module_entry; #define phpext_fileinfo_ptr &fileinfo_module_entry #define PHP_FILEINFO_VERSION PHP_VERSION #ifdef PHP_WIN32 #define PHP_FILEINFO_API __declspec(dllexport) #else #define PHP_FILEINFO_API #endif #ifdef ZTS #include "TSRM.h" #endif PHP_MINFO_FUNCTION(fileinfo); PHP_FUNCTION(finfo_open); PHP_FUNCTION(finfo_close); PHP_FUNCTION(finfo_set_flags); PHP_FUNCTION(finfo_file); PHP_FUNCTION(finfo_buffer); PHP_FUNCTION(mime_content_type); #endif /* PHP_FILEINFO_H */