File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ruby/ql/lib/codeql/ruby/security Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ module CodeInjection {
29
29
TFull ( ) or
30
30
TSubString ( )
31
31
32
- /** Flow states used to distinguish whether an attacker controls the entire string. */
32
+ /** A flow state used to distinguish whether an attacker controls the entire string. */
33
33
class State extends TState {
34
34
string toString ( ) { result = this .getStringRepresentation ( ) }
35
35
@@ -44,12 +44,12 @@ module CodeInjection {
44
44
}
45
45
46
46
/**
47
- * Flow state used for normal tainted data, where an attacker might only control a substring.
47
+ * A flow state used for normal tainted data, where an attacker might only control a substring.
48
48
*/
49
49
class SubString extends State , TSubString { }
50
50
51
51
/**
52
- * Flow state used for data that is entirely controlled by the attacker.
52
+ * A flow state used for data that is entirely controlled by the attacker.
53
53
*/
54
54
class Full extends State , TFull { }
55
55
}
You can’t perform that action at this time.
0 commit comments