mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-13 07:24:48 +02:00
fix: disallow non-strings in GET parameters (#2908)
This commit is contained in:
parent
003ab58514
commit
c33f84fcc2
3 changed files with 22 additions and 13 deletions
28
index.php
28
index.php
|
@ -2,18 +2,24 @@
|
|||
|
||||
require_once __DIR__ . '/lib/rssbridge.php';
|
||||
|
||||
/*
|
||||
Move the CLI arguments to the $_GET array, in order to be able to use
|
||||
rss-bridge from the command line
|
||||
*/
|
||||
if (isset($argv)) {
|
||||
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
||||
$request = array_merge($_GET, $cliArgs);
|
||||
} else {
|
||||
$request = $_GET;
|
||||
}
|
||||
|
||||
try {
|
||||
if (isset($argv)) {
|
||||
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
||||
$request = $cliArgs;
|
||||
} else {
|
||||
$request = $_GET;
|
||||
}
|
||||
foreach ($request as $key => $value) {
|
||||
if (! is_string($value)) {
|
||||
http_response_code(400);
|
||||
print render('error.html.php', [
|
||||
'title' => '400 Bad Request',
|
||||
'message' => "Query parameter \"$key\" is not a string.",
|
||||
]);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
$actionFactory = new ActionFactory();
|
||||
|
||||
if (array_key_exists('action', $request)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue