Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2022-40704: phoromatic: Explicitly check both $_GET abd $_POST in phoromatic_quit… · phoronix-test-suite/phoronix-test-suite@d3880d9

A XSS vulnerability was found in phoromatic_r_add_test_details.php in phoronix-test-suite.

CVE
#xss#vulnerability#php

@@ -37,9 +37,20 @@ function phoromatic_quit_if_invalid_input_found($input_keys = null)

{

foreach($input_keys as $key)

{

if(isset($_REQUEST[$key]) && !empty($_REQUEST[$key]))

if(isset($_GET[$key]) && !empty($_GET[$key]))

{

foreach(pts_arrays::to_array($_REQUEST[$key]) as $val_to_check)

foreach(pts_arrays::to_array($_GET[$key]) as $val_to_check)

{

if(stripos($val_to_check, $invalid_string) !== false)

{

echo '<strong>Exited due to invalid input ( ' . $invalid_string . ') attempted:</strong> ' . htmlspecialchars($val_to_check);

exit;

}

}

}

if(isset($_POST[$key]) && !empty($_POST[$key]))

{

foreach(pts_arrays::to_array($_POST[$key]) as $val_to_check)

{

if(stripos($val_to_check, $invalid_string) !== false)

{

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907