user3564532
user3564532

Reputation: 27

Symbolic Execution/Concolic Testing on OS Kernel

Is it possible to run Symbolic execution on Linux Kernel or parts of it? What about Concolic Testing? Thanks!

Upvotes: 0

Views: 865

Answers (1)

JC1
JC1

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.

[1] https://s2e.systems/

Upvotes: 0

Related Questions