mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
23 lines
957 B
Python
23 lines
957 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Forms for security module
|
|
"""
|
|
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class SecurityForm(forms.Form):
|
|
"""Security configuration form"""
|
|
restricted_access = forms.BooleanField(
|
|
label=_('Restrict console logins (recommended)'), required=False,
|
|
help_text=_('When this option is enabled, only users in the "admin" '
|
|
'group will be able to log in to console or via SSH. '
|
|
'Console users may be able to access some services '
|
|
'without further authorization.'))
|
|
fail2ban_enabled = forms.BooleanField(
|
|
label=_('Fail2Ban (recommended)'), required=False,
|
|
help_text=_('When this option is enabled, Fail2Ban will limit '
|
|
'brute force break-in attempts to the SSH server and '
|
|
'other enabled password protected internet-services.'))
|