Rename sink kind to "credentials-password" to match naming convention

This commit is contained in:
Ed Minnix
2023-09-03 21:41:36 -04:00
parent 3ee0fa9bc4
commit 0612b3795a
36 changed files with 127 additions and 127 deletions

View File

@@ -15,7 +15,7 @@ abstract class CredentialSinkNode extends DataFlow::Node { }
* A node representing a password being passed to a method.
*/
class PasswordSink extends CredentialSinkNode {
PasswordSink() { sinkNode(this, "credential-password") }
PasswordSink() { sinkNode(this, "credentials-password") }
}
/**