OSDN Git Service

0e8750960758aa3829c6152325885fc07d19e508
[pukiwiki/pukiwiki_sandbox.git] / spam.php
1 <?php
2 // $Id: spam.php,v 1.16 2006/11/12 11:21:57 henoheno Exp $
3 // Copyright (C) 2006 PukiWiki Developers Team
4 // License: GPL v2 or (at your option) any later version
5
6 // Functions for Concept-work of spam-uri metrics
7
8 // Return an array of URIs in the $string
9 // [OK] http://nasty.example.org#nasty_string
10 // [OK] http://nasty.example.org/foo/xxx#nasty_string/bar
11 // [OK] ftp://dfshodfs:80/dfsdfs
12 function uri_pickup($string = '', $normalize = TRUE)
13 {
14         // Not available for: user@password, IDN, Fragment(=ignored)
15         $array = array();
16         preg_match_all(
17                 // Refer RFC3986
18                 '#(\b[a-z][a-z0-9.+-]{1,8})://' .       // 1: Scheme
19                 '(' .
20                         // 2: Host
21                         '\[[0-9a-f:.]+\]' . '|' .                               // IPv6([colon-hex and dot]): RFC2732
22                         '(?:[0-9]{1-3}\.){3}[0-9]{1-3}' . '|' . // IPv4(dot-decimal): 001.22.3.44
23                         '[^\s<>"\'\[\]:/\#?]+' .                                // FQDN: foo.example.org
24                 ')' .
25                 '(?::([a-z0-9]{2,}))?' .                        // 3: Port
26                 '((?:/+[^\s<>"\'\[\]/\#]+)*/+)?' .      // 4: Directory path or path-info
27                 '([^\s<>"\'\[\]\#]+)?' .                        // 5: File and query string
28                                                                                         // #: Fragment(ignored)
29                 '#i',
30                  $string, $array, PREG_SET_ORDER | PREG_OFFSET_CAPTURE);
31         //var_dump(recursive_map('htmlspecialchars', $array));
32
33         // Shrink $array
34         $parts = array(1 => 'scheme', 2 => 'host', 3 => 'port',
35                 4 => 'path', 5 => 'file');
36         $default = array('');
37         foreach(array_keys($array) as $uri) {
38                 unset($array[$uri][0]); // Matched string itself
39                 array_rename_keys($array[$uri], $parts, TRUE, $default);
40                 $offset = $array[$uri]['scheme'][1]; // Scheme's offset
41
42                 // Remove offsets for each part
43                 if ($normalize) {
44                         foreach(array_keys($array[$uri]) as $part) {
45                                 $array[$uri][$part] = strtolower($array[$uri][$part][0]);
46                         }
47                         $array[$uri]['path'] = path_normalize($array[$uri]['path']);
48                 } else {
49                         foreach(array_keys($array[$uri]) as $part) {
50                                 $array[$uri][$part] = & $array[$uri][$part][0];
51                         }
52                 }
53                 $array[$uri]['offset'] = $offset;
54                 $array[$uri]['area']   = 0;
55         }
56
57         return $array;
58 }
59
60 // Preprocess: rawurldecode() and adding space(s) to detect/count some URIs if possible
61 // NOTE: It's maybe danger to var_dump() these results.
62 // [OK] http://victim.example.org/go?http%3A%2F%2Fnasty.example.org
63 // [OK] http://victim.example.org/http://nasty.example.org
64 function spam_uri_pickup_preprocess($string = '')
65 {
66         if (is_string($string)) {
67                 return preg_replace(
68                         array(
69                                 '#(?:https?|ftp):/#',
70                                 '#\b[a-z][a-z0-9.+-]{1,8}://#i',
71                                 '#[a-z][a-z0-9.+-]{1,8}://#i'
72                         ),
73                         ' $0',
74                         rawurldecode($string)
75                         );
76         } else {
77                 return '';
78         }
79 }
80
81 // Main function of spam-uri pickup
82 function spam_uri_pickup($string = '')
83 {
84         $string = spam_uri_pickup_preprocess($string);
85
86         $array  = uri_pickup($string);
87
88         // Area elevation for '(especially external)link' intension
89         if (! empty($array)) {
90                 // Anchor tags by preg_match_all()
91                 // [OK] <a href="http://nasty.example.com">visit http://nasty.example.com/</a>
92                 // [OK] <a href=\'http://nasty.example.com/\' >discount foobar</a> 
93                 // [NG] <a href="http://ng.example.com">visit http://ng.example.com _not_ended_
94                 // [NG] <a href=  >Good site!</a> <a href= "#" >test</a>
95                 $areas = array();
96                 preg_match_all('#<a\b[^>]*href[^>]*>.*?</a\b[^>]*(>)#i',
97                          $string, $areas, PREG_SET_ORDER | PREG_OFFSET_CAPTURE);
98                 //var_dump(recursive_map('htmlspecialchars', $areas));
99                 foreach(array_keys($areas) as $area) {
100                         $areas[$area] =  array(
101                                 $areas[$area][0][1], // [0][1] = Area start (<a href>)
102                                 $areas[$area][1][1], // [1][1] = Area end   (</a>)
103                         );
104                 }
105                 area_measure($areas, $array);
106
107                 // phpBB's "BBCode" by preg_match_all()
108                 // [url]http://nasty.example.com/[/url]
109                 // [link]http://nasty.example.com/[/link]
110                 // [url=http://nasty.example.com]visit http://nasty.example.com/[/url]
111                 // [link http://nasty.example.com/]buy something[/link]
112                 // ?? [url=][/url]
113                 $areas = array();
114                 preg_match_all('#\[(url|link)\b[^\]]*\].*?\[/\1\b[^\]]*(\])#i',
115                          $string, $areas, PREG_SET_ORDER | PREG_OFFSET_CAPTURE);
116                 //var_dump(recursive_map('htmlspecialchars', $areas));
117                 foreach(array_keys($areas) as $area) {
118                         $areas[$area] = array(
119                                 $areas[$area][0][1], // [0][1] = Area start ([url])
120                                 $areas[$area][2][1], // [4][1] = Area end   ([/url])
121                         );
122                 }
123                 area_measure($areas, $array);
124
125                 // Various Wiki syntax
126                 // [text_or_uri>text_or_uri]
127                 // [text_or_uri:text_or_uri]
128                 // [text_or_uri|text_or_uri]
129                 // [text_or_uri->text_or_uri]
130                 // [text_or_uri text_or_uri] // MediaWiki
131                 // MediaWiki: [http://nasty.example.com/ visit http://nasty.example.com/]
132
133                 // Remove 'offset's for area_measure()
134                 //foreach(array_keys($array) as $key)
135                 //      unset($array[$key]['offset']);
136         }
137
138         return $array;
139 }
140
141 // $array['something'] => $array['wanted']
142 function array_rename_keys(& $array, $keys = array('from' => 'to'), $force = FALSE, $default = '')
143 {
144         if (! is_array($array) || ! is_array($keys))
145                 return FALSE;
146
147         // Nondestructive test
148         if (! $force)
149                 foreach(array_keys($keys) as $from)
150                         if (! isset($array[$from]))
151                                 return FALSE;
152
153         foreach($keys as $from => $to) {
154                 if ($from === $to) continue;
155                 if (! $force || isset($array[$from])) {
156                         $array[$to] = & $array[$from];
157                         unset($array[$from]);
158                 } else  {
159                         $array[$to] = $default;
160                 }
161         }
162
163         return TRUE;
164 }
165
166 // If in doubt, it's a little doubtful
167 function area_measure($areas, & $array, $belief = -1, $a_key = 'area', $o_key = 'offset')
168 {
169         if (! is_array($areas) || ! is_array($array)) return;
170
171         $areas_keys = array_keys($areas);
172         foreach(array_keys($array) as $u_index) {
173                 $offset = isset($array[$u_index][$o_key]) ?
174                         intval($array[$u_index][$o_key]) : 0;
175                 foreach($areas_keys as $a_index) {
176                         if (isset($array[$u_index][$a_key])) {
177                                 $offset_s = intval($areas[$a_index][0]);
178                                 $offset_e = intval($areas[$a_index][1]);
179                                 // [Area => inside <= Area]
180                                 if ($offset_s < $offset && $offset < $offset_e) {
181                                         $array[$u_index][$a_key] += $belief;
182                                 }
183                         }
184                 }
185         }
186 }
187
188
189 // ---------------------
190 // Part Two
191
192 // Path normalization
193 // example.org => example.org/
194 // example.org#hoge -> example.org/#hoge
195 // example.org/path/a/b/./c////./d -> example.org/path/a/b/c/d
196 // example.org/path/../../a/../back
197 function path_normalize($path = '', $divider = '/', $addroot = TRUE)
198 {
199         if (! is_string($path) || $path == '') {
200                 $path = $addroot ? $divider : '';
201         } else {
202                 $path = trim($path);
203                 $last = ($path[strlen($path) - 1] == $divider) ? $divider : '';
204                 $array = explode($divider, $path);
205
206                 // Remove paddings
207                 foreach(array_keys($array) as $key) {
208                         if ($array[$key] == '' || $array[$key] == '.')
209                                  unset($array[$key]);
210                 }
211                 // Back-track
212                 $tmp = array();
213                 foreach($array as $value) {
214                         if ($value == '..') {
215                                 array_pop($tmp);
216                         } else {
217                                 array_push($tmp, $value);
218                         }
219                 }
220                 $array = & $tmp;
221
222                 $path = $addroot ? $divider : '';
223                 if (! empty($array)) $path .= implode($divider, $array) . $last;
224         }
225
226         return $path;
227 }
228
229 // Input: '/a/b'
230 // Output: array('' => array('a' => array('b' => NULL)))
231 function array_tree($string, $delimiter = '/', $reverse = FALSE)
232 {
233         // Create a branch
234         $tree = NULL;
235         $tmps = explode($delimiter, $string);
236         if (! $reverse) $tmps = array_reverse($tmps);
237         foreach ($tmps as $tmp) {
238                 $tree = array($tmp => $tree);
239         }
240         return $tree;
241 }
242
243
244 // ---------------------
245 // Part One : Checker
246
247 // Simple/fast spam check
248 function is_uri_spam($target = '')
249 {
250         $is_spam = FALSE;
251         $urinum = 0;
252
253         if (is_array($target)) {
254                 foreach($target as $str) {
255                         // Recurse
256                         list($is_spam, $_urinum) = is_uri_spam($str);
257                         $urinum += $_urinum;
258                         if ($is_spam) break;
259                 }
260         } else {
261                 $pickups = spam_uri_pickup($target);
262                 $urinum += count($pickups);
263                 if (! empty($pickups)) {
264                         // Some users want to post some URLs, but ...
265                         if ($urinum > 8) {
266                                 $is_spam = TRUE;        // Too many!
267                         } else {
268                                 foreach($pickups as $pickup) {
269                                         if ($pickup['area'] < 0) {
270                                                 $is_spam = TRUE;
271                                                 break;
272                                         }
273                                 }
274                         }
275                 }
276         }
277
278         return array($is_spam, $urinum);
279 }
280
281 // ---------------------
282
283 // Check User-Agent
284 function is_invalid_useragent($ua_name = '' /*, $ua_vars = ''*/ )
285 {
286         return $ua_name === '';
287 }
288
289 // ---------------------
290
291 // Mail to administrator with more measurement data?
292 // Simple/fast spam filter (for one text field)
293 function pkwk_spamfilter($action, $page, $target = array('title' => ''))
294 {
295         $is_spam = FALSE;
296
297         //$is_spam =  is_invalid_useragent('NOTYET');
298         if ($is_spam) {
299                 $action .= ' (Invalid User-Agent)';
300         } else {
301                 list($is_spam) = is_uri_spam($target);
302         }
303
304         if ($is_spam) {
305                 // Mail to administrator(s)
306                 global $notify, $notify_subject;
307                 if ($notify) {
308                         $footer['ACTION'] = $action;
309                         $footer['PAGE']   = '[blocked] ' . $page;
310                         $footer['URI']    = get_script_uri() . '?' . rawurlencode($page);
311                         $footer['USER_AGENT']  = TRUE;
312                         $footer['REMOTE_ADDR'] = TRUE;
313                         pkwk_mail_notify($notify_subject,  var_export($target, TRUE), $footer);
314                         unset($footer);
315                 }
316         }
317
318         if ($is_spam) spam_exit();
319 }
320
321 // ---------------------
322
323 // Common bahavior for blocking
324 // NOTE: Call this function from various blocking feature, to disgueise the reason 'why blocked'
325 function spam_exit()
326 {
327         die("\n");
328 }
329
330 ?>