ソース情報
- リポジトリ
- brucesongs/kali-claw
- ソースの最終更新活動
- 2026年8月5日 07:01
- 検出された SKILL.md の言語
- 英語
- スター
- 67
- フォーク
- 18
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/brucesongs/kali-claw --skill anti-forensicsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | anti-forensics |
| description | Anti-forensics is the offensive counterpart to digital forensics. |
| origin | openclaw |
| version | 0.2.0.2 |
| compatibility | ["openclaw","claude-code","cursor","windsurf"] |
| allowed-tools | ["Bash","Read","Write","Edit","WebSearch","WebFetch"] |
| metadata | {"domain":"forensics","tool_count":14,"guide_count":3,"mitre":"TA0005-Defense Evasion","last_reviewed":"2026-07-24"} |
Supplementary Files:
payloads.md— Command reference covering secure file deletion, disk/volume encryption, log cleaning, timestamp manipulation, steganographic hiding, and anti-forensic countermeasure testingtest-cases.md— Structured test case list covering secure deletion verification, encrypted volume creation, log cleaning, timestamp manipulation, steganographic hiding, and bulk_extractor detection testingguides/filesystem-anti-forensics.md— Deep dive into secure deletion, slack space wiping, MFT/inode manipulation, and forensic artifact cleanupguides/log-tamper-timestamp.md— Deep dive into log tampering, timestamp manipulation, event log injection, and defeating timeline analysisguides/crypto-hide-data-destruction.md— Deep dive into encrypted volumes, steganographic hiding, deniable encryption, and bulk_extractor effectiveness testing
Anti Forensics skill domain covering forensics operations.
Tools: shred, wipe, tcplay, logtamper, timestomp, bulk_extractor, steghide, Real-Time Logging (+6 more)
Domain: forensics
MITRE ATT&CK: TA0005-Defense Evasion
Anti-forensics is the offensive counterpart to digital forensics. While the digital-forensics skill focuses on evidence collection and analysis, this skill covers the techniques attackers use to prevent evidence collection, corrupt evidence, or hide data from forensic examination. Understanding these techniques is essential for penetration testers who must simulate realistic attack scenarios and for defenders who need to know what anti-forensic artifacts to look for.
The agent has mastered secure file deletion with shred and wipe, encrypted volume management with tcplay (TrueCrypt/VeraCrypt compatible), log manipulation with logtamper, timestamp forging with timestomp, forensic artifact extraction with bulk_extractor (used defensively to test anti-forensic effectiveness), and steganographic data hiding with steghide.
| Tool | Purpose | Command Example |
|---|---|---|
| shred | Secure file overwrite and deletion | shred -vfz -n 5 secret.txt |
| wipe | Secure directory and file wiping | wipe -rfci /tmp/sensitive/ |
| tcplay | TrueCrypt/VeraCrypt compatible encrypted volumes | tcplay -c -d /dev/loop0 |
| logtamper | Unix log file entry manipulation | logtamper -f /var/log/auth.log -r "192.168.1.100" |
| timestomp | NTFS MACE timestamp modification (Metasploit) | timestomp secret.txt -m "01/01/2024 00:00:00" |
| bulk_extractor | Forensic feature extraction (anti-forensic testing) | bulk_extractor -o /output disk_image.dd |
| steghide | Steganographic data embedding in media files | steghide embed -cf photo.jpg -ef secret.txt |
Pre-Operation Active Operations Post-Operation
(Encrypted Volume (Log Manipulation, (Secure Deletion,
Setup, Stego Prep) Timestamp Forging) Stego Extraction)
| | |
v v v
Verification
(bulk_extractor scan
to confirm no artifacts
remain detectable)
Phase Details:
Use shred to overwrite file contents with multiple passes of random data before deletion, making recovery impossible with standard forensic tools. Use wipe for recursive directory cleaning. Understand which filesystems and storage technologies (SSDs with wear leveling, copy-on-write filesystems like ZFS/Btrfs) reduce the effectiveness of these tools.
Create and manage encrypted volumes with tcplay (TrueCrypt/VeraCrypt compatible) for plausible deniability and secure storage. Understand hidden volume creation, keyfile-based authentication, and how encrypted containers appear in forensic analysis.
Use logtamper to selectively remove or modify log entries, and timestomp to forge file MAC timestamps. Understand the forensic artifacts these techniques leave behind (journal entries, NTFS $STANDARD_INFORMATION vs $FILE_NAME discrepancies, log sequence gaps).
Embed data within image and audio files using steghide to create covert exfiltration channels. Understand capacity limits, statistical detection methods, and how to choose carrier files that minimize detectability.
Use bulk_extractor and other forensic tools against the target environment to verify anti-forensic measures are effective. If bulk_extractor can still recover artifacts, iterate on cleanup techniques until the desired level of forensic resistance is achieved.
Detailed payloads in
payloads.md, complete test checklist intest-cases.md.
| Best Practice | Description | Priority |
|---|---|---|
| Real-Time Logging | Forward logs to a remote, append-only syslog server that attackers cannot tamper with locally | CRITICAL |
| File Integrity Monitoring | Deploy FIM tools (AIDE, OSSEC, Wazuh) that detect file modifications and timestamp changes in real-time | CRITICAL |
| Endpoint Detection and Response | EDR agents capture process creation events before anti-forensics tools can modify or delete evidence | CRITICAL |
| NTFS Dual Timestamp Comparison | Compare $STANDARD_INFORMATION and $FILE_NAME attributes; timestomp only modifies the former, creating a detectable discrepancy | HIGH |
| Secure Deletion Detection | Monitor for shred/wipe process execution and high-entropy file writes that indicate secure deletion activity | HIGH |
| Steganography Detection | Deploy stegdetect and statistical analysis tools to identify carrier files with abnormal entropy patterns | MEDIUM |
| Encrypted Volume Detection | Monitor for tcplay/VeraCrypt/LUKS device mapping events and loop device creation | MEDIUM |
Automate post-operation cleanup with scripts that chain secure deletion, log restoration, and timestamp normalization. Build a cleanup pipeline that: (1) identifies all files created during the engagement by timestamp range, (2) shreds each file with appropriate passes, (3) removes log entries matching engagement IP addresses and usernames, (4) restores file timestamps using the pre-operation baseline, and (5) runs bulk_extractor against a disk image snapshot to verify no recoverable artifacts remain. Use tcplay in scripted mode to create and mount encrypted volumes without interactive prompts, enabling automated secure storage during engagements.
Anti-forensic techniques must only be used within authorized penetration testing engagements with explicit written permission. Destroying evidence on systems you do not own or without authorization is a criminal offense in most jurisdictions (e.g., 18 U.S.C. 1519 in the United States, Computer Misuse Act Section 3 in the UK). Even within authorized engagements, document all anti-forensic actions thoroughly so the client understands what was cleaned and what forensic artifacts may remain for their incident response team.
Anti-forensics connects directly to the digital-forensics skill domain. Every anti-forensic technique has a corresponding forensic detection method, and understanding both sides makes each more effective. The steganography skill provides additional steganographic tools beyond steghide (zsteg, stegcracker, stegseek). Post-exploitation techniques often require anti-forensic cleanup to maintain persistence without detection. Binary reverse engineering helps analyze anti-forensic tools themselves to understand exactly what artifacts they leave behind.
Anti-forensic activity leaves distinctive traces that forensic examiners and EDR/XDR platforms detect through timeline analysis, entropy scanning, and behavioral anomalies.
shred, wipe, srm, bcwipe process execution; high-entropy writes followed by file truncation.$STANDARD_INFORMATION vs $FILE_NAME mismatch (timestomp signature); MAC times that don't fit timeline baseline.tcplay, VeraCrypt, LUKS device mapper events; loop device creation; partition table changes; sudden high-entropy partition./var/log/auth.log truncation; inotifywatch events on /var/log/.awk/sed invocations on log files; rootkits with prctl syscalls hiding processes.malfind output with PAGE_EXECUTE_READWRITE permissions; hollowed process with mismatched PEB.EPROCESS ActiveProcessLinks.ntdll.dll/libc.so.MEM_PRIVATE | MEM_EXECUTE regions; RWX pages outside loaded modules.index=linux sourcetype=auditd type=EXECVE | search a0 IN ("shred","wipe","srm","tcplay")shred.exe, sdelete.exe, ccleaner.exe, bcdwipe.exe.sigma/rules/windows/audit_log_cleared.yml (Event ID 1102).setMACE over timestomp).fsutil usn deletejournal to remove update sequence number journal before timestomping.logtamper to remove specific entries matching engagement IP/user without clearing the entire log.auditctl -D to delete rules temporarily; restore after operations.:Zone.Identifier or custom ADS; rarely inspected by AV.hiberfil.sys for both hiding and persistence..sys file slack space.ps, Task Manager, Get-Process.RTCore64.sys) to disable PatchGuard temporarily.This skill's supplementary files: payloads.md, test-cases.md, guides/filesystem-anti-forensics.md, guides/log-tamper-timestamp.md, guides/crypto-hide-data-destruction.md
Related skills:
skills/digital-forensics/SKILL.md - The defensive counterpart covering forensic analysis that detects anti-forensic techniquesskills/steganography/SKILL.md - Additional steganographic tools and detection methodsskills/post-exploitation/SKILL.md - Persistence mechanisms that must be cleaned up using anti-forensic techniquesExternal resources: