Merge branch 'master' of github.com:hgomez/DependencyCheck into hgomez-master

Former-commit-id: 7ce63ad527be7a6270cf877d87c5ad56fe2abb1b
This commit is contained in:
Jeremy Long
2014-02-13 06:08:33 -05:00
9 changed files with 100 additions and 14 deletions

View File

@@ -20,6 +20,8 @@ package org.owasp.dependencycheck.taskdefs;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
@@ -32,6 +34,8 @@ import org.apache.tools.ant.types.ResourceCollection;
import org.apache.tools.ant.types.resources.FileProvider; import org.apache.tools.ant.types.resources.FileProvider;
import org.apache.tools.ant.types.resources.Resources; import org.apache.tools.ant.types.resources.Resources;
import org.owasp.dependencycheck.Engine; import org.owasp.dependencycheck.Engine;
import org.owasp.dependencycheck.analyzer.Analyzer;
import org.owasp.dependencycheck.analyzer.ArchiveAnalyzer;
import org.owasp.dependencycheck.data.nvdcve.CveDB; import org.owasp.dependencycheck.data.nvdcve.CveDB;
import org.owasp.dependencycheck.data.nvdcve.DatabaseException; import org.owasp.dependencycheck.data.nvdcve.DatabaseException;
import org.owasp.dependencycheck.data.nvdcve.DatabaseProperties; import org.owasp.dependencycheck.data.nvdcve.DatabaseProperties;
@@ -616,6 +620,30 @@ public class DependencyCheckTask extends Task {
this.databasePassword = databasePassword; this.databasePassword = databasePassword;
} }
/**
* File extensions to add to analysis next to jar, zip, ....
*/
private String extraExtensions;
/**
* Get the value of extraExtensions.
*
* @return the value of extraExtensions
*/
public String getExtraExtensions() {
return extraExtensions;
}
/**
* Set the value of extraExtensions.
*
* @param extraExtensions new value of extraExtensions
*/
public void setExtraExtensions(String extraExtensions) {
this.extraExtensions = extraExtensions;
}
@Override @Override
public void execute() throws BuildException { public void execute() throws BuildException {
final InputStream in = DependencyCheckTask.class.getClassLoader().getResourceAsStream(LOG_PROPERTIES_FILE); final InputStream in = DependencyCheckTask.class.getClassLoader().getResourceAsStream(LOG_PROPERTIES_FILE);
@@ -626,6 +654,12 @@ public class DependencyCheckTask extends Task {
populateSettings(); populateSettings();
final Engine engine = new Engine(); final Engine engine = new Engine();
if (extraExtensions != null && ! extraExtensions.isEmpty())
for (Analyzer analyzer : engine.getAnalyzers())
if (analyzer instanceof ArchiveAnalyzer)
((ArchiveAnalyzer)analyzer).addSupportedExtensions(new HashSet<String>(Arrays.asList(extraExtensions.split("\\s*,\\s*"))));
for (Resource resource : path) { for (Resource resource : path) {
final FileProvider provider = resource.as(FileProvider.class); final FileProvider provider = resource.as(FileProvider.class);
if (provider != null) { if (provider != null) {

View File

@@ -42,5 +42,6 @@ databaseDriverPath | The path to the database driver JAR file; only used if t
connectionString | The connection string used to connect to the database. | Optional connectionString | The connection string used to connect to the database. | Optional
databaseUser | The username used when connecting to the database. | Optional databaseUser | The username used when connecting to the database. | Optional
databasePassword | The password used when connecting to the database. | Optional databasePassword | The password used when connecting to the database. | Optional
extraExtensions | List of extra extensions to be scanned, comma separated. | Optional

View File

@@ -21,10 +21,14 @@ import java.io.File;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import org.apache.commons.cli.ParseException; import org.apache.commons.cli.ParseException;
import org.owasp.dependencycheck.analyzer.Analyzer;
import org.owasp.dependencycheck.analyzer.ArchiveAnalyzer;
import org.owasp.dependencycheck.cli.CliParser; import org.owasp.dependencycheck.cli.CliParser;
import org.owasp.dependencycheck.data.nvdcve.CveDB; import org.owasp.dependencycheck.data.nvdcve.CveDB;
import org.owasp.dependencycheck.data.nvdcve.DatabaseException; import org.owasp.dependencycheck.data.nvdcve.DatabaseException;
@@ -83,7 +87,7 @@ public class App {
cli.printVersionInfo(); cli.printVersionInfo();
} else if (cli.isRunScan()) { } else if (cli.isRunScan()) {
updateSettings(cli); updateSettings(cli);
runScan(cli.getReportDirectory(), cli.getReportFormat(), cli.getApplicationName(), cli.getScanFiles()); runScan(cli.getReportDirectory(), cli.getReportFormat(), cli.getApplicationName(), cli.getScanFiles(), cli.getExtraExtensions());
} else { } else {
cli.printHelp(); cli.printHelp();
} }
@@ -97,9 +101,14 @@ public class App {
* @param applicationName the application name for the report * @param applicationName the application name for the report
* @param files the files/directories to scan * @param files the files/directories to scan
*/ */
private void runScan(String reportDirectory, String outputFormat, String applicationName, String[] files) { private void runScan(String reportDirectory, String outputFormat, String applicationName, String[] files, String extraExtensions) {
final Engine scanner = new Engine(); final Engine scanner = new Engine();
if (extraExtensions != null && ! extraExtensions.isEmpty())
for (Analyzer analyzer : scanner.getAnalyzers())
if (analyzer instanceof ArchiveAnalyzer)
((ArchiveAnalyzer)analyzer).addSupportedExtensions(new HashSet<String>(Arrays.asList(extraExtensions.split("\\s*,\\s*"))));
for (String file : files) { for (String file : files) {
scanner.scan(file); scanner.scan(file);
} }
@@ -155,6 +164,7 @@ public class App {
final String connectionString = cli.getConnectionString(); final String connectionString = cli.getConnectionString();
final String databaseUser = cli.getDatabaseUser(); final String databaseUser = cli.getDatabaseUser();
final String databasePassword = cli.getDatabasePassword(); final String databasePassword = cli.getDatabasePassword();
final String extraExtensions = cli.getExtraExtensions();
if (propertiesFile != null) { if (propertiesFile != null) {
try { try {
@@ -220,5 +230,8 @@ public class App {
if (databasePassword != null && !databasePassword.isEmpty()) { if (databasePassword != null && !databasePassword.isEmpty()) {
Settings.setString(Settings.KEYS.DB_PASSWORD, databasePassword); Settings.setString(Settings.KEYS.DB_PASSWORD, databasePassword);
} }
if (extraExtensions!= null && !extraExtensions.isEmpty()) {
Settings.setString(Settings.KEYS.EXTRA_EXTENSIONS, extraExtensions);
}
} }
} }

View File

@@ -204,6 +204,10 @@ public final class CliParser {
.withDescription("The url to the Nexus Server.") .withDescription("The url to the Nexus Server.")
.create(); .create();
final Option extraExtensions = OptionBuilder.withArgName("extraExtensions").hasArg().withLongOpt(ArgumentName.EXTRA_EXTENSIONS)
.withDescription("List of extra extensions to be scanned")
.create();
//This is an option group because it can be specified more then once. //This is an option group because it can be specified more then once.
final OptionGroup og = new OptionGroup(); final OptionGroup og = new OptionGroup();
og.addOption(path); og.addOption(path);
@@ -220,7 +224,8 @@ public final class CliParser {
.addOption(verboseLog) .addOption(verboseLog)
.addOption(suppressionFile) .addOption(suppressionFile)
.addOption(disableNexusAnalyzer) .addOption(disableNexusAnalyzer)
.addOption(nexusUrl); .addOption(nexusUrl)
.addOption(extraExtensions);
} }
/** /**
@@ -548,6 +553,15 @@ public final class CliParser {
return line.getOptionValue(ArgumentName.DB_PASSWORD); return line.getOptionValue(ArgumentName.DB_PASSWORD);
} }
/**
* Returns the extra Extensions if specified; otherwise null is returned.
*
* @return the extra Extensions; otherwise null is returned
*/
public String getExtraExtensions() {
return line.getOptionValue(ArgumentName.EXTRA_EXTENSIONS);
}
/** /**
* A collection of static final strings that represent the possible command line arguments. * A collection of static final strings that represent the possible command line arguments.
*/ */
@@ -701,5 +715,9 @@ public final class CliParser {
* The CLI argument name for setting the path to the database driver; in case it is not on the class path. * The CLI argument name for setting the path to the database driver; in case it is not on the class path.
*/ */
public static final String DB_DRIVER_PATH = "dbDriverPath"; public static final String DB_DRIVER_PATH = "dbDriverPath";
/**
* The CLI argument name for setting extra extensions.
*/
public static final String EXTRA_EXTENSIONS = "extraExtension";
} }
} }

View File

@@ -27,4 +27,5 @@ Short | Argument Name | Parameter | Description | Requirement
| \-\-dbPassword | \<password\>| The password for connecting to the database. | Optional | \-\-dbPassword | \<password\>| The password for connecting to the database. | Optional
| \-\-dbUser | \<user\> | The username used to connect to the database. | Optional | \-\-dbUser | \<user\> | The username used to connect to the database. | Optional
| \-\-disableNexus | | Disable the Nexus Analyzer. | Optional | \-\-disableNexus | | Disable the Nexus Analyzer. | Optional
| \-\-nexus | \<url\> | The url to the Nexus Server. | Optional | \-\-nexus | \<url\> | The url to the Nexus Server. | Optional
| \-\-extraExtensions | \<strings\> | List of extensions to be scanned, comma separated. | Optional

View File

@@ -95,6 +95,14 @@ public class ArchiveAnalyzer extends AbstractAnalyzer implements Analyzer {
EXTENSIONS.addAll(ZIPPABLES); EXTENSIONS.addAll(ZIPPABLES);
} }
/**
* Add a list of file EXTENSIONS to be supported by this analyzer.
*
*/
public void addSupportedExtensions(Set<String> extraExtensions) {
EXTENSIONS.addAll(extraExtensions);
}
/** /**
* Returns a list of file EXTENSIONS supported by this analyzer. * Returns a list of file EXTENSIONS supported by this analyzer.
* *

View File

@@ -149,6 +149,10 @@ public final class Settings {
* The path to mono, if available. * The path to mono, if available.
*/ */
public static final String ANALYZER_ASSEMBLY_MONO_PATH = "analyzer.assembly.mono.path"; public static final String ANALYZER_ASSEMBLY_MONO_PATH = "analyzer.assembly.mono.path";
/**
* The extra extensions, if available.
*/
public static final String EXTRA_EXTENSIONS = "extra.extensions";
} }
/** /**
* The properties file location. * The properties file location.

View File

@@ -23,10 +23,7 @@ import java.io.InputStream;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.net.URLEncoder; import java.net.URLEncoder;
import java.text.DateFormat; import java.text.DateFormat;
import java.util.Date; import java.util.*;
import java.util.List;
import java.util.Locale;
import java.util.Set;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.Artifact;
@@ -45,6 +42,8 @@ import org.apache.maven.reporting.MavenMultiPageReport;
import org.apache.maven.reporting.MavenReport; import org.apache.maven.reporting.MavenReport;
import org.apache.maven.reporting.MavenReportException; import org.apache.maven.reporting.MavenReportException;
import org.owasp.dependencycheck.Engine; import org.owasp.dependencycheck.Engine;
import org.owasp.dependencycheck.analyzer.Analyzer;
import org.owasp.dependencycheck.analyzer.ArchiveAnalyzer;
import org.owasp.dependencycheck.data.nvdcve.CveDB; import org.owasp.dependencycheck.data.nvdcve.CveDB;
import org.owasp.dependencycheck.data.nvdcve.DatabaseException; import org.owasp.dependencycheck.data.nvdcve.DatabaseException;
import org.owasp.dependencycheck.data.nvdcve.DatabaseProperties; import org.owasp.dependencycheck.data.nvdcve.DatabaseProperties;
@@ -76,10 +75,6 @@ public class DependencyCheckMojo extends AbstractMojo implements MavenMultiPageR
* Name of the logging properties file. * Name of the logging properties file.
*/ */
private static final String LOG_PROPERTIES_FILE = "log.properties"; private static final String LOG_PROPERTIES_FILE = "log.properties";
/**
* The name of the test scope.
*/
public static final String TEST_SCOPE = "test";
/** /**
* System specific new line character. * System specific new line character.
*/ */
@@ -233,7 +228,11 @@ public class DependencyCheckMojo extends AbstractMojo implements MavenMultiPageR
@Parameter(property = "databasePassword", defaultValue = "", required = false) @Parameter(property = "databasePassword", defaultValue = "", required = false)
private String databasePassword; private String databasePassword;
// </editor-fold> // </editor-fold>
/**
* File extensions to add to analysis next to jar, zip, ....
*/
@Parameter(property = "extraExtensions", required = false)
private String[] extraExtensions;
/** /**
* Executes the Dependency-Check on the dependent libraries. * Executes the Dependency-Check on the dependent libraries.
* *
@@ -246,9 +245,16 @@ public class DependencyCheckMojo extends AbstractMojo implements MavenMultiPageR
populateSettings(); populateSettings();
final Engine engine = new Engine(); final Engine engine = new Engine();
if (extraExtensions != null) {
for (Analyzer analyzer : engine.getAnalyzers())
if (analyzer instanceof ArchiveAnalyzer)
((ArchiveAnalyzer)analyzer).addSupportedExtensions(new HashSet<String>(Arrays.asList(extraExtensions)));
}
final Set<Artifact> artifacts = project.getArtifacts(); final Set<Artifact> artifacts = project.getArtifacts();
for (Artifact a : artifacts) { for (Artifact a : artifacts) {
if (!TEST_SCOPE.equals(a.getScope())) { if (!Artifact.SCOPE_TEST.equals(a.getScope()) && !Artifact.SCOPE_PROVIDED.equals(a.getScope()) && !Artifact.SCOPE_RUNTIME.equals(a.getScope())) {
engine.scan(a.getFile().getAbsolutePath()); engine.scan(a.getFile().getAbsolutePath());
} }
} }

View File

@@ -22,3 +22,4 @@ databaseDriverPath | The path to the database driver JAR file; only used if t
connectionString | The connection string used to connect to the database. | connectionString | The connection string used to connect to the database. |
databaseUser | The username used when connecting to the database. | databaseUser | The username used when connecting to the database. |
databasePassword | The password used when connecting to the database. | databasePassword | The password used when connecting to the database. |
extraExtensions | List of extra extensions to be scanned. |