JS: address review comments

This commit is contained in:
Esben Sparre Andreasen
2018-12-10 22:03:52 +01:00
parent bf048e7e49
commit 6d6379fc09
2 changed files with 4 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ abstract class DatabaseAccess extends DataFlow::Node {
abstract class PersistentReadAccess extends DataFlow::Node {
/**
* Gets the corresponding persistent write, if any.
* Gets a corresponding persistent write, if any.
*/
abstract PersistentWriteAccess getAWrite();

View File

@@ -232,6 +232,9 @@ module TaintTracking {
}
}
/**
* A taint propagating data flow edge through persistent storage.
*/
private class StorageTaintStep extends AdditionalTaintStep {
PersistentReadAccess read;