BITPROX™ Server - Security

BITPROX™ Server provides various security measures to ensure uninterrupted service:

  • Split of data directories to public and private. Private folder is never accessible from outside world and stores critical ingformation.
  • Source code is closed and compiled to machine object code which is harder to decompile, makes more difficult for an attacker to perform intrusion.
  • Use of C++ standard library and smart pointers decreases buffer overflow, memory loss, misuse of pointers.
  • Because each web application is executed in its own context(process with own memory address space) attack on one application or failure does not affect other web applications. Strict interprocess communication protocol ensures safe data transmission between server process and child web applications context processes.
  • Operating system mechanisms can be used to encrease security of web applications and server process.

Tags: