-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbase_local_rules.php
199 lines (184 loc) · 4.74 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
<?php
$sc = DIRECTORY_SEPARATOR;
require_once("includes$sc" . 'base_krnl.php');
include_once ("$BASE_path/includes/base_include.inc.php");
$rv = false;
if( is_key('external_sig_link',$GLOBALS) ){
$dir = $GLOBALS['external_sig_link']['local_rules_dir'][0];
}else{
$dir = 'rules/';
}
if ( isset($_GET['sid']) ){
$sid = $_GET['sid'];
}
$ODir = XSSPrintSafe($dir);
$OSid = XSSPrintSafe($sid);
if ( $debug_mode > 0 ){
ErrorMessage($ODir,'black',1);
ErrorMessage($OSid,'black',1);
}
function print_element($item, $key)
{
echo "<BR><BR>\n\n-------\n" . htmlspecialchars($item) . "\n--------\n\n<BR><BR>";
}
function pcre_grep_file( $file, $sid ){
$EMPfx = __FUNCTION__ . ': ERROR: ';
if ( !LoadedString($file) ){
ErrorMessage($EMPfx ."file is empty.", 0, 1);
return FALSE;
}
if ( !LoadedString($sid) ){
ErrorMessage($EMPfx ."sid is empty.", 0, 1);
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;
$EMPfx = __FUNCTION__ . ': ERROR: ';
$rv = FALSE;
if ( !LoadedString($file) ){
ErrorMessage($EMPfx ."file is empty.", 0, 1);
return FALSE;
}
if ( !LoadedString($sid) ){
ErrorMessage($EMPfx ."sid is empty.", 0, 1);
return FALSE;
}
$OFile = XSSPrintSafe($file);
$tmp = ChkAccess($file);
if ( $tmp < 1 ){
$EMsg = $EMPfx . XSSPrintSafe('"' . $OFile . '"') . ' not ';
if( $tmp == 0 ){
$EMsg .= 'file';
}elseif( $tmp == -1 ){
$EMsg .= 'found';
}elseif( $tmp == -2 ){
$EMsg .= 'readable';
}
$$EMsg .= '. Ignoring this file.';
ErrorMessage($EMsg, 0, 1);
return FALSE;
}
$pattern = "/^(?:[ \t]*)(?:alert|log|drop).*?sid:[ \t]*$sid(?:[ \t]*);.*$/i";
$return_value = false;
$lines_array = file($file);
if ( $debug_mode > 1 ){
echo "Pattern = \"" . htmlspecialchars($pattern) . "\"\n<BR>";
}
foreach ( $lines_array as $val ){ // Issue #153
$rv = preg_match($pattern, $val, $matches);
if ( $rv ){
echo "<TH ALIGN=LEFT>$OFile:</TH>\n";
echo "<TR>\n";
foreach ( $matches as $rule ){ // Issue #153
echo '<td>'. XSSPrintSafe($rule) .'</td>';
}
echo "</TR>\n";
$return_value = true;
}
}
return $return_value;
}
function search_dir($dir, $sid){
GLOBAL $debug_mode;
$EMPfx = __FUNCTION__ . ': ERROR: ';
$sc = DIRECTORY_SEPARATOR;
$rv = FALSE;
if ( !LoadedString($dir) ){
ErrorMessage($EMPfx . 'dir is empty.', 0, 1);
return FALSE;
}
if ( !LoadedString($sid) ){
ErrorMessage($EMPfx . 'sid is empty.', 0, 1);
return FALSE;
}
if( $debug_mode > 1 ){
ErrorMessage(
'In front of glob, with $dir = ' . XSSPrintSafe($dir), 'black', 1
);
}
$OF = XSSPrintSafe($filename);
foreach ( glob($dir . $sc . "*") as $filename ){
if ( $debug_mode > 1 ){
echo "Filename: $OF ";
}
if( ChkAccess($filename,'d') > 0 ){
search_dir($filename, $sid);
}else{
$tmp = ChkAccess($filename);
if( $tmp > 0 ){
if( pcre_grep_file_poor($filename, '', $sid) ){
$rv = true;
if( $debug_mode > 0 ){
print 'Found.<br/>';
}
break;
}
}else{
$EMsg = $EMPfx . '"' . $OF . '" not ';
if( $tmp == 0 ){
$EMsg .= 'file';
}elseif( $tmp == -1 ){
$EMsg .= 'found';
}elseif( $tmp == -2 ){
$EMsg .= 'readable';
}
$$EMsg .= '. Ignoring this file.';
ErrorMessage($EMsg, 0, 1);
}
}
}
return $rv;
}
############# main() ##############
AuthorizedRole(10000);
PrintBASESubHeader('Local Rule Lookup');
$tmp = ChkAccess($dir, 'd') > 0
if ( $tmp > 1 ){
echo "<H1>sid: $OSid</H1>\n";
if( $debug_mode > 0 ){
ErrorMessage('Calling search_dir()...',0,1);
}
echo "<TABLE>\n";
$rv = search_dir($dir, $sid);
echo "</TABLE>\n";
if( $rv ){
if( $debug_mode ){
echo "Ok. Found.\n<BR>";
}
}else{
ErrorMessage("Sig Not found: \"sig: $OSid\" in directory \"$ODir\"."
, 0, 1);
}
}elseif( $tmp > 0 ){
$EMsg = XSSPrintSafe('ERROR: Directory "' . $ODir . '" not ').
'searchable. It must be executable. (required by the web server).';
ErrorMessage($EMsg, 0, 1);
}else{
$EMsg = XSSPrintSafe('ERROR: Directory "' . $ODir . '" not ');
if( $tmp == 0 ){
$EMsg .= 'dir';
}elseif( $tmp == -1 ){
$EMsg .= 'found';
}elseif( $tmp == -2 ){
$EMsg .= 'readable';
}
$$EMsg .= '.';
ErrorMessage($EMsg, 0, 1);
if( $tmp == -2 ){
$EMsg = '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 PHP glob() command.';
ErrorMessage($EMsg, black, 1);
}
}
PrintBASESubFooter();
?>