- 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.
System specifications for deep scan
Before you proceed to run a deep scan, ensure that your system meets the following specification.| Project Size | Processor | Memory |
|---|---|---|
| Small projects | 4-core processor | 16 GB |
| Mid-size projects | 8-core processor | 32 GB |
| Large projects | 16-core processor | 64 GB |
Software prerequisites
Endor Labs requires the following prerequisites in place for successful scans.- Install JDK versions between 11 and 25.0.2
- For JDK 8, see Scan the projects on JDK version 8
- Make sure your repository includes one or more files with
.javaextension. - Install Maven Package Manager version 3.6.1 and higher if your project uses Maven.
- Install Gradle build system version 6.0.0 and higher, if your project uses Gradle. To support lower versions of Gradle, see Scan projects on Gradle versions between 4.7 and 6.0.0.
- Install Bazel version
5.x.x,6.x.x,7.x.x,8.x.x, or9.x.xif your project uses Bazel. Endor Labs supports Bzlmod with Bazel aspects usingrules_java>= 5.0.0. See Bazel for more information. - For projects not using Maven or Gradle, make sure that your project is set up properly to scan without the
pom.xmlfile. See Scan projects without pom.xml for more information.
Build Java projects
You must build your Java projects before running a scan. Also verify that packages exist in the local package caches and build artifacts exist in the standard locations.Use Gradle
To analyze your software built with Gradle, Endor Labs requires a successful build. For a quick scan, locate the dependencies in the local package manager cache. The standard$GRADLE_USER_HOME/caches or /User/<username>/.gradle/caches directory must exist and contain downloaded dependencies. For a deep scan, also generate the target artifact on the file system.
To build your project with Gradle, use the following procedure:
-
If you would like to run a scan against a custom configuration, specify the Gradle configuration by setting an environment variable.
When no configuration is provided, endorctl uses
runtimeClasspathby default. If neither the user-specified nor the default configuration exists in the project, endorctl falls back to the following configurations, in order:runtimeClasspathruntimecompileClasspathcompile
-
Ensure that you can resolve the dependencies for your project without errors by running the following command:
For Gradle wrapper:
For Gradle:
-
Run
./gradlew assembleorgradle assembleto resolve dependencies and create an artifact for deep analysis.
Override subproject level configuration
In a multi-build project, if you set the environment variableendorGradleJavaConfiguration=[GlobalConfiguration], endorctl uses the specified configuration for dependency resolution across all projects and subprojects in the hierarchy below.
:samples:crawler and :samples:guide subprojects, follow these steps:
-
Navigate to the root workspace, where you execute
endorctl scan, and run./gradlew projectsto list all projects and their names. -
Run the following command at the root of the workspace:
This creates a new file named
.endorpropertiesin your root directory. This enables different configurations for the specified subprojects in the file. -
Run
endorctl scan.
GlobalConfiguration. However, the :samples:crawler subproject will use the testRuntimeClasspath configuration, and the :samples:guide subproject will use the macroBenchMarkClasspath configuration.
Configure private Gradle package repositories
Endor Labs supports fetching and scanning dependencies from private Gradle package registries. Endor Labs will fetch resources from authenticated endpoints and perform the scan, allowing you to view the resolved dependencies and findings. See Gradle package manager integrations for more information on configuring private registries.Use Maven
To analyze your software built with Maven, Endor Labs requires a successful build. For a quick scan, locate the dependencies in the local package manager cache. The standard.m2 cache must exist and contain downloaded dependencies. For a deep scan, also generate the target artifact on the file system.
To build your project with Maven, use the following procedure:
-
Ensure that you can resolve the dependencies for your project without error by running the following command.
-
Run
mvn installand make sure the build is successful.If you want to skip the execution of tests during the build, you can use-DskipTeststo quickly build and install your projects. -
If you have multiple Java modules not referenced in the root pom.xml file, make sure to run
mvn installseparately in all the directories.
Configure private Maven package repositories
Endor Labs supports fetching and scanning dependencies from private Maven package registries. Endor Labs will fetch resources from authenticated endpoints and perform the scan, allowing you to view the resolved dependencies and findings. See Maven package manager integrations for more information on configuring private registries.Scan Bazel projects
To scan Java projects that use Bazel, see Bazel for build instructions, supported rules, and scan commands. Endor Labs supports Bzlmod with Bazel aspects usingrules_java >= 5.0.0. See Bazel Aspects for more information.
Run a scan
Use the following options to scan your repositories. Perform a scan after building the projects.Option 1 - Quick scan
Perform a quick scan to get quick visibility into your software composition. This scan won’t perform reachability analysis to help you prioritize vulnerabilities.Option 2 - Deep scan
Use the deep scan to perform dependency resolution, reachability analysis, and generate call graphs. You can do this after you complete the quick scan successfully.disable-private-package-analysis. By disabling private package analysis, teams can enhance scan performance but may lose insights into how applications interact with first-party libraries.
Use the following command flag to disable private package analysis:
Scan projects without pom.xml
Endor Labs supports projects that do not use Maven or Gradle, and have nopom.xml in the following cases.
Run the scans with the
--quick-scan parameter if you prefer to scan the project without reachability.Uber jars
If you have an uber jar (fat jar) that contains all application classes and dependency jars, set the environment variableENDOR_JVM_USE_ARTIFACT_SCAN to true and run the scan.
Application dependencies in classpath
If you only have application dependency files (like jar, war, or ear) without an uber jar, set the path to these files in the environment variableENDOR_JVM_USE_ARTIFACT_SCAN_CLASSPATH and run the scan.
Scan the projects on JDK version 8
Endor Labs supports JDK versions between 11-25.0.2, however, you can scan projects on JDK 8 using the following procedure:- Build your Java project on JDK 8.
-
After building, switch your Java home to JDK 11 or higher versions.
- Run a scan
Scan projects on Gradle versions between 4.7 and 6.0.0
To scan Java projects on Gradle versions between 4.7 and 6.0.0, make sure to-
Check the version of your project using:
-
The project must have a Gradle wrapper. You can generate the Gradle wrapper using:
Endor Labs prioritizes Gradle wrapper over Gradle and it is a recommended best practice to use Gradle Wrapper.
-
Before executing the endorctl scan, ensure the project can be built in your required version.
-
Use
--bypass-host-checkduring endorctl scan to execute scans on projects that have Gradle versions lower than 6.0.0.
Understand the scan process
Endor Labs analyzes your Java code and dependencies to detect known security issues, including open-source vulnerabilities and generates call graphs.How Endor Labs resolves dependencies for package versions
Endor Labs resolves the dependencies for Java packages based on the following factors:- For packages built using Maven, it leverages the Maven cache in the
.m2directory of your file system to resolve the package’s dependencies and mirrors Maven’s build process for the most accurate results. - For Maven, Endor Labs respects the configuration settings in the settings.xml file. If your repository includes this file, you need not provide any additional configuration.
- For packages built using Gradle, it uses Gradle and Gradle wrapper files to build packages and resolve dependencies.
- Endor Labs supports EAR, JAR, RAR, and WAR files.
How Endor Labs performs static analysis on the code
Endor Labs performs static analysis on the Java code based on the following factors:- Endor Labs creates call graphs for your package and combines them with the dependency call graphs to form a comprehensive call graph for the entire project.
- Endor Labs performs an inside-out analysis of the software to determine the reachability of dependencies in your project.
- The static analysis time may vary depending on the number of dependencies in the package and the number of packages in the project.
Known limitations
- If a package can not be successfully built in the source control repository, static analysis will fail.
- Endor Labs analyzes Spring dependencies based on Spring public entry points to reduce the impact of Inversion of Control (IOC) frameworks. Endor Labs identifies dependencies and functions as reachable or unreachable in the context of a Spring version and its entry points.
- Annotation processing is limited only to the usage of the code they annotate.
- Static analysis of reflection and callbacks are not supported.
- Endor Labs requires JDK 11 to generate call graphs for Java projects. Gradle versions lacking JDK 11 support are not compatible.
Troubleshoot errors
Here are a few error scenarios that you can check for and attempt to resolve them.-
Host system check failure errors:
- Java is not installed or not present in the PATH environment variable. Install Java and try again. See Java documentation for more information.
- The installed version of Java is lower than the required version. Install JDK versions between 11-25.0.2 and try again.
- Java is installed but Maven or Gradle is not installed. In such cases, the dependency resolution may not be complete.
-
Unresolved dependency errors:
Maven is not installed properly or the system is unable to build root pom.xml. Run
mvn dependency:treein the root of the project and try again. In such cases, the dependency resolution may not be complete. - Resolved dependency errors: A dependency version does not exist or cannot be found. The package may no longer exist in the repository.
-
Gradle variant incompatibility message:
Gradle performs JVM toolchain checks for subprojects or dependencies and may raise errors indicating a Java version mismatch between dependencies declared in Gradle manifest and Java home setup.
Example error message:
Incompatible because this component declares a component for use during compile-time, compatible with Java version 21 and the consumer needed a component for use during runtime, compatible with Java version 17
- To resolve this, use Java’s backward compatibility and instruct Gradle to use the higher JDK version from the error message. Specify
org.gradle.java.home=<path of java>in.gradle/gradle.properties. The path must point to the root of the directory containingbin/java. For example, if your Java is at/Users/Downloads/jdk-21/Contents/Home/bin/java, specifyorg.gradle.java.home=/Users/Downloads/jdk-21/Contents/Home. - If you are scanning a purely Java 8 Gradle project and if you encounter the above error, set
org.gradle.java.hometo point to Java 8 home, before you execute the endorctl scan. - A general guideline for determining which Java version to use, is to match the Java version specified in
.gradle/gradle.propertieswith the one used for building your Gradle project.
- To resolve this, use Java’s backward compatibility and instruct Gradle to use the higher JDK version from the error message. Specify
-
Call graph errors:
- endorctl cannot build the project because it cannot locate a dependency in the repository.
- Sometimes the build fails if a Java version discrepancy exists between the required repository version and the version on the system running the scan. For example, the Java required version is 1.8 but the system has 12 installed. Install the required version and try again.
- If you have a private registry and internal dependencies on other projects, you must configure the credentials of the registry. See Configure Maven private registries.
-
If you have a large repository or if the scan fails with out-of-memory issues, you may need to increase the JVM heap size before you can successfully scan. Export the
ENDOR_SCAN_JVM_PARAMETERSenvironment variable with additional JVM parameters before performing the scan as shown below: -
If you use a remote repository configured to authenticate with a client-side certificate, you must add the certificate through an endorctl parameter. Export the
ENDOR_SCAN_JVM_PARAMETERSparameter before performing a scan. See Maven documentation for details.