Files
codeql-c-sqli/mycustom.qll
2025-06-05 14:08:01 -07:00

17 lines
381 B
Plaintext

import cpp
import semmle.code.cpp.security.Security
import semmle.code.cpp.security.FlowSources
class MyFS extends LocalFlowSource {
MyFS () {
exists(ReturnStmt rs |
rs.getEnclosingFunction().getName() = "get_user_info"
and this.asExpr() = rs.getExpr()
)
}
override string getSourceType() {
result = "foo"
}
}