소스 정보
- 저장소
- CyberStrikeus/CyberStrike
- 최근 소스 활동
- 2026년 4월 22일 14:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,653
- 포크
- 254
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-ubuntu2004-v300-1-1-1-10명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
macOS post-exploitation for credential harvesting, DTrace monitoring, TCC bypass, and stealth operations via native tools
Windows userland post-exploitation for credential harvesting, monitoring, AMSI/ETW bypass, and stealth operations
Kubernetes post-exploitation for container escape, secret extraction, RBAC abuse, and cluster persistence
| name | cis-ubuntu2004-v300-1-1-1-10 |
| description | Ensure unused filesystems kernel modules are not available |
| category | cis-storage |
| version | 3.0.0 |
| author | cyberstrike-official |
| tags | ["cis","ubuntu","linux","ubuntu-20.04","kernel-module"] |
| cis_id | 1.1.1.10 |
| cis_benchmark | CIS Ubuntu Linux 20.04 LTS Benchmark v3.0.0 |
| tech_stack | ["ubuntu","linux"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Level 1 - Server, Level 1 - Workstation, Assessment: Manual
Filesystem kernel modules are pieces of code that can be dynamically loaded into the Linux kernel to extend its filesystem capabilities, or so-called base kernel, of an operating system. Filesystem kernel modules are typically used to add support for new hardware (as device drivers), or for adding system calls.
While loadable filesystem kernel modules are a convenient method of modifying the running kernel, this can be abused by attackers on a compromised system to prevent detection of their processes or files, allowing them to maintain control over the system. Many rootkits make use of loadable filesystem kernel modules in this way.
Removing support for unneeded filesystem types reduces the local attack surface of the system. If this filesystem type is not needed, disable it. The following filesystem kernel modules have known CVE's and should be made unavailable if no dependencies exist:
afs - CVE-2022-37402ceph - CVE-2022-0670cifs - CVE-2022-29869exfat CVE-2022-29973ext CVE-2022-1184fat CVE-2022-22043fscache CVE-2022-3630fuse CVE-2023-0386gfs2 CVE-2023-3212nfs_common CVE-2023-6660nfsd CVE-2022-43945smbfs_common CVE-2022-2585This list may be quite extensive and covering all edges cases is difficult. Therefore, it's crucial to carefully consider the implications and dependencies before making any changes to the filesystem kernel module configurations.
WARNING: disabling or denylisting filesystem modules that are in use on the system may be FATAL. It is extremely important to thoroughly review this list.
Run the following script to:
Review the generated output.
#!/usr/bin/env bash
{
a_output=(); a_output2=(); a_modprobe_config=(); a_excluded=(); a_available_modules=()
a_ignore=( )
a_cve_exists=( )
()
{
l_out2=; grep -Pq -- <<< && l_out2=
! grep -Pq -- <<< ;
a_output2+=()
! grep -Pq -- <<< ;
a_output2+=()
lsmod | grep &> /dev/null;
l_output2+=( )
}
IFS= -r -d $ l_module_dir;
a_available_modules+=()
< <(find -mindepth 1 -maxdepth 1 - d ! -empty -print0)
IFS= -r l_exclude;
grep -Pq -- <<< ;
a_output2+=()
grep -Pq -- <<< ;
a_output+=()
< <(findmnt -knD | awk | -u)
a_modprobe_config+=()
< <(modprobe --showconfig | grep -P )
l_mod_name ;
[ =~ overlay ]] && l_mod_name=
[ != ] && f_module_fix
[ -gt 0 ] && \
\
[ -le 0 ];
[ -gt 0 ] &&
}
No unused filesystem kernel modules should be enabled. The audit script should return a passing state.
.conf with install filesystem kernel modules /bin/false in the /etc/modprobe.d/ directory.conf with deny list filesystem kernel modules in the /etc/modprobe.d/ directoryWARNING: unloading, disabling or denylisting filesystem modules that are in use on the system maybe FATAL. It is extremely important to thoroughly review the filesystems returned by the audit before following the remediation procedure.
Example of unloading the gfs2 kernel module:
# modprobe -r gfs2 2>/dev/null
# rmmod gfs2 2>/dev/null
Example of fully disabling the gfs2 kernel module:
# printf '%s\n' "blacklist gfs2" "install gfs2 /bin/false" >> /etc/modprobe.d/gfs2.conf
Note:
gfs2 must be updated with the appropriate module name for the command or example script below to run correctly.Various filesystem kernel modules are enabled by default.
v8 - 4.8 Uninstall or Disable Unnecessary Services on Enterprise Assets and Software (IG 2, IG 3) v7 - 9.2 Ensure Only Approved Ports, Protocols and Services Are Running (IG 2, IG 3)