← all tools
◆ AI/LLM Security
beelzebub
v3.9.0 open-sourceA secure low code deception runtime framework, leveraging AI for System Virtualization.
plugins: - source: github.com/your-org/beelzebub-myplugin - source: github.com/your-org/[email protected] ./install.sh --local --no-run && beelzebub validate --conf-core ./configurations/beelzebub.yaml --conf-services ./configurations/services/
Summary
A secure low code deception runtime framework, leveraging AI for System Virtualization.
Release history
- v3.9.0
Beelzebub v3.9.0 adds a ServicePlugin interface for boot-time background plugins, migrates plugin declarations to YAML config, and introduces shared JSON Schema validation for honeypot configurations.
└──▷ GET THIS VERSION$ git clone --branch v3.9.0 https://github.com/beelzebub-labs/beelzebub.git # already have the repo? check out this version: $ git checkout v3.9.0
└──▷ USE ITDeclare plugins in the new YAML config somake startautomatically installs, wires, and compiles them into the binary.plugins: - source: github.com/your-org/beelzebub-myplugin - source: github.com/your-org/[email protected]
Run a non-interactive local install and build without starting the runtime, then validate all configs before launching — useful in CI.$ ./install.sh --local --no-run && beelzebub validate --conf-core ./configurations/beelzebub.yaml --conf-services ./configurations/services/
- ›Adds
configurations/plugins.yamlas the canonical home for plugin declarations, replacing programmatic registration; plugins listed under theplugins:key are installed and compiled in at build time viamake startormake docker. - ›Introduces the
ServicePlugininterface inpkg/pluginfor background plugins that start automatically at runtime boot, alongside the existingCommandPluginand HTTPPlugin interfaces. - ›Adds shared JSON Schema validation for honeypot service configurations, enabling
beelzebub validateto enforce a common schema across all service definition files. - ›Improves the
./install.shinstaller with new flags--local,--docker, and--no-runfor non-interactive and headless deployment workflows.
- ›Adds