mirror of
https://github.com/YGGverse/next.git
synced 2025-01-11 23:58:26 +00:00
sanitize request string
This commit is contained in:
parent
d96e876329
commit
7b0895f9af
@ -82,7 +82,10 @@ class Nex implements MessageComponentInterface
|
||||
|
||||
// Filter request
|
||||
$request = trim(
|
||||
$request
|
||||
filter_var(
|
||||
$request,
|
||||
FILTER_SANITIZE_URL
|
||||
)
|
||||
);
|
||||
|
||||
// Build absolute realpath
|
||||
@ -165,16 +168,8 @@ class Nex implements MessageComponentInterface
|
||||
(string) date('c'),
|
||||
(string) $connection->remoteAddress,
|
||||
(string) $connection->resourceId,
|
||||
(string) str_replace(
|
||||
'%',
|
||||
'%%',
|
||||
$request
|
||||
),
|
||||
(string) str_replace(
|
||||
'%',
|
||||
'%%',
|
||||
$realpath
|
||||
),
|
||||
(string) $request,
|
||||
(string) $realpath,
|
||||
(string) mb_strlen(
|
||||
$response
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user