File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,19 +8,19 @@ public function call($env)
8
8
{
9
9
list ($ status ,$ headers ,$ body ) = $ this ->app ->call ($ env );
10
10
$ req = new \Rackem \Request ($ env );
11
- if ($ this ->has_vector ($ req , $ headers )) {
11
+ if ($ this ->has_vector ($ req , $ headers )) {
12
12
$ result = $ this ->react ($ env );
13
13
$ this ->warn ($ env , "attack prevented by " .get_class ($ this ));
14
14
}
15
- return isset ($ result )? $ result : array ($ status ,$ headers ,$ body );
16
- }
15
+ return isset ($ result )? $ result : array ($ status ,$ headers ,$ body );
16
+ }
17
17
18
18
public function has_vector ($ req , $ headers )
19
19
{
20
20
if ($ req ->is_xhr ()) return false ;
21
21
22
- $ content_type = isset ($ headers ['Content-Type ' ])? explode ('; ' ,$ headers ['Content-Type ' ],2 ) : array ('' );
23
- if (!preg_match ('/^\s*application\/json\s*$/ ' ,array_shift ($ content_type ))) return false ;
22
+ $ content_type = isset ($ headers ['Content-Type ' ])? explode ('; ' ,$ headers ['Content-Type ' ],2 ) : array ('' );
23
+ if (!preg_match ('/^\s*application\/json\s*$/ ' ,array_shift ($ content_type ))) return false ;
24
24
25
25
return $ this ->referrer ($ req ->env ) != $ req ->host ();
26
26
}
You can’t perform that action at this time.
0 commit comments