Jai Verma

Results 3 comments of Jai Verma

Thank you for this comment. You are absolutely right. I spent quite some time debugging my code and realised that what is mentioned in the docs is different from how...

Hi @fabsx00 I tested this again with [Joern v1.1.1](https://github.com/ShiftLeftSecurity/joern/releases/tag/v1.1.1), but it seems to give the same result. ```scala def networkToMemcpy() = { val source = cpg.call.name("ntoh(s|l|ll)") val sink = cpg.call.name("memcpy").argument(3)...

Here are two queries that I use for similar patterns. For finding mismatched casts, similar to the one in the example: ```scala cpg.call.name(".cast").filter( call => call.argument.order(1).code != call.argument.order(2).evalType).l ``` For...