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