Skip to content

Instantly share code, notes, and snippets.

@enferas
Created January 24, 2023 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enferas/e8fff9261526fdf51808c39b3004e1b5 to your computer and use it in GitHub Desktop.
Save enferas/e8fff9261526fdf51808c39b3004e1b5 to your computer and use it in GitHub Desktop.
CVE-2023-23011

CVE-2023-23011 is assigned Cross Site Scripting (XSS) vulnerability in InvoicePlane 1.6 via filter_product input to file modal_product_lookups.php

Link: https://github.com/InvoicePlane/InvoicePlane

Multiple XSS vulnerabilities.

Vulnerability1: In file InvoicePlane-development\application\modules\products\controllers\Ajax.php

$filter_product = $this->input->get('filter_product');
//...
$data = array(
      'products' => $products,
      'families' => $families,
      'filter_product' => $filter_product,
      'filter_family' => $filter_family,
      'default_item_tax_rate' => $default_item_tax_rate,
  );
//...
$this->layout->load_view('products/modal_product_lookups', $data);

In file InvoicePlane-development\application\modules\products\views\modal_product_lookups.php

<?php echo $filter_product ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment