diff --git a/dependency-check-core/src/main/resources/templates/HtmlReport.vsl b/dependency-check-core/src/main/resources/templates/HtmlReport.vsl index 195ef750e..2de1561e2 100644 --- a/dependency-check-core/src/main/resources/templates/HtmlReport.vsl +++ b/dependency-check-core/src/main/resources/templates/HtmlReport.vsl @@ -578,11 +578,14 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved. #else
  • $esc.html($id.type): $esc.html($id.value) #end + #if ($id.confidence) +   Confidence:$id.confidence + #end #if ($id.type=="cpe") ##yes, we are HTML Encoding into JavaScript... the escape utils don't have a JS Encode and I haven't written one yet    #end - #if( $id.description ) + #if ($id.description)
    $esc.html($id.description) #end
  • diff --git a/dependency-check-core/src/main/resources/templates/XmlReport.vsl b/dependency-check-core/src/main/resources/templates/XmlReport.vsl index b0fb39b82..0c8f0b7cb 100644 --- a/dependency-check-core/src/main/resources/templates/XmlReport.vsl +++ b/dependency-check-core/src/main/resources/templates/XmlReport.vsl @@ -97,7 +97,7 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved. #if($dependency.getIdentifiers().size()>0) #foreach($id in $dependency.getIdentifiers()) - + ($id.value) #if( $id.url ) $esc.xml($id.url)