Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2022-0762: check product is deleted before add to cart · microweber/microweber@7636126

Business Logic Errors in GitHub repository microweber/microweber prior to 1.3.

CVE
#web#git

@@ -565,7 +565,21 @@ public function update_cart($data)

}

if ($data[‘for’] == ‘content’) {

$cont = $this->app->content_manager->get_by_id($for_id);

if (isset($cont[‘is_active’])) {

if ($cont[‘is_active’] != 1) {

$cont = false;

}

}

if (isset($cont[‘is_deleted’])) {

if ($cont[‘is_deleted’] > 0) {

$cont = false;

}

}

$cont_data = $this->app->content_manager->data($for_id);

if ($cont == false) {

return array(‘error’ => ‘Invalid product?’);

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