Searching Applications
Custom pattern search looks for application names, uploader usernames and CVE entries in the found libraries by default. More specific searches are possible using the following keywords:
| Keyword | Description | Example | 
|---|---|---|
| distro: | distributionSearch for applications containing a
                            specific linux distribution. | distro:ubuntu | 
| distro_version: | distribution versionSearch together with distro for
                            applications containing a specific linux distribution version. | distro_version:18.04.1 | 
| lib: | libname[:version]Search for applications containing a
                            specific library. Version is not required. Supports excluding search. | lib:libpnglib:libpng:1.6.40 | 
| user: | usernameSearch for applications uploaded by a
                            specific user | user:admin | 
| file: | filenameSearch for applications with
                            filename | file:.apk | 
| cve: | cveSearch for applications with a specific CVE.
                            Supports excluding search. | cve:2014-1234 | 
| meta: | KEYSearch for applications with custom data key "KEY" set. Supports
                            excluding search. | meta:BUSINESS_UNIT | 
| meta: | KEY=Value Search for applications with custom data key containing value. Supports excluding search. | meta:BUSINESS_UNIT=eCenter | 
| vuln: | vulnSearch for applications with a specific
                            vulnerability. Supports excluding search. | vuln:BDSA-2022-1234 | 
Table: Searching applications with specific searches
You can also chain multiple search keywords separated with whitespace.
Example: Search for all android applications containing libtiff from user Malakias:
 file:.apk lib:libtiff user:malakiasYou can use an asterisk anywhere in the file keyword search term for wildcard searches,
            for example, file:*.bin. All searches are case-insensitive.
CVE entries can be searched also with the following queries: 2014-1234, CVE-2014-1234 and cve:CVE-2014-1234
Some of the keywords support excluding search. Example: Search all applications not containing bzip2:
 -lib:bzip2