All terms are AND-ed — every token must appear in the advisory text.
| You type | What is searched |
|---|---|
firefox-ios |
advisories containing both firefox AND ios — delimiters (- _ . space , / #) split tokens and are not themselves searched |
firefox_iosfirefox iosfirefox#ios |
same as above — all equivalent |
firefox23-ios |
same — inline numbers on tokens are stripped, so firefox23 → firefox |
firefox-ios "23" |
firefox AND ios AND the literal string 23 (quoted strings are kept verbatim) |
firefox-ios "re/2../" |
firefox AND ios AND any text matching the regex 2.. (matches 231, 2ab, etc.) — use "re/PATTERN/" for Postgres case-insensitive regex |
"CVE-2024-12345" |
exact literal match for CVE-2024-12345 |
Tokens shorter than 3 characters (after stripping digits) are ignored. To match short strings or version numbers exactly, wrap them in double quotes.