Merge pull request #15203 from pwntester/patch-3

Ruby: Update Kernel.qll to include `Object.send` aliases
This commit is contained in:
Alex Ford 2024-01-08 15:32:57 +00:00 коммит произвёл GitHub
Родитель a743fca3a5 dbefc132de
Коммит ef8ca55d92
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -43,7 +43,9 @@ module Kernel {
* ```
*/
private predicate isPublicKernelMethod(string method) {
method in ["class", "clone", "frozen?", "tap", "then", "yield_self", "send"]
method in [
"class", "clone", "frozen?", "tap", "then", "yield_self", "send", "public_send", "__send__"
]
}
/**
@ -167,7 +169,7 @@ module Kernel {
* ```
*/
class SendCallCodeExecution extends CodeExecution::Range, KernelMethodCall {
SendCallCodeExecution() { this.getMethodName() = "send" }
SendCallCodeExecution() { this.getMethodName() = ["send", "public_send", "__send__"] }
override DataFlow::Node getCode() { result = this.getArgument(0) }