- Scan their software for potential security issues and violations of organizational policy.
- Prioritize vulnerabilities in the context of their applications.
- Understand the relationships between software components in their applications.
Software prerequisites
Before you begin, verify the following prerequisites:- All applications monitored by Endor Labs must be on Ruby versions 2.6 or higher.
- A Gemfile or a
*.gemspecfile must be present in your Ruby project. - Make sure your repository includes one or more files with
.rbextension.
Build Ruby projects
You can build your Ruby projects before running a scan. Building first creates theGemfile.lock file.
Ensure your repository has Gemfile and run the following command making sure it builds the project successfully.
Gemfile.lock. If the repository includes a Gemfile.lock, endorctl uses this file for dependency resolution and does not create it again.
Configure private RubyGems package repositories
Endor Labs supports fetching and scanning dependencies from private RubyGems package registries. Endor Labs will fetch resources from authenticated endpoints and perform the scan, allowing you to view the resolved dependencies and findings. See RubyGems package manager integrations for more information on configuring private registries.Run a scan
Perform a scan to get visibility into your software composition and resolve dependencies.Understand the scan process
Endor Labs looks forGemfile, *.gemspec, and Gemfile.lock files to find and monitor the dependency activity.
- A Gemfile is a configuration file used in Ruby projects to specify the required RubyGems (libraries or packages) for the project’s dependencies.
- A
*.gemspecfile is a RubyGems specification file used to define the metadata and dependencies for a RubyGem. - The
Gemfile.lockfile is automatically generated by Bundler. Refer to Bundler documentation for more information about getting started.
Gemfile.lock is not present in your project, Endor Labs generates this file and stores it in a temp directory. Endor Labs deletes the file after extracting dependency information.
Endor Labs’ dependency resolution mechanism assesses multiple factors, including compatibility, stability, and availability, to determine the most suitable version for usage. Your Ruby project uses the resolved dependency version during build or execution. By utilizing the dependency graph, you can access significant information about the dependencies. This includes determining whether a dependency is direct or transitive, checking its reachability, verifying source availability, and more. The dependency graph provides a visual representation that allows you to examine the graphical details of these dependencies.
Known limitations
- Call graphs are not supported for Ruby projects.
- If a dependency cannot resolve in the Gemfile, the build for that specific package may not succeed. The package may no longer exist in the Gem package manager. Other packages in the workspace are scanned.
Troubleshoot errors
- Unresolved dependency errors:
The Gemfile is not buildable. Try running
bundler installin the root project to debug this error. - Resolved dependency errors: A dependency version does not exist or cannot be found. The package may no longer exist in the repository.