Create New Document

The title of your document (will be displayed as H1)
URL-friendly name (no spaces, use dashes)
Path where to create document (optional, use forward slashes to create subdirectories)

Move/Rename Document

Current location of the document
New path for the document (including the slug)
This only changes the document's path. It does not modify the document's title (H1 heading).

Delete Document

Are you sure you want to delete this document? This action cannot be undone.

Warning: If this is a folder, all contents including subfolders and documents will be deleted.

Message

Message content goes here.

Confirm Action

Are you sure?

Attachments

Allowed file types: jpg, jpeg, png, gif, svg, webp, txt, log, csv, sfd, zip, pdf, docx, xlsx, pptx, mp4 (Max: 10MB)

Document Files

Loading attached files...

Document History

Previous Versions

Loading versions...

Preview

Select a version to preview

Wiki Settings

Language for the user interface
Number of versions to keep per document. Set to 0 to disable versioning.
Maximum allowed file size for uploads in MB.

User Management

Add New User

Leave empty to keep current password
Users with these groups can access restricted sections.

Define path-based access rules for sections of your wiki, then assign users to groups in the Users tab. Rules are evaluated in order. First match wins.

Active Rules

Import markdown files from a ZIP archive. Files will be processed and stored in the appropriate document structure. Directory structure in the ZIP (category/subcategory) will be preserved in the wiki.

Upload a ZIP file containing markdown (.md) files to import.

Create and manage backups of your wiki data. Backups include all documents, images, and configuration files.

Available Backups

Loading backups...

Add/Edit Access Rule

Selected: /

Add Column

Banner

Linux 安全基线检查清单

来源:linux基线检查(1).xlsx(92 项检查条目)
整理时间:2026-07-23


📋 总览

风险级别 检查项数量
🔴 高危 28 项
🟡 中危 64 项

🔴 一、高危检查项

1.1 账号与口令管理

① 检查用户缺省 UMASK

② 检查口令重复次数限制

③ 检查口令策略复杂度

④ 检查口令锁定策略

⑤ 检查口令生存周期

⑥ 检查是否删除或锁定无关账号

⑦ 检查是否按角色进行账号管理

⑧ 检查是否按用户分配账号(责任到人)

⑨ 检查账号文件权限设置

⑩ 检查是否限制 root 远程登录


1.2 文件系统安全

⑪ 检查是否取消 SUID/SGID 属性


1.3 FTP 安全

⑫ FTP-限制用户登录后访问的目录(chroot)

⑬ FTP-限制用户登录(/etc/ftpusers)

⑭ FTP-文件/目录存取权限


1.4 网络与服务安全

⑮ 检查 SNMP Community 字符串

⑯ 检查是否禁止 IP 路由转发

⑰ 检查是否禁止 ICMP 重定向

⑱ 检查主机访问控制(IP 限制)

⑲ 检查是否使用 SSH 替代 Telnet


🟡 二、中危检查项

2.1 日志审计(8 项)

序号 检查项 要求
配置远程日志保存 将日志发到远程日志服务器(@192.168.x.x
记录 su 日志 authpriv.info /var/log/authlog
记录安全事件日志 *.err;kern.debug;daemon.notice /var/log/messages
记录账户登录日志 auth.info /var/log/authlog
日志文件权限 日志文件权限不高于 640

2.2 服务管理(9 项)

序号 检查项 要求
检查开放端口 查看当前开放端口是否合规
检查运行进程 查看是否存在可疑进程
检查启动服务 查看开机自启的服务
关闭不必要服务 最小化运行的服务
关闭不必要启动项 最小化开机启动项
禁止匿名 FTP 关闭匿名 FTP 访问
配置 NFS 服务限制 限制 NFS 导出范围和权限
配置 NTP 时间同步 配置时间同步服务器
最小化安装 只安装必需软件包

2.3 登录安全(8 项)

序号 检查项 要求
登录超时设置 配置登录超时自动退出(TMOUT)
禁止 Ctrl+Alt+Del 防止物理终端重启
设置屏幕锁定 防止未授权物理访问
SSH 警告 Banner 配置 /etc/ssh/sshd_configBanner 文件
Telnet 警告 Banner 修改 telnet 登录警告信息
FTP 警告 Banner 修改 FTP 登录警告信息
登录成功后警告 Banner 配置 /etc/motd 警告信息

2.4 系统安全加固(5 项)

序号 检查项 要求
安装 OS 补丁 及时安装安全补丁
检查空密码账户 不允许存在空密码账户
检查 UID=0 的非 root 用户 只有 root 的 UID 为 0
重要文件权限设置 检查关键系统文件权限(如 /etc/passwd 等)
账户目录 .netrc 文件 检查是否存在 .netrc 文件(含明文密码风险)

2.5 硬件安全(1 项)

序号 检查项 要求
EEPROM 密码 硬件启动时要求输入密码

🛠 三、常用检查脚本速查

3.1 一键检查脚本示例

# 检查 UMASK
cat /etc/profile | sed '/^#/d' | sed '/^$/d' | grep -i "umask"

# 检查账号文件权限
ls -l /etc/passwd /etc/group /etc/shadow

# 查找 SUID/SGID 文件
find /usr/bin -type f \( -perm -04000 -o -perm -02000 \) -exec ls -lg {} \;

# 检查空密码账户
awk -F: '( $2 == "" ) { print $1 }' /etc/shadow

# 检查 UID=0 的非 root 用户
awk -F: '($3 == 0) { print $1 }' /etc/passwd

# 检查口令策略
cat /etc/login.defs | sed '/^#/d' | sed '/^$/d'

# 查看开放端口
netstat -antp | grep LISTEN

# 查看运行进程
ps aux

📝 使用说明

  1. 逐项检查:从上到下逐一执行每项检查的操作步骤
  2. 填写结果:在「是否符合」列填写 ✅ 符合 / ❌ 不符合 / N/A 不适用
  3. 风险排序:优先处理 🔴 高危项,再处理 🟡 中危项
  4. 修复闭环:不符合的项记录修复措施并复查

Attached Files

Loading attached files...
Search Results