Web UI for BunkerWeb π‘οΈ
100K+
π Websiteβ
|
π Documentationβ
|
π¨βπ» Demoβ
|
π‘οΈ Examplesβ
|
π¬ Chatβ
|
π Forumβ
βοΈ Configuratorβ
|
πΊοΈ Threatmapβ
π‘οΈ Make security by default great again !
BunkerWeb is a next-generation and open-source Web Application Firewall (WAF).
Being a full-featured web server (based on NGINXβ under the hood), it will protect your web services to make them "secure by default". BunkerWeb integrates seamlessly into your existing environments (Linuxβ , Dockerβ , Swarmβ , Kubernetesβ , β¦) and is fully configurable (don't panic, there is an awesome web UIβ if you don't like the CLI) to meet your own use-cases . In other words, cybersecurity is no more a hassle.
BunkerWeb contains primary security featuresβ as part of the core but can be easily extended with additional ones thanks to a plugin systemβ .
A non-exhaustive list of security features :
Learn more about the core security features in the security tuningβ section of the documentation.
A demo website protected with BunkerWeb is available at demo.bunkerweb.ioβ . Feel free to visit it and perform some security tests.
You will find more information about the key concepts of BunkerWeb in the documentationβ .
The first concept is the integration of BunkerWeb into the target environment. We prefer to use the word "integration" instead of "installation" because one of the goals of BunkerWeb is to integrate seamlessly into existing environments.
The following integrations are officially supported :
Once BunkerWeb is integrated into your environment, you will need to configure it to serve and protect your web applications.
The configuration of BunkerWeb is done by using what we call the "settings" or "variables". Each setting is identified by a name such as AUTO_LETS_ENCRYPT or USE_ANTIBOT. You can assign values to the settings to configure BunkerWeb.
Here is a dummy example of a BunkerWeb configuration :
SERVER_NAME=www.example.com
AUTO_LETS_ENCRYPT=yes
USE_ANTIBOT=captcha
REFERRER_POLICY=no-referrer
USE_MODSECURITY=no
USE_GZIP=yes
USE_BROTLI=no
You will find an easy to use settings generator at config.bunkerweb.ioβ .
The multisite mode is a crucial concept to understand when using BunkerWeb. Because the goal is to protect web applications, we intrinsically inherit the concept of "virtual host" or "vhost" (more info hereβ ) which makes it possible to serve multiple web applications from a single (or a cluster of) instance.
By default, the multisite mode of BunkerWeb is disabled which means that only one web application will be served and all the settings will be applied to it. The typical use case is when you have a single application to protect : you don't have to worry about the multisite and the default behavior should be the right one for you.
When multisite mode is enabled, BunkerWeb will serve and protect multiple web applications. Each web application is identified by a unique server name and have its own set of settings. The typical use case is when you have multiple applications to protect and you want to use a single (or a cluster depending of the integration) instance of BunkerWeb.
Because meeting all the use cases only using the settings is not an option (even with external pluginsβ ), you can use custom configurations to solve your specific challenges.
Under the hood, BunkerWeb uses the notorious NGINX web server, that's why you can leverage its configuration system for your specific needs. Custom NGINX configurations can be included in different contextsβ like HTTP or server (all servers and/or specific server block).
Another core component of BunkerWeb is the ModSecurity Web Application Firewall : you can also use custom configurations to fix some false positives or add custom rules for example.
State of the current configuration of BunkerWeb is stored in a backend database which contains the following data :
The following backend database are supported : SQLite, MariaDB, MySQL and PostgreSQL
To make things automagically work together, a dedicated service called the scheduler is in charge of :
In other words, the scheduler is the brain of BunkerWeb.
We provide ready to use prebuilt images for x64, x86, armv7 and arm64 platforms on Docker Hubβ .
Docker integration key concepts are :
You will find more information in the Docker integration sectionβ of the documentation.
The downside of using environment variables is that the container needs to be recreated each time there is an update which is not very convenient. To counter that issue, you can use another image called autoconf which will listen for Docker events and automatically reconfigure BunkerWeb in real-time without recreating the container.
Instead of defining environment variables for the BunkerWeb container, you simply add labels to your web applications containers and the autoconf will "automagically" take care of the rest.
You will find more information in the Docker autoconf sectionβ of the documentation.
To automatically configure BunkerWeb instances, a special service, called autoconf will listen for Docker Swarm events like service creation or deletion and automatically configure the BunkerWeb instances in real-time without downtime.
Like the Docker autoconf integrationβ , configuration for web services is defined using labels starting with the special bunkerweb. prefix.
You will find more information in the Swarm sectionβ of the documentation.
The autoconf acts as an Ingress controllerβ and will configure the BunkerWeb instances according to the Ingress resourcesβ . It also monitors other Kubernetes objects like ConfigMapβ for custom configurations.
You will find more information in the Kubernetes sectionβ of the documentation.
List of supported Linux distros :
Repositories of Linux packages for BunkerWeb are available on PackageCloudβ , they provide a bash script to automatically add and trust the repository (but you can also follow the manual installationβ instructions if you prefer).
You will find more information in the Linux sectionβ of the documentation.
List of supported Linux distros :
Ansibleβ is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates.
A specific BunkerWeb Ansible role is available on Ansible Galaxyβ (source code is available hereβ ).
You will find more information in the Ansible sectionβ of the documentation.
We maintain ready to use Vagrant boxes hosted on Vagrant cloud for the following providers :
You will find more information in the Vagrant sectionβ of the documentation.
Once you have setup BunkerWeb with the integration of your choice, you can follow the quickstart guideβ that will cover the following common use cases :
BunkerWeb offers many security features that you can configure with settingsβ . Even if the default values of settings ensure a minimal "security by default", we strongly recommend you to tune them. By doing so you will be able to ensure a security level of your choice but also manage false positives.
You will find more information in the security tuning sectionβ of the documentation.
To help you tuning BunkerWeb we have made an easy to use settings generator tool available at config.bunkerweb.ioβ .
As a general rule when multisite mode is enabled, if you want to apply settings with multisite context to a specific server you will need to add the primary (first) server name as a prefix like www.example.com_USE_ANTIBOT=captcha or myapp.example.com_USE_GZIP=yes for example.
When settings are considered as "multiple", it means that you can have multiple groups of settings for the same feature by adding numbers as suffix like REVERSE_PROXY_URL_1=/subdir, REVERSE_PROXY_HOST_1=http://myhost1, REVERSE_PROXY_URL_2=/anotherdir, REVERSE_PROXY_HOST_2=http://myhost2, ... for example.
Check the settings sectionβ of the documentation to get the full list.
The "Web UI" is a web application that helps you manage your BunkerWeb instance using a user-friendly interface instead of the command-line one.
You will find more information in the Web UI sectionβ of the documentation.
BunkerWeb comes with a plugin system to make it possible to easily add new features. Once a plugin is installed, you can manage it using additional settings defined by the plugin.
Here is the list of "official" plugins that we maintain (see the bunkerweb-pluginsβ repository for more information) :
| Name | Version | Description | Link |
|---|---|---|---|
| ClamAV | 1.2 | Automatically scans uploaded files with the ClamAV antivirus engine and denies the request when a file is detected as malicious. | bunkerweb-plugins/clamavβ |
| Coraza | 1.2 | Inspect requests using a the Coraza WAF (alternative of ModSecurity). | bunkerweb-plugins/corazaβ |
| CrowdSec | 1.2 | CrowdSec bouncer for BunkerWeb. | bunkerweb-plugins/crowdsecβ |
| Discord | 1.2 | Send security notifications to a Discord channel using a Webhook. | bunkerweb-plugins/discordβ |
| Slack | 1.2 | Send security notifications to a Slack channel using a Webhook. | bunkerweb-plugins/slackβ |
| VirusTotal | 1.2 | Automatically scans uploaded files with the VirusTotal API and denies the request when a file is detected as malicious. | bunkerweb-plugins/virustotalβ |
| WebHook | 1.2 | Send security notifications to a custom HTTP endpoint using a Webhook. | bunkerweb-plugins/slackβ |
You will find more information in the plugins sectionβ of the documentation.
We offer professional services related to BunkerWeb like :
Please contact us at [email protected]β if you are interested.
To get free community support you can use the following media :
Please don't use GitHub issuesβ to ask for help, use it only for bug reports and feature requests.
This project is licensed under the terms of the GNU Affero General Public License (AGPL) version 3β .
If you would like to contribute to the plugins you can read the contributing guidelinesβ to get started.
We take security bugs as serious issues and encourage responsible disclosure, see our security policyβ for more information.
Content type
Image
Digest
sha256:a20731bedβ¦
Size
112.4 MB
Last updated
1 day ago
docker pull bunkerity/bunkerweb-ui:dev