Lukasz-Rybak

#1361of 53,633
162.3Total CVSS
Vulnerabilities · 20
Medium
4
High
12
Critical
4
PT-2026-6773
8.7
2026-02-06
Unknown · Openstamanager · CVE-2026-24417
**Name of the Vulnerable Software and Affected Versions** OpenSTAManager versions 2.9.8 and earlier **Description** OpenSTAManager contains a critical Time-Based Blind SQL Injection vulnerability in the global search functionality. The application does not properly sanitize the `term` parameter before using it in SQL LIKE clauses across multiple module-specific search handlers, allowing attackers to inject arbitrary SQL commands and extract sensitive data through time-based Boolean inference. The vulnerability affects multiple search modules and has amplified execution, meaning a single malicious request can trigger SQL injection across all vulnerable modules simultaneously, increasing the delay and potentially causing server issues. The vulnerable parameter is `term` and is used in the `/ajax search.php` endpoint. Affected modules include Articoli, Ordini, DDT, Fatture, Preventivi, Anagrafiche, Impianti, Contratti, Automezzi, and Interventi. The vulnerability allows for complete database exfiltration, including customer Personally Identifiable Information (PII), financial records, and business secrets, as well as the extraction of password hashes. **Recommendations** Replace all instances of direct `$term` concatenation with `prepare()` in the following files: - `/modules/articoli/ajax/search.php` - Line 51 - `/modules/ordini/ajax/search.php` - Lines 43, 47, 79 - `/modules/ddt/ajax/search.php` - Lines 43, 47, 83 - `/modules/fatture/ajax/search.php` - Lines 45, 49, 85 - `/modules/preventivi/ajax/search.php` - Lines 45, 49, 83 - `/modules/anagrafiche/ajax/search.php` - Lines 62, 107, 162 - `/modules/impianti/ajax/search.php` - Line 46
PT-2026-3867
8.5
2026-01-21
Saleor · Saleor · CVE-2026-23499
**Name of the Vulnerable Software and Affected Versions** Saleor versions 3.0.0 through 3.20.107 Saleor versions 3.21.0 through 3.21.42 Saleor versions 3.22.0 through 3.22.26 **Description** Saleor, an e-commerce platform, permitted authenticated staff users or Apps to upload arbitrary files, including potentially malicious HTML and SVG files containing Javascript. If media files are hosted on the same domain as the dashboard, these files could be served without restrictions, leading to the execution of malicious scripts within the user's browser. A malicious staff member could potentially inject scripts to target other staff members, potentially compromising their access and refresh tokens. The issue is present when media files are not served with a `Content-Disposition: attachment` header. Saleor Cloud users are not affected. The vulnerable API endpoint is not specified. The vulnerable parameter is not specified. The vulnerable function is not specified. **Recommendations** Saleor versions 3.0.0 through 3.20.107: Upgrade to version 3.20.108 or later. Saleor versions 3.21.0 through 3.21.42: Upgrade to version 3.21.43 or later. Saleor versions 3.22.0 through 3.22.26: Upgrade to version 3.22.27 or later. Configure servers hosting media files to return the `Content-Disposition: attachment` header. Prevent servers from serving HTML and SVG files. Implement a `Content-Security-Policy` for media files, such as `Content-Security-Policy: default-src 'none'; base-uri 'none'; frame-ancestors 'none'; form-action 'none';`.