You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability for syft to catalog installed nextcloud apps
Why is this needed:
There are quite a few vulnerabilities coming through in my enrichment data, some for nextcloud server itself, and others for specific nextcloud apps. It would be great to properly surface these in the sbom and then be able to properly match against available vulnerability data
Additional context:
I have filed #3458 for cataloging the nextcloud server installation itself
cat appinfo/info.xml
<?xml version="1.0"?><!--
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- SPDX-FileCopyrightText: 2013-2016 ownCloud, Inc.
- SPDX-License-Identifier: AGPL-3.0-only
--><info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"><id>mail</id><name>Mail</name><summary>💌 A mail app for Nextcloud</summary><description><![CDATA[**💌 A mail app for Nextcloud**
- **🚀 Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come.
- **📥 Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. Connect any IMAP account.
- **🔒 Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension.
- **🙈 We’re not reinventing the wheel!** Based on the great [Horde](https://horde.org) libraries.
- **📬 Want to host your own mail server?** We do not have to reimplement this as you could set up [Mail-in-a-Box](https://mailinabox.email)!## Ethical AI Rating### Priority Inbox
Positive:
* The software for training and inferencing of this model is open source.
* The model is created and trained on-premises based on the user's own data.* The training data is accessible to the user, making it possible to check or correct for bias or optimise the performance and CO2 usage.### Thread Summaries (opt-in)**Rating:** 🟢/🟡/🟠/🔴The rating depends on the installed text processing backend. See [the rating overview](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for details.Learn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/). ]]></description> <version>4.0.2</version> <licence>agpl</licence> <author homepage="https://github.com/ChristophWurst">Christoph Wurst</author> <author homepage="https://github.com/GretaD">GretaD</author> <author homepage="https://github.com/kesselb">kesselb</author> <namespace>Mail</namespace> <documentation> <user>https://github.com/nextcloud/mail/blob/main/doc/user.md</user> <admin>https://github.com/nextcloud/mail/blob/main/doc/admin.md</admin> <developer>https://github.com/nextcloud/mail/blob/main/doc/developer.md</developer> </documentation> <category>social</category> <category>office</category> <website>https://github.com/nextcloud/mail#readme</website> <bugs>https://github.com/nextcloud/mail/issues</bugs> <repository type="git">https://github.com/nextcloud/mail.git</repository> <screenshot>https://user-images.githubusercontent.com/12728974/266270227-86b99bbb-03ea-468b-8408-e248e1730bed.png</screenshot> <dependencies> <php min-version="8.1" max-version="8.3" /> <nextcloud min-version="30" max-version="30" /> </dependencies> <background-jobs> <job>OCA\Mail\BackgroundJob\CleanupJob</job> <job>OCA\Mail\BackgroundJob\OutboxWorkerJob</job> <job>OCA\Mail\BackgroundJob\IMipMessageJob</job> <job>OCA\Mail\BackgroundJob\DraftsJob</job> <job>OCA\Mail\BackgroundJob\TrashRetentionJob</job> <job>OCA\Mail\BackgroundJob\WakeJob</job> </background-jobs> <repair-steps> <post-migration> <step>OCA\Mail\Migration\AddMissingDefaultTags</step> <step>OCA\Mail\Migration\AddMissingMessageIds</step> <step>OCA\Mail\Migration\FixCollectedAddresses</step> <step>OCA\Mail\Migration\FixBackgroundJobs</step> <step>OCA\Mail\Migration\MakeItineraryExtractorExecutable</step> <step>OCA\Mail\Migration\ProvisionAccounts</step> <step>OCA\Mail\Migration\RepairMailTheads</step> <step>OCA\Mail\Migration\DeleteDuplicateUids</step> </post-migration> </repair-steps> <commands> <command>OCA\Mail\Command\AddMissingTags</command> <command>OCA\Mail\Command\CleanUp</command> <command>OCA\Mail\Command\CreateAccount</command> <command>OCA\Mail\Command\CreateTagMigrationJobEntry</command> <command>OCA\Mail\Command\DeleteAccount</command> <command>OCA\Mail\Command\DiagnoseAccount</command> <command>OCA\Mail\Command\ExportAccount</command> <command>OCA\Mail\Command\ExportAccountThreads</command> <command>OCA\Mail\Command\PredictImportance</command> <command>OCA\Mail\Command\SyncAccount</command> <command>OCA\Mail\Command\Thread</command> <command>OCA\Mail\Command\TrainAccount</command> <command>OCA\Mail\Command\UpdateAccount</command> <command>OCA\Mail\Command\UpdateSystemAutoresponders</command> </commands> <settings> <admin>OCA\Mail\Settings\AdminSettings</admin> </settings> <navigations> <navigation> <name>Mail</name> <route>mail.page.index</route> <icon>mail.svg</icon> <order>3</order> </navigation> </navigations></info>
From this we know to raise up a nextcloud application package with an id of mail with version 4.0.2 corresponding to the app registry at https://apps.nextcloud.com/apps/mail
Also, from the nextcloud server directory there is an apps subdirectory with directories of all of the installed apps, each of which should have a corresponding appinfo/info.xml file
The text was updated successfully, but these errors were encountered:
What would you like to be added:
Add ability for syft to catalog installed nextcloud apps
Why is this needed:
There are quite a few vulnerabilities coming through in my enrichment data, some for nextcloud server itself, and others for specific nextcloud apps. It would be great to properly surface these in the sbom and then be able to properly match against available vulnerability data
Additional context:
I have filed #3458 for cataloging the nextcloud server installation itself
Surfacing installed apps should be more straightforward. Within the installed nextcloud app directory is a file
appinfo/info.xml
. This has the version and id for the application. So for an example we can look at the mail app. I used https://github.com/nextcloud-releases/mail/releases/download/v4.0.2/mail-v4.0.2.tar.gzFrom this we know to raise up a nextcloud application package with an id of
mail
with version4.0.2
corresponding to the app registry at https://apps.nextcloud.com/apps/mailAlso, from the nextcloud server directory there is an apps subdirectory with directories of all of the installed apps, each of which should have a corresponding
appinfo/info.xml
fileThe text was updated successfully, but these errors were encountered: