Warning: Undefined variable $dir in /var/www/html/includes/report_guide_infra.php on line 177
보고서 가이드 — ForusSec Lab
U-43

최신 보안 패치 적용

위험도: 상
📚 KISA 기준: U-43
📌 아래 내용이 표준 보고서에 포함되어야 합니다. 자신이 작성한 보고서와 대조하세요.

📋 현황 (점검 명령어 및 결과)

📄 표준 내용
# 현재 커널 버전
$ uname -r
5.15.0-91-generic

# 업그레이드 가능한 패키지 확인
$ apt list --upgradable 2>/dev/null | wc -l
47   ← 47개 패키지 업데이트 미적용

# 보안 업데이트만 확인
$ apt list --upgradable 2>/dev/null | grep -i security | head -10

🔧 조치 방안 및 이행 확인

📄 표준 내용
# 보안 패치 적용
apt-get update
apt-get upgrade -y

# 또는 보안 업데이트만
apt-get install unattended-upgrades
dpkg-reconfigure unattended-upgrades

# 자동 업데이트 설정
# /etc/apt/apt.conf.d/20auto-upgrades
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";