mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-12-25 05:22:36 +00:00
* [Update] 修改config * [Update] 移动存储设置到到terminal中 * [Update] 修改permission 查看 * [Update] pre merge * [Update] 录像存储 * [Update] 命令存储 * [Update] 添加存储测试可连接性 * [Update] 修改 meta 值的 key 为大写 * [Update] 修改 Terminal 相关 Storage 配置 * [Update] 删除之前获取录像/命令存储的代码 * [Update] 修改导入失败 * [Update] 迁移文件添加default存储 * [Update] 删除之前代码,添加help_text信息 * [Update] 删除之前代码 * [Update] 删除之前代码 * [Update] 抽象命令/录像存储 APIView * [Update] 抽象命令/录像存储 APIView 1 * [Update] 抽象命令/录像存储 DictField * [Update] 抽象命令/录像存储列表页面 * [Update] 修复CustomDictField的bug * [Update] RemoteApp 页面添加 hidden * [Update] 用户页面添加用户关联授权 * [Update] 修改存储测试可连接性 target * [Update] 修改配置 * [Update] 修改存储前端 Form 渲染逻辑 * [Update] 修改存储细节 * [Update] 统一存储类型到 const 文件 * [Update] 修改迁移文件及Model,创建默认存储 * [Update] 修改迁移文件及Model初始化默认数据 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 限制删除默认存储配置,只允许创建扩展的存储类型 * [Update] 修改ip字段长度 * [Update] 修改ip字段长度 * [Update] 修改一些css * [Update] 修改关联 * [Update] 添加操作日志定时清理 * [Update] 修改记录syslog的instance encoder * [Update] 忽略登录产生的操作日志 * [Update] 限制更新存储时不覆盖原有AK SK 等字段 * [Update] 修改迁移文件添加comment字段 * [Update] 修改迁移文件 * [Update] 添加 comment 字段 * [Update] 修改默认存储no -> null * [Update] 修改细节 * [Update] 更新翻译(存储配置 * [Update] 修改定时任务注册,修改系统用户资产、节点关系api * [Update] 添加监控磁盘任务 * [Update] 修改session * [Update] 拆分serializer * [Update] 还原setting原来的manager
94 lines
3.5 KiB
Python
94 lines
3.5 KiB
Python
# coding: utf-8
|
|
#
|
|
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .base import BaseForm
|
|
|
|
|
|
__all__ = ['SecuritySettingForm']
|
|
|
|
|
|
class SecuritySettingForm(BaseForm):
|
|
# MFA global setting
|
|
SECURITY_MFA_AUTH = forms.BooleanField(
|
|
required=False, label=_("MFA Secondary certification"),
|
|
help_text=_(
|
|
'After opening, the user login must use MFA secondary '
|
|
'authentication (valid for all users, including administrators)'
|
|
)
|
|
)
|
|
# Execute commands for user
|
|
SECURITY_COMMAND_EXECUTION = forms.BooleanField(
|
|
required=False, label=_("Batch execute commands"),
|
|
help_text=_("Allow user batch execute commands")
|
|
)
|
|
SECURITY_SERVICE_ACCOUNT_REGISTRATION = forms.BooleanField(
|
|
required=False, label=_("Service account registration"),
|
|
help_text=_("Allow using bootstrap token register service account, "
|
|
"when terminal setup, can disable it")
|
|
)
|
|
# limit login count
|
|
SECURITY_LOGIN_LIMIT_COUNT = forms.IntegerField(
|
|
min_value=3, max_value=99999,
|
|
label=_("Limit the number of login failures")
|
|
)
|
|
# limit login time
|
|
SECURITY_LOGIN_LIMIT_TIME = forms.IntegerField(
|
|
min_value=5, max_value=99999, label=_("No logon interval"),
|
|
help_text=_(
|
|
"Tip: (unit/minute) if the user has failed to log in for a limited "
|
|
"number of times, no login is allowed during this time interval."
|
|
)
|
|
)
|
|
# ssh max idle time
|
|
SECURITY_MAX_IDLE_TIME = forms.IntegerField(
|
|
min_value=1, max_value=99999, required=False,
|
|
label=_("Connection max idle time"),
|
|
help_text=_(
|
|
'If idle time more than it, disconnect connection '
|
|
'Unit: minute'
|
|
),
|
|
)
|
|
# password expiration time
|
|
SECURITY_PASSWORD_EXPIRATION_TIME = forms.IntegerField(
|
|
min_value=1, max_value=99999, label=_("Password expiration time"),
|
|
help_text=_(
|
|
"Tip: (unit: day) "
|
|
"If the user does not update the password during the time, "
|
|
"the user password will expire failure;"
|
|
"The password expiration reminder mail will be automatic sent to the user "
|
|
"by system within 5 days (daily) before the password expires"
|
|
)
|
|
)
|
|
# min length
|
|
SECURITY_PASSWORD_MIN_LENGTH = forms.IntegerField(
|
|
min_value=6, max_value=30, label=_("Password minimum length"),
|
|
)
|
|
# upper case
|
|
SECURITY_PASSWORD_UPPER_CASE = forms.BooleanField(
|
|
required=False, label=_("Must contain capital letters"),
|
|
help_text=_(
|
|
'After opening, the user password changes '
|
|
'and resets must contain uppercase letters')
|
|
)
|
|
# lower case
|
|
SECURITY_PASSWORD_LOWER_CASE = forms.BooleanField(
|
|
required=False, label=_("Must contain lowercase letters"),
|
|
help_text=_('After opening, the user password changes '
|
|
'and resets must contain lowercase letters')
|
|
)
|
|
# number
|
|
SECURITY_PASSWORD_NUMBER = forms.BooleanField(
|
|
required=False, label=_("Must contain numeric characters"),
|
|
help_text=_('After opening, the user password changes '
|
|
'and resets must contain numeric characters')
|
|
)
|
|
# special char
|
|
SECURITY_PASSWORD_SPECIAL_CHAR = forms.BooleanField(
|
|
required=False, label=_("Must contain special characters"),
|
|
help_text=_('After opening, the user password changes '
|
|
'and resets must contain special characters')
|
|
)
|