tree: 1b5897356ce96d1a236ad6e39ea3795191274fa0 [path history] [tgz]
  1. examples/
  2. network_proxy/
  3. testcases/
  4. unwind/
  5. util/
  6. bpfdisassembler.cc
  7. bpfdisassembler.h
  8. buffer.cc
  9. buffer.h
  10. buffer_test.cc
  11. BUILD.bazel
  12. client.cc
  13. client.h
  14. CMakeLists.txt
  15. comms.cc
  16. comms.h
  17. comms_test.cc
  18. comms_test.proto
  19. executor.cc
  20. executor.h
  21. fork_client.cc
  22. fork_client.h
  23. forkingclient.cc
  24. forkingclient.h
  25. forkserver.cc
  26. forkserver.h
  27. forkserver.proto
  28. forkserver_bin.cc
  29. forkserver_test.cc
  30. global_forkclient.cc
  31. global_forkclient.h
  32. global_forkclient_lib_ctor.cc
  33. ipc.cc
  34. ipc.h
  35. ipc_test.cc
  36. limits.h
  37. limits_test.cc
  38. logserver.cc
  39. logserver.h
  40. logserver.proto
  41. logsink.cc
  42. logsink.h
  43. monitor.cc
  44. monitor.h
  45. mounts.cc
  46. mounts.h
  47. mounts_test.cc
  48. mounttree.proto
  49. namespace.cc
  50. namespace.h
  51. namespace_test.cc
  52. notify.h
  53. notify_test.cc
  54. policy.cc
  55. policy.h
  56. policy_test.cc
  57. policybuilder.cc
  58. policybuilder.h
  59. policybuilder_test.cc
  60. README.md
  61. regs.cc
  62. regs.h
  63. result.cc
  64. result.h
  65. sandbox2.cc
  66. sandbox2.h
  67. sandbox2_test.cc
  68. sanitizer.cc
  69. sanitizer.h
  70. sanitizer_test.cc
  71. stack_trace.cc
  72. stack_trace.h
  73. stack_trace_test.cc
  74. syscall.cc
  75. syscall.h
  76. syscall_defs.cc
  77. syscall_defs.h
  78. syscall_test.cc
  79. testing.h
  80. util.cc
  81. util.h
  82. util_test.cc
  83. violation.proto
sandboxed_api/sandbox2/README.md

Sandbox2

Sandbox2 is a C++ security sandbox for Linux which can be used to run untrusted programs or portions of programs in confined environments. The idea is that the runtime environment is so restricted that security bugs such as buffer overflows in the protected region cause no harm.

Documentation

Detailed developer documentation is available on the Google Developers site for Sandboxed API under Sandbox2.

There is also a Getting Started guide for Sandbox2.