Reputation: 27
Is it possible to run Symbolic execution on Linux Kernel or parts of it? What about Concolic Testing? Thanks!
Upvotes: 0
Views: 865
Reputation: 686
Yes.
You can use S2E [1] to analyze binaries in-vivo (within a full software stack). Symbolic execution is S2E's default mode but you can also do concolic testing without much effort.
Upvotes: 0