python: create LDAP module in Concepts

This commit is contained in:
Rasmus Lerchedahl Petersen
2022-02-01 14:39:58 +01:00
parent c2cd58edc4
commit 1e2428cb6b
4 changed files with 32 additions and 29 deletions

View File

@@ -60,14 +60,14 @@ module LdapInjection {
* A logging operation, considered as a flow sink.
*/
class LdapExecutionAsDnSink extends DnSink {
LdapExecutionAsDnSink() { this = any(LdapExecution ldap).getBaseDn() }
LdapExecutionAsDnSink() { this = any(LDAP::LdapExecution ldap).getBaseDn() }
}
/**
* A logging operation, considered as a flow sink.
*/
class LdapExecutionAsFilterSink extends FilterSink {
LdapExecutionAsFilterSink() { this = any(LdapExecution ldap).getFilter() }
LdapExecutionAsFilterSink() { this = any(LDAP::LdapExecution ldap).getFilter() }
}
/**