Fail2Ban operates by monitoring log files (e.g. /var/log/auth.log, /var/log/apache/access.log, etc.) for selected entries and running scripts based on them. Most commonly this is used to block selected IP addresses that may belong to hosts that are trying to breach the system's security.
What is fail2ban-fastapi?
Frontend (vuejs) and backend (fastapi). FastAPI reads it's data from files created by this script (since Fail2ban's internal sqlite database is not human readable). The script user must have permissions to execute $ fail2ban-client to generate this data.
.
├── api
│ └── data/
│ └── jails.txt
│ └── jail_<jailname>.txt
│ └── jail_<jailname>.txt
First of all, the script needs to be able to run fail2ban-client command. This is usually done with root permissions. To solve this, you need to create a new (non-root) user and run fail2ban as this user.
$ sudo apt install fail2ban
$ sudo adduser fail2banSet User to "fail2ban" in the [Service] section in /lib/systemd/system/fail2ban.service
...
[Service]
User=fail2ban
...
Change permissions of /var/run/fail2ban.
$ sudo chown -R fail2ban:root /var/run/fail2banVerify permissions with sudo ls -la /var/run/fail2ban/. Make sure fail2ban user can read and write to this location.
Depending on your jails, the fail2ban user needs to be able read your logfiles (ex. /var/log/auth.log). An example configuration can be found in jail.local.sample.
So change permisions of your logfiles.
$ sudo chown fail2ban:root /var/log/auth.logNow you should be all set to reload systemctl daemon and restart fail2ban.
$ sudo systemctl daemon-reload
$ sudo systemctl restart fail2ban.serviceCheck status of fail2ban.service to make sure we're all set and you have no errors.
Clone rep, create virtualenv and install requirements.
$ git clone [email protected]:dunderrrrrr/fail2ban-fastapi.git
$ mkvirtualenv --python=/usr/bin/python3 fail2ban-fastapi
$ pip install -r requirements.txtBefore starting FastAPI backend we'll need to generate some Fail2ban data. This will only be necessary once when setting up Fail2ban-FastAPI for the first time on.
$ cd api/
$ python first_init.pyStart FastAPI backend.
$ python main.pyStart vuejs frontend.
$ npm install
$ npm run devFastAPI backend can be access at http://localhost:8000.
Frontend access at http://localhost:8080.