mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
small corrections in documentation
Co-authored-by: Asger F <asgerf@github.com>
This commit is contained in:
committed by
GitHub
parent
d2716c532c
commit
315faaffee
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user