Is there an OWASP validation tool for a scala project?

I found that for Java projects there is an OWASP dependency checker: https://www.owasp.org/index.php/OWASP_Dependency_Check

I tried the tool in Scala projects but did not find the dependencies.

Is there something similar for Scala projects?

+6
source share
1 answer

Now there is (June 2016): albuch/sbt-dependency-check from Alexander vs Buchholz .

SBT plugin for checking OWASP dependencies.
This can be used to monitor the dependencies used in the application and to report if there are well-known vulnerabilities (for example, CVE).

Starts checking the dependency on the current project, its totality and dependencies and generates a report for each project.

You need to add /plugins.sbt to the project

 addSbtPlugin("net.vonbuchholtz" % "sbt-dependency-check" % "0.1.4") 

and after that just call

 $ sbt dependencyCheck 

The report will be written to the location crossTarget.value (the default is target / scala -2.11 /).

+3
source

Source: https://habr.com/ru/post/985754/


All Articles