Is it possible to run Symbolic execution on Linux Kernel or parts of it? What about Concolic Testing? Thanks!
Asked
Active
Viewed 814 times
0
-
Concolic=Concrete+Symbolic – user3564532 May 15 '14 at 08:09
1 Answers
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.

JC1
- 657
- 6
- 21
-
-
I communicated with the S2E author. He said that 32-bit is not supported. Because Symbolic Execution is resource intensive whereas 32-bit OS is limiting. – user3564532 Jun 23 '14 at 09:40
-
-
1