small corrections in documentation

Co-authored-by: Asger F <asgerf@github.com>
This commit is contained in:
Erik Krogh Kristensen
2020-06-15 23:40:27 +02:00
committed by GitHub
parent d2716c532c
commit 315faaffee
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@
should instead insert only the environment variables that are supposed to be public.
</p>
<p>
The issue has been fixed in the below, where only the <code>DEBUG</code> environment variable is inserted into the artifact.
The issue has been fixed below, where only the <code>DEBUG</code> environment variable is inserted into the artifact.
</p>
<sample src="examples/build-leak-fixed.js"/>
</example>

View File

@@ -20,7 +20,7 @@ module BuildArtifactLeak {
* A taint tracking configuration for storage of sensitive information in build artifact.
*/
class Configuration extends TaintTracking::Configuration {
Configuration() { this = "CleartextLogging" }
Configuration() { this = "BuildArtifactLeak" }
override predicate isSource(DataFlow::Node source, DataFlow::FlowLabel lbl) {
source.(CleartextLogging::Source).getLabel() = lbl

View File

@@ -12,7 +12,7 @@ private import semmle.javascript.security.SensitiveActions::HeuristicNames
*/
module BuildArtifactLeak {
/**
* A data flow sink for clear-text logging of sensitive information.
* A data flow sink for storage of sensitive information in a build artifact.
*/
abstract class Sink extends DataFlow::Node {
/**