Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 315faaf

Browse files
erik-kroghasgerf
andauthored
small corrections in documentation
Co-authored-by: Asger F <[email protected]>
1 parent d2716c5 commit 315faaf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

javascript/ql/src/Security/CWE-312/BuildArtifactLeak.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
should instead insert only the environment variables that are supposed to be public.
2727
</p>
2828
<p>
29-
The issue has been fixed in the below, where only the <code>DEBUG</code> environment variable is inserted into the artifact.
29+
The issue has been fixed below, where only the <code>DEBUG</code> environment variable is inserted into the artifact.
3030
</p>
3131
<sample src="examples/build-leak-fixed.js"/>
3232
</example>

javascript/ql/src/semmle/javascript/security/dataflow/BuildArtifactLeak.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module BuildArtifactLeak {
2020
* A taint tracking configuration for storage of sensitive information in build artifact.
2121
*/
2222
class Configuration extends TaintTracking::Configuration {
23-
Configuration() { this = "CleartextLogging" }
23+
Configuration() { this = "BuildArtifactLeak" }
2424

2525
override predicate isSource(DataFlow::Node source, DataFlow::FlowLabel lbl) {
2626
source.(CleartextLogging::Source).getLabel() = lbl

javascript/ql/src/semmle/javascript/security/dataflow/BuildArtifactLeakCustomizations.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ private import semmle.javascript.security.SensitiveActions::HeuristicNames
1212
*/
1313
module BuildArtifactLeak {
1414
/**
15-
* A data flow sink for clear-text logging of sensitive information.
15+
* A data flow sink for storage of sensitive information in a build artifact.
1616
*/
1717
abstract class Sink extends DataFlow::Node {
1818
/**

0 commit comments

Comments
 (0)