This repository was archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase_local_rules.php
237 lines (178 loc) · 4.12 KB
/
base_local_rules.php
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
include_once ("base_conf.php");
include_once ("$BASE_path/includes/base_constants.inc.php");
include_once ("$BASE_path/includes/base_include.inc.php");
$rv = false;
// $dir = @$_GET['dir'];
$dir = $GLOBALS['external_sig_link']['local_rules_dir'][0];
$sid = @$_GET['sid'];
if ($debug_mode > 0)
{
echo "dir = \"$dir\"<BR>\n";
echo "sid = \"$sid\"<BR>\n";
}
function print_element($item, $key)
{
echo "<BR><BR>\n\n-------\n" . htmlspecialchars($item) . "\n--------\n\n<BR><BR>";
}
function pcre_grep_file($file, $sid)
{
if ($file == "")
{
echo "ERROR: file is empty.";
return FALSE;
}
if ($sid == "")
{
echo "ERROR: sid is empty.";
return FALSE;
}
# This pattern per se does work for rules which stretch over several lines.
# However, it crashes php: Segmentation fault.
$pattern = "/^(?:[ \t]*)(?:alert|log|drop)(?:.|\n)*sid:[ \t]*$sid(?:[ \t]*);(?:.|\n)*?[^\\\]$/ims";
$lines = file_get_contents($file);
$rv = preg_match($pattern, $lines, $matches);
print_r($matches);
#array_walk($matches, 'print_element');
return $rv;
}
function pcre_grep_file_poor($file, $key, $sid)
{
GLOBAL $debug_mode;
$rv = FALSE;
if ($file == "")
{
echo "ERROR: file is empty.";
return FALSE;
}
if ($sid == "")
{
echo "ERROR: sid is empty.";
return FALSE;
}
if (!is_readable($file))
{
echo "ERROR: \"" . htmlspecialchars($file) . "\" is not readable. Ignoring this file.\n<BR>";
return FALSE;
}
$pattern = "/^(?:[ \t]*)(?:alert|log|drop).*?sid:[ \t]*$sid(?:[ \t]*);.*$/i";
$return_value = false;
$lines_array = file($file);
if ($debug_mode > 0)
{
echo "file = \"" . htmlspecialchars($file) . "\", pattern = \"" . htmlspecialchars($pattern) . "\"\n<BR>";
}
while (list($key, $val) = each($lines_array))
{
$rv = preg_match($pattern, $val, $matches);
if ($rv)
{
echo "<TH ALIGN=LEFT>" . htmlspecialchars($file) . ":</TH>\n";
echo "<TR><TD>\n";
while (list($k, $rule) = each($matches))
{
echo htmlspecialchars($rule);
echo "\n";
}
echo "</TD></TR>\n";
$return_value = true;
}
}
return $return_value;
}
function search_dir($dir, $sid)
{
GLOBAL $debug_mode;
$rv = FALSE;
if ($dir == "")
{
echo "ERROR: dir is empty.\n";
return FALSE;
}
if ($sid == "")
{
echo "ERROR: sid is empty.\n";
return FALSE;
}
if ($debug_mode > 1)
{
echo "In front of glob, with \$dir = " . htmlspecialchars($dir) . "\n<BR>";
}
foreach (glob($dir . DIRECTORY_SEPARATOR . "*") as $filename)
{
if ($debug_mode > 0)
{
echo "filename = " . htmlspecialchars($filename) . "\n";
}
if (filetype($filename) == "dir")
{
search_dir($filename, $sid);
}
else
{
if (is_readable($filename))
{
if (pcre_grep_file_poor($filename, "", $sid))
{
$rv = true;
if ($debug_mode > 0)
{
echo "Found\n<BR>";
}
}
}
else
{
echo "ERROR: \"" . htmlspecialchars($dir) ."/" . htmlspecialchars($filename) . "\" is not readable. Ignoring this file.";
}
}
}
return $rv;
}
############# main() ##############
echo "<HTML>\n";
echo "<TITLE></TITLE>\n";
echo "<BODY>\n";
if (file_exists($dir))
{
if (is_executable($dir))
{
if (is_readable($dir))
{
echo "<H1>sid:" . htmlspecialchars($sid) . ";</H1>\n";
if ($debug_mode > 0)
{
echo "Calling search_dir()...\n<BR>";
}
echo "<TABLE>\n";
$rv = search_dir($dir, $sid);
echo "</TABLE>\n";
if ($rv)
{
if ($debug_mode)
{
echo "Ok. Found.\n<BR>";
}
}
else
{
echo "ERROR: Could not find \"sig:" . htmlspecialchars($sid) . ";\" in directory \"". htmlspecialchars($dir) . "\".\n<BR>";
}
}
else
{
echo "ERROR: Directory " . htmlspecialchars($dir) . " can not be searched. It must also be readable for the user the web server is running as. However, this is not required by the web server per se, but by the glob() command of php.\n<BR>";
}
}
else
{
echo "ERROR: Directory \"" . htmlspecialchars($dir) . "\" can not be searched. It must be executable (required by the web server).\n<BR>";
}
}
else
{
echo "ERROR: Directory \"" . htmlspecialchars($dir) . "\" does not exist.\n<BR>";
}
echo "</BODY>";
echo "</HTML>";
?>