<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Sw360 | Haksung</title><link>https://haksungjang.github.io/en/tags/sw360/</link><description>Haksung Jang — Open Source Program Manager at SK telecom</description><generator>Hugo</generator><language>en-US</language><lastBuildDate>Sun, 09 Aug 2026 17:03:59 +0900</lastBuildDate><atom:link href="https://haksungjang.github.io/en/tags/sw360/index.xml" rel="self" type="application/rss+xml"/><item><title>SW360</title><link>https://haksungjang.github.io/en/docs/tools/2-sw360/</link><pubDate>Sun, 09 Aug 2026 17:03:59 +0900</pubDate><guid>https://haksungjang.github.io/en/docs/tools/2-sw360/</guid><description>(Updated on August 29, 2023.)
A company that develops and distributes products containing open source needs to collect and track information such as the version and license of the open source used, for each product and release version. This allows the company to carry out proper open source compliance activities.
In particular, when a security vulnerability is reported for a specific open source version at NVD (https://nvd.nist.gov/vuln), a company that cannot trace which products use that version ends up unable to determine which products need the security patch applied, leaving its products exposed to the vulnerability.</description><content:encoded>&lt;![CDATA[<p>(Updated on August 29, 2023.)</p><p>A company that develops and distributes products containing open source needs to collect and track information such as the version and license of the open source used, for each product and release version. This allows the company to carry out proper open source compliance activities.</p><p>In particular, when a security vulnerability is reported for a specific open source version at NVD (https://nvd.nist.gov/vuln), a company that cannot trace which products use that version ends up unable to determine which products need the security patch applied, leaving its products exposed to the vulnerability.</p><p>This makes tracking open source information a necessity. Companies address this either by building their own system or by purchasing and using a commercial service. SW360 is open source software sponsored by the Eclipse Foundation, providing a web application and repository for collecting and tracking software Bill of Materials (BOM) information.</p><p><img src="/docs/tools/2-sw360/sw3601.png" alt="https://www.eclipse.org/sw360/"/><p><em><center>&lt;<a href="https://www.eclipse.org/sw360/">https://www.eclipse.org/sw360/</a> &gt;</center></em></p><h2 id="key-features">Key Features</h2><p>SW360 provides a web-based UI, and its key functions are as follows.</p><ul><li>Tracking components used in a product</li><li>Security vulnerability assessment</li><li>License obligation management</li><li>Generating legal documents such as notices</li></ul><p><img src="https://lh3.googleusercontent.com/MPrOy70nOVSCRiorql9Momzi18lG66Liqttyutjwc9LAhVUwqmVf8xyeEkg085Pm1OYxwPRzyh68Th93ZlKA3fjG5_PnsBQijwUGkRa7o72h8Jco_7BcIwfoR7FGu8hsZA8n5ASq" alt="https://www.eclipse.org/sw360/"/><h2 id="installation">Installation</h2><p>SW360 is composed as follows.</p><ul><li>Frontend : Liferay-(Tomcat-)based portal application</li><li>Backend : Tomcat-based thrift service</li><li>Database : CouchDB</li></ul><p>For details on the project structure and the software required for installation, see the Required software section of the README. :<a href="https://github.com/eclipse-sw360/sw360">https://github.com/eclipse-sw360/sw360</a></p><p>SW360 offers the following installation methods. Users can choose one of them for installation.</p><ol><li>Can be deployed via Docker. :<a href="https://github.com/eclipse-sw360/sw360/blob/main/README_DOCKER.md">https://github.com/eclipse-sw360/sw360/blob/main/README_DOCKER.md</a></li><li>Can install SW360&rsquo;s components individually. :<a href="https://github.com/eclipse/sw360">https://github.com/eclipse/sw360</a></li><li>Vagrant-based (<a href="https://www.vagrantup.com/">https://www.vagrantup.com/</a>) installation: Vagrant is a tool for managing virtualized instances, and sw360vagrant provides an environment for deploying SW360 all at once. :<a href="https://github.com/sw360/sw360vagrant">https://github.com/sw360/sw360vagrant</a><ul><li>The Vagrant-based installation guide can be found<a href="https://openchain-project.github.io/OpenChain-KWG/guide/nipa_openchain/appendix/3-tools/sw360/#%EC%84%A4%EC%B9%98">here</a>. (Note: because the code has changed since the guide was written, it may not work correctly.)</li></ul></li></ol><p>This guide introduces the method of deploying with<code>Docker</code>. For details, refer to the README. :<a href="https://github.com/eclipse-sw360/sw360/blob/main/README_DOCKER.md">https://github.com/eclipse-sw360/sw360/blob/main/README_DOCKER.md</a></p><h3 id="1-download-the-code">1. Download the Code</h3><p>Download the code to build the Docker image. The tested code can be obtained here. :<a href="https://github.com/haksungjang/sw360/tree/docker_build">https://github.com/haksungjang/sw360/tree/docker_build</a></p><div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-sh" data-lang="sh"><span style="display:flex;"><span>git clone -b docker_build https://github.com/haksungjang/sw360.git</span></span></code></pre></div><h3 id="2-build">2. Build</h3><p>First, install<a href="https://www.docker.com/">Docker</a>. (Note that a<a href="https://www.docker.com/pricing/">paid purchase</a> may be required for corporate developer use.)</p><p>Build by running<code>docker_build.sh</code> as shown below.</p><div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-sh" data-lang="sh"><span style="display:flex;"><span><span style="color:#204a87">cd</span> sw360</span></span><span style="display:flex;"><span>./docker_build.sh</span></span></code></pre></div><p>Once the build completes successfully, you can check the created images as shown below.</p><div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-sh" data-lang="sh"><span style="display:flex;"><span>docker image ls</span></span><span style="display:flex;"><span/></span><span style="display:flex;"><span>REPOSITORY TAG IMAGE ID CREATED SIZE</span></span><span style="display:flex;"><span>eclipse-sw360/sw360 18-development ab0fd848bf80<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 2.95GB</span></span><span style="display:flex;"><span>eclipse-sw360/sw360 latest ab0fd848bf80<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 2.95GB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/sw360 18-development ab0fd848bf80<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 2.95GB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/sw360 latest ab0fd848bf80<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 2.95GB</span></span><span style="display:flex;"><span>eclipse-sw360/binaries 18-development aa7debf0a1fc<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 347MB</span></span><span style="display:flex;"><span>eclipse-sw360/binaries latest aa7debf0a1fc<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 347MB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/binaries 18-development aa7debf0a1fc<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 347MB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/binaries latest aa7debf0a1fc<span style="color:#0000cf;font-weight:bold">8</span> minutes ago 347MB</span></span><span style="display:flex;"><span>eclipse-sw360/base 18-development e5147733fc88<span style="color:#0000cf;font-weight:bold">37</span> minutes ago 1.52GB</span></span><span style="display:flex;"><span>eclipse-sw360/base latest e5147733fc88<span style="color:#0000cf;font-weight:bold">37</span> minutes ago 1.52GB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/base 18-development e5147733fc88<span style="color:#0000cf;font-weight:bold">37</span> minutes ago 1.52GB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/base latest e5147733fc88<span style="color:#0000cf;font-weight:bold">37</span> minutes ago 1.52GB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/thrift 0.18.1 0012d7998058<span style="color:#0000cf;font-weight:bold">4</span> weeks ago 152MB</span></span><span style="display:flex;"><span>ghcr.io/eclipse-sw360/thrift latest 0012d7998058<span style="color:#0000cf;font-weight:bold">4</span> weeks ago 152MB</span></span><span style="display:flex;"><span>eclipse-sw360/thrift 0.18.1 0012d7998058<span style="color:#0000cf;font-weight:bold">4</span> weeks ago 152MB</span></span><span style="display:flex;"><span>eclipse-sw360/thrift latest 0012d7998058<span style="color:#0000cf;font-weight:bold">4</span> weeks ago 152MB</span></span></code></pre></div><h3 id="3-run">3. Run</h3><p>Run the created images with the<code>docker-compose up</code> command.</p><pre tabindex="0"><code>docker-compose up</code></pre><p>Once it runs successfully, you can see three containers running as shown below.</p><pre tabindex="0"><code>docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
4299fd39010c eclipse-sw360/sw360 "/app/entry_point.sh" 3 minutes ago Up 3 minutes 0.0.0.0:8080-&gt;8080/tcp, 0.0.0.0:11311-&gt;11311/tcp sw360
13fd5696b140 postgres:14 "docker-entrypoint.s…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:5438-&gt;5432/tcp sw360-postgresdb-1
7bb70f2daaf4 couchdb "tini -- /docker-ent…" 3 minutes ago Up 3 minutes (healthy) 4369/tcp, 9100/tcp, 0.0.0.0:5984-&gt;5984/tcp sw360-couchdb-1</code></pre><p>At this point, accessing<code>http://localhost:8080/</code> takes you to the following screen.</p><p><img src="/docs/tools/2-sw360/liferay.png" alt=""/><h2 id="configuration">Configuration</h2><p>After installing SW360 successfully, you need to perform the initial configuration following the procedure below. For details, see:<a href="https://eclipse.dev/sw360/docs/deployment/legacy/deploy-liferay7.4/">SW360 Initial Setup Configuration</a></p><h3 id="1-user-and-login-configuration">1. User and Login Configuration</h3><p>Log in with the following account to perform the configuration.</p><ul><li>id :<a href="mailto:setup@sw360.org">setup@sw360.org</a></li><li>pw : sw360fossy</li></ul><p>Once you log in, a Not Found message appears as shown below.</p><p><img src="/docs/tools/2-sw360/liferay1.png" alt=""/><p>Click the item icon (cube shape) in the upper right of the screen and select the<code>Control Panel</code> tab.</p><p><img src="/docs/tools/2-sw360/liferay2.png" alt=""/><p>Enable<code>SECURITY</code> &gt;<code>Password Policies</code> &gt;<code>Default Password Policy</code> &gt;<code>PASSWORD CHANGES</code> &gt;<code>Change Requried</code>.</p><p><img src="/docs/tools/2-sw360/liferay3.png" alt=""/><p>Then, back in the<code>Control Panel</code> tab, select<code>CONFIGURATION</code> &gt;<code>Instance Settings</code>. This shows the<code>PLATFORM</code> menu.</p><p><img src="/docs/tools/2-sw360/liferay4.png" alt=""/><p>There, select<code>Users</code>. Then go into the<code>Default User Associations</code> menu, check<code>Apply to Existing Users</code>, and<code>Save</code>.</p><p><img src="/docs/tools/2-sw360/liferay5.png" alt=""/><p>Now, under<code>Instance Settings</code> &gt;<code>PLATFORM</code>, select<code>User Authentication</code>. Go into<code>General</code> and uncheck all items. (You can check and enable any items needed for administrative purposes.) Then<code>Save</code>.</p><p><img src="/docs/tools/2-sw360/liferay6.png" alt=""/><p>Finally, you need to enable jQuery and Font Awesome. To do this, go into<code>CONFIGURATION</code> &gt;<code>System Settings</code> in the<code>Control Panel</code> tab, where you can find<code>Third Party</code> under<code>PLATFORM</code>.</p><p><img src="/docs/tools/2-sw360/liferay7.png" alt=""/><p>Go into<code>Third Party</code> and enable<code>JQuery</code> and<code>Font Awesome</code> respectively.</p><p><img src="/docs/tools/2-sw360/liferay8.png" alt=""/><p><img src="/docs/tools/2-sw360/liferay9.png" alt=""/><p>Restart your browser for the changes to take effect.</p><h3 id="2-import-lar-files">2. Import LAR Files</h3><p>To configure SW360, you need to import the<code>*.lar</code> files. To do this, you need to go into the menu, and the menu button is in the upper left of the screen.</p><p><img src="/docs/tools/2-sw360/liferay10.png" alt=""/><p>In the menu, go into<code>Publishing</code> &gt;<code>Import</code>.</p><p><img src="/docs/tools/2-sw360/liferay11.png" alt=""/><p>Click the<code>+</code> button on the right to upload a LAR file. The LAR files are located under the<code>frontend/configuration</code> folder in the SW360 source files. (e.g.,<a href="https://github.com/haksungjang/sw360/tree/docker_build/frontend/configuration">https://github.com/haksungjang/sw360/tree/docker_build/frontend/configuration</a>)</p><p>First, upload the<code>Public_Pages_7_4_3_18_GA18.lar</code> file and click the<code>Continue</code> button.</p><p><img src="/docs/tools/2-sw360/liferay12.png" alt=""/><p>On the File Summary screen, you can see the details of the uploaded LAR file.</p><p><img src="/docs/tools/2-sw360/liferay13.png" alt=""/><p>Change<code>AUTHORSHIP OF THE CONTENT</code> at the bottom to<code>Use the Current User as Author</code> and click the<code>Import</code> button.</p><p><img src="/docs/tools/2-sw360/liferay14.png" alt=""/><p>You can then see that the import completed successfully.</p><p><img src="/docs/tools/2-sw360/liferay15.png" alt=""/><p>Similarly, import the<code>Private_Pages_7_4_3_18_GA18.lar</code> file. On the File Summary screen, change<code>PAGES</code> &gt;<code>Private Pages</code> as shown below.</p><p><img src="/docs/tools/2-sw360/liferay16.png" alt=""/><p>Then select the<code>PERMISSIONS</code>,<code>UPDATE DATA</code>, and<code>AUTHORSHIP OF THE CONTENT</code> items as shown in the image below, and click the<code>Import</code> button to perform the import.</p><p><img src="/docs/tools/2-sw360/liferay17.png" alt=""/><p>After completing this, click the<code>Home</code> button at the top of the menu.</p><p><img src="/docs/tools/2-sw360/liferay18.png" alt=""/><p>This takes you to the<code>Welcome to SW360!</code> screen shown below.</p><p><img src="/docs/tools/2-sw360/liferay19.png" alt=""/><p>Click the<code>Start</code> button to go into the SW360 main screen. (All items are empty at this point.)</p><p><img src="/docs/tools/2-sw360/liferay20.png" alt=""/><h3 id="3-user-account-configuration-for-testing">3. User Account Configuration (for Testing)</h3><p>In the SW360 menu, select<code>Admin</code> &gt;<code>User</code>.</p><p><img src="/docs/tools/2-sw360/liferay21.png" alt=""/><p>In the<code>UPLOAD USERS</code> menu at the bottom of the screen, upload the user list for testing. (The user list for testing can be downloaded here. :<a href="https://github.com/haksungjang/sw360/blob/main/frontend/configuration/test_users_with_passwords_12345.csv">test_users_with_passwords_12345.csv</a> )</p><p><img src="/docs/tools/2-sw360/liferay22.png" alt=""/><p>You can then see that a list of 9 users has been uploaded, as shown below.</p><p><img src="/docs/tools/2-sw360/liferay23.png" alt=""/><p>Try logging in again with the<code>user@@sw360.org</code> account, one of the users shown in the list. The password is<code>12345</code>.</p><h2 id="basic-workflow">Basic Workflow</h2><h3 id="1-registering-licenses">1. Registering Licenses</h3><p>When you first install SW360, you need to first register the open source licenses you use frequently. A license includes the following information.</p><ul><li>Full Name</li><li>Short Name</li><li>License Type</li><li>GPL-2.0 Compatibility (e.g., yes, no)</li><li>License Text</li></ul><p>Selecting Menu &gt; Licenses &gt; Add License takes you to the Create License screen shown below.</p><p><img src="https://lh6.googleusercontent.com/8bn6z_39PK5WrjP7mzhHrTwfM5PU19QT3TiQnAatOYywVwcGLJGFMmMgMkzh4CKAPM0SOOy7VDoboaj9OKpD1QEZv6KWOeWxZfqGA_2geYrYOBm2kOVzrNOmGPVK-8hzJvBZ-klT" alt=""/><p>Registering licenses one by one manually like this can be quite tedious, but fortunately SW360 provides a feature to import the SPDX License List all at once. Click Menu &gt; Admin &lt; Import SPDX Information.</p><p><img src="https://lh5.googleusercontent.com/d8ZK-dD34z1yKZn-szPNrN7iT4zg1EQnKnAv4QcPslSR0-laETy37ArojuweqSsxpWuvGXtdF5FabiWk57So-bD_iiEx7eVIR6tWDsYO2SkaCdlKr6ELDN9y_NdkqWFbQgRF2lXN" alt=""/><p>The SPDX License List is then automatically registered shortly after. At Menu &gt; Licenses, you can confirm that 338 licenses have been registered.</p><p><img src="https://lh6.googleusercontent.com/Ucjuo09uJKhEhACZ90y98PszgSiCGtlDotH8mbTXJ2ePnF3TquzNX2yWzOCENTKNk1UjMJhyFgHxTCH6lxvZJg1l07M0hCc-v-14loAJ0efUU9V9hqS9mUabAT9QNysYL8E2tgIf" alt=""/><h3 id="2-registering-components-and-releases">2. Registering Components and Releases</h3><p>In SW360, a Component is a single unit of software. Various forms of software can fall into this category, for example:</p><ul><li>Open source software</li><li>Libraries</li><li>Third-party software</li></ul><p>A Component includes the following information.</p><ul><li>Component Name</li><li>Main Licenses</li><li>Categories (e.g., Library, Cloud, Mobile, &hellip;)</li><li>Component Type (e.g., OSS, Internal, InnerSource, Service, Freeware)</li><li>Default Vendor</li><li>Homepage URL</li></ul><p>A Release is the unit that refers to a single Version within a Component. Accordingly, one Component can have multiple Releases. A Release is created and managed under a single Component.</p><p>A Release includes the following information.</p><ul><li>Component Name</li><li>Version</li><li>License</li><li>Download URL</li><li>CPE ID (e.g., cpe:2.3:a:apache:maven:3.0.4)</li></ul><p>For example, if you need to register zlib-1.2.8, you first register zlib as a Component, then register zlib 1.2.8 as a Release. Selecting Menu &gt; Components &gt; Add Component takes you to the Create Component screen, where you can register information about zlib.</p><p><img src="https://lh6.googleusercontent.com/0a3ecmmFzumTZTaoWCOZPKkQIZLJwbPoAaduCTfwQMH_N67DPaMpTkerA4LOynwkl_nLkNT-pRh-rKzj4XHtBjoTkVMW9g06Rywryk3wbAj-Y3ONDg16VcGepMEm7m7Y8M3iDWyH" alt=""/><p>Once you create the Component, you can register information for the zlib-1.2.8 version at Components &gt; Releases &gt; Add Release.</p><p><img src="https://lh4.googleusercontent.com/ynUEB5-rGVYDirFghLx2v3tUt-uh-WL3YTN0siaGZWBrWQKYnIiV3B04mvdv3nZUW7t_U2Gl8msV_es1X181uq95YAp1bnqa0e3QLshhd1zhqk6z8ubPeEfo74cKdwho95_NyI1J" alt=""/><p>When versions 1.2.8 and 1.2.11 are each registered as Releases under the single zlib Component, the Release Overview screen shows 2 Releases existing, as below.</p><p><img src="https://lh3.googleusercontent.com/GxgMJQbNjRBNxMTMBvqEXNFNElXGXoCnaksCMs46ydREIrqrj7dFxMK0YkvjviHYMCiHY07xlR-Xixpa_C5nMFLzih0dXZAtv-6yKg4RdADJxr5qmDwhAEopVOaVNqzVWc3gMpLq" alt=""/><p>SW360 provides a feature for importing information for multiple Components at once. At Menu &gt; Admin &gt; Import / Export, you can enter the Component information you want to register into the CSV template and then import it.</p><p><img src="https://lh5.googleusercontent.com/VInFwWAV-1lG1E7zFQPvn1GIlYPPY5ToGbSa49Brg7XuB-AwyCEHA9han0EUij1KX3c8aN2UZ1mKkN-5Y4BNv8LOV3O5YoypLQ7EF43QFPAU9L18XT57Ec5eoneswtGtt3rMSPoQ" alt=""/><p>Note that, as of February 2020, this feature may not yet work reliably.</p><h3 id="3-creating-a-project">3. Creating a Project</h3><p>A Project refers to a single product. Depending on the type of business, it may be a product, a service, or software. Under a Project, you register and manage the Components/Releases used in the product.</p><p>When creating a Project, you register the following information.</p><ul><li>Project Name</li><li>Version</li><li>Project type (e.g., Product, Customer Project, Service, Internal Project, InnerSource)</li></ul><p>You can create a Project via Menu &gt; Projects &gt; Add Project.</p><p><img src="https://lh6.googleusercontent.com/6gNtLci53U6zaU6Th5SHousuZ4VUijzuYjiJJlB0R6JwiHG4ggjb0RcnRYDkZCBhE2dMP2gGbT4qmB2FE5O8EW8hTfv1lgM4_XN0vzQUkttfTbX2cF0aNftHYuUy9EXczT2LzLO5" alt=""/><p>Once you create the Project, register the Releases or sub-Projects it includes. Selecting the Project at Menu &gt; Projects lets you register Linked Projects and Linked Releases under &ldquo;Linked Releases and Projects.&rdquo;</p><p><img src="https://lh4.googleusercontent.com/ZjD7r7EzxfdQ4bhw4ODsChydb6Vgqj1m4Ad0cWlYtyYXO40MCbPpTHHcy-wJmbHeA_FxTa66Mpza6-9ohu0e93b7BaGb7Zc9soTA3mGCHGnyGURukRUnJS_duI7T8IL2aTgMFzjB" alt=""/><p>The following is the screen after registering OpenSSL 1.0.1 and zlib 1.2.8 as Linked Releases in a Project named SuperCalc.</p><p><img src="https://lh3.googleusercontent.com/tZCshPwxtukNLvfL-f-LfNOH-4ATof0bIGxpghVKXQ9QMBgoc_t0ROJMYafS9V4PuRaOOEW9zp25yk0gFA_kcaoRN83UKwUaFhaXxSWg7xPWvsYoJ_-pZkROkey1mYVTqGxKsCRu" alt=""/><h3 id="4-security-vulnerability-management">4. Security Vulnerability Management</h3><p>SW360 can automatically check whether registered Releases have security vulnerabilities. To do this, SW360 provides a feature for scheduling periodic collection of CVE information. At Menu &gt; Admin &gt; Schedule, you can set a schedule to collect CVE SEARCH information every 24 hours.</p><p><img src="https://lh5.googleusercontent.com/V2AJbexZqJJqwFYD1kFpjdZ7zVM9PCd-I_6MSBu3djO2Gi6gQxxQpKoqqsETxDaSkpDXOKFOp9h0Fps1xYHEphesVX9ECwBwnSX5cWdziXoohh-CMmqRh_wVkwUD8dZE9w1raJRk" alt=""/><p>Once this schedule is set, SW360 collects CVE information from the CVE Search site (<a href="https://cve.circl.lu/">https://cve.circl.lu/</a>) at the scheduled time. The collected CVE information can be checked at Menu &gt; Vulnerabilities.</p><p><img src="https://lh3.googleusercontent.com/dpIMyX7qCMdnibNihuL6RBSKg2fEckbOBPWJEtw08mY4quhv6Hh3BlgFIeydPOS6N8rF6ZSs4hpZgBGcXbcJI9saFDyfv4i-TCvxV5z-4LD9ZXpKah0jQU45j3iibxFpYoa7Hj9u" alt=""/><p>Once the Vulnerabilities information has been collected, you can query whether a created Project has security vulnerabilities. In the SuperCalc Project created above, you can confirm that 85 security vulnerabilities were reported.</p><p><img src="https://lh5.googleusercontent.com/lGeLbWHIBk6y2OSOXskcp4A2c5od0eTH6n7U5YG0p4cwTrrX02b6TpeRqJ7VXg5aUE7qDP2X2f8o4Rj1JsPHhZ-CUdLiy80O532Cgw-h_P9r-jHdL61QaXhFOPxIjTlX1cg9XPk5" alt=""/><p>By registering and managing the software a company develops and distributes in SW360 this way, you can manage it in a form that minimizes risk not only for open source compliance but also for security vulnerabilities.</p><p>SW360 also offers most of its functionality via a REST API in addition to the Web Interface above, making integration with other tools such as FOSSology possible. :<a href="https://github.com/eclipse/sw360/wiki/Dev-REST-API">https://github.com/eclipse/sw360/wiki/Dev-REST-API</a></p><p>In other words, integrating this into DevOps by, for example, importing the analysis results of a source code scanning tool into SW360, and automating the registration of Projects and Releases, would greatly increase efficiency.</p>
]]></content:encoded></item></channel></rss>