diff --git a/.fossa.yml b/.fossa.yml new file mode 100644 index 000000000..5cebdfb2f --- /dev/null +++ b/.fossa.yml @@ -0,0 +1,14 @@ +version: 3 + +paths: + exclude: + - vendor/ + - plugins/ + - _tools/ + - includes/libraries/cryptojs/ + - includes/libraries/csrfp/ + - includes/libraries/ezimuel/ + - includes/libraries/plupload/ + - includes/libraries/yubico/ + - includes/language/ + - install/ diff --git a/includes/config/include.php b/includes/config/include.php index 07f3aa79e..321bfead9 100755 --- a/includes/config/include.php +++ b/includes/config/include.php @@ -17,7 +17,7 @@ */ define('TP_VERSION', '3.1.1'); define("UPGRADE_MIN_DATE", "1702452416"); -define('TP_VERSION_MINOR', '29'); +define('TP_VERSION_MINOR', '30'); define('TP_TOOL_NAME', 'Teampass'); define('TP_ONE_DAY_SECONDS', 86400); define('TP_ONE_WEEK_SECONDS', 604800); diff --git a/sources/logs.datatables.php b/sources/logs.datatables.php index af020f06c..4c55d8aee 100755 --- a/sources/logs.datatables.php +++ b/sources/logs.datatables.php @@ -1059,4 +1059,5 @@ } } -echo $antiXss->xss_clean($sOutput); \ No newline at end of file +// deepcode ignore XSS: data comes from database. Before being stored it is clean with feature antiXss->xss_clean +echo (string) $sOutput; \ No newline at end of file