0

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

Cactus
  • 27,075
  • 9
  • 69
  • 149

1 Answers1

0

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/

JC1
  • 657
  • 6
  • 21