forked from bizonix/evalhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevalhook.c
More file actions
103 lines (89 loc) · 2.85 KB
/
Copy pathevalhook.c
File metadata and controls
103 lines (89 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2010 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: Stefan Esser |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "zend_compile.h"
#include "php_evalhook.h"
zend_module_entry evalhook_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"evalhook",
NULL,
PHP_MINIT(evalhook),
PHP_MSHUTDOWN(evalhook),
NULL,
NULL,
PHP_MINFO(evalhook),
#if ZEND_MODULE_API_NO >= 20010901
"0.1",
#endif
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_EVALHOOK
ZEND_GET_MODULE(evalhook)
#endif
static zend_op_array *(*orig_compile_string)(zend_string *source_string, const char *filename, zend_compile_position pos);
static zend_bool evalhook_hooked = 0;
static zend_op_array *evalhook_compile_string(zend_string *source_string, const char *filename, zend_compile_position pos)
{
int c, yes;
printf("Script tries to evaluate the following string.\n");
printf("----\n");
printf("%s\n", ZSTR_VAL(source_string));
printf("----\nDo you want to allow execution? [y/N]\n");
yes = 0;
while (1) {
c = getchar();
if (c == '\n') break;
if (c == 'y' || c == 'Y') {
yes = 1;
}
}
if (yes) {
return orig_compile_string(source_string, filename, pos);
}
zend_error(E_ERROR, "evalhook: script abort due to disallowed eval()");
}
PHP_MINIT_FUNCTION(evalhook)
{
if (evalhook_hooked == 0) {
evalhook_hooked = 1;
orig_compile_string = zend_compile_string;
zend_compile_string = evalhook_compile_string;
}
return SUCCESS;
}
PHP_MSHUTDOWN_FUNCTION(evalhook)
{
if (evalhook_hooked == 1) {
evalhook_hooked = 0;
zend_compile_string = orig_compile_string;
}
return SUCCESS;
}
PHP_MINFO_FUNCTION(evalhook)
{
php_info_print_table_start();
php_info_print_table_header(2, "evalhook support", "enabled");
php_info_print_table_end();
}