画像取得とマウント

Reading time: 7 minutes

tip

AWSハッキングを学び、実践する:HackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践する:HackTricks Training GCP Red Team Expert (GRTE) Azureハッキングを学び、実践する:HackTricks Training Azure Red Team Expert (AzRTE)

HackTricksをサポートする

取得

常に読み取り専用で取得し、コピー中にハッシュを取ること。元のデバイスは書き込みブロックし、検証済みのコピーのみで作業する。

DD

bash
# Generate a raw, bit-by-bit image (no on-the-fly hashing)
dd if=/dev/sdb of=disk.img bs=4M status=progress conv=noerror,sync
# Verify integrity afterwards
sha256sum disk.img > disk.img.sha256

dc3dd / dcfldd

dc3dd は、dcfldd (DoD Computer Forensics Lab dd) のアクティブにメンテナンスされているフォークです。

bash
# Create an image and calculate multiple hashes at acquisition time
sudo dc3dd if=/dev/sdc of=/forensics/pc.img hash=sha256,sha1 hashlog=/forensics/pc.hashes log=/forensics/pc.log bs=1M

Guymager

グラフィカルでマルチスレッドのイメージャーで、raw (dd)EWF (E01/EWFX)、およびAFF4出力をサポートし、並行検証が可能です。ほとんどのLinuxリポジトリで利用可能です(apt install guymager)。

bash
# Start in GUI mode
sudo guymager
# Or acquire from CLI (since v0.9.5)
sudo guymager --simulate --input /dev/sdb --format EWF --hash sha256 --output /evidence/drive.e01

AFF4 (Advanced Forensics Format 4)

AFF4は、非常に大きな証拠(スパース、再開可能、クラウドネイティブ)用に設計されたGoogleの最新のイメージングフォーマットです。

bash
# Acquire to AFF4 using the reference tool
pipx install aff4imager
sudo aff4imager acquire /dev/nvme0n1 /evidence/nvme.aff4 --hash sha256

# Velociraptor can also acquire AFF4 images remotely
velociraptor --config server.yaml frontend collect --artifact Windows.Disk.Acquire --args device="\\.\\PhysicalDrive0" format=AFF4

FTK Imager (Windows & Linux)

あなたはFTK Imagerをダウンロードし、raw、E01、またはAFF4イメージを作成できます:

bash
ftkimager /dev/sdb evidence --e01 --case-number 1 --evidence-number 1 \
--description 'Laptop seizure 2025-07-22' --examiner 'AnalystName' --compress 6

EWFツール (libewf)

bash
sudo ewfacquire /dev/sdb -u evidence -c 1 -d "Seizure 2025-07-22" -e 1 -X examiner --format encase6 --compression best

Imaging Cloud Disks

AWS – インスタンスをシャットダウンせずにフォレンジックスナップショットを作成する:

bash
aws ec2 create-snapshot --volume-id vol-01234567 --description "IR-case-1234 web-server 2025-07-22"
# Copy the snapshot to S3 and download with aws cli / aws snowball

Azure – use az snapshot create and export to a SAS URL.

マウント

適切なアプローチの選択

  1. 元のパーティションテーブル(MBR/GPT)が必要な場合は、全ディスクをマウントします。
  2. 1つのボリュームのみが必要な場合は、単一パーティションファイルをマウントします。
  3. 常に読み取り専用-o ro,norecovery)でマウントし、コピーで作業します。

生画像(dd、AFF4抽出)

bash
# Identify partitions
fdisk -l disk.img

# Attach the image to a network block device (does not modify the file)
sudo modprobe nbd max_part=16
sudo qemu-nbd --connect=/dev/nbd0 --read-only disk.img

# Inspect partitions
lsblk /dev/nbd0 -o NAME,SIZE,TYPE,FSTYPE,LABEL,UUID

# Mount a partition (e.g. /dev/nbd0p2)
sudo mount -o ro,uid=$(id -u) /dev/nbd0p2 /mnt

完了したら切り離す:

bash
sudo umount /mnt && sudo qemu-nbd --disconnect /dev/nbd0

EWF (E01/EWFX)

bash
# 1. Mount the EWF container
mkdir /mnt/ewf
ewfmount evidence.E01 /mnt/ewf

# 2. Attach the exposed raw file via qemu-nbd (safer than loop)
sudo qemu-nbd --connect=/dev/nbd1 --read-only /mnt/ewf/ewf1

# 3. Mount the desired partition
sudo mount -o ro,norecovery /dev/nbd1p1 /mnt/evidence

代わりに xmount を使用してオンザフライで変換します:

bash
xmount --in ewf evidence.E01 --out raw /tmp/raw_mount
mount -o ro /tmp/raw_mount/image.dd /mnt

LVM / BitLocker / VeraCrypt ボリューム

ブロックデバイス(ループまたはnbd)を接続した後:

bash
# LVM
sudo vgchange -ay               # activate logical volumes
sudo lvscan | grep "/dev/nbd0"

# BitLocker (dislocker)
sudo dislocker -V /dev/nbd0p3 -u -- /mnt/bitlocker
sudo mount -o ro /mnt/bitlocker/dislocker-file /mnt/evidence

kpartx ヘルパー

kpartx は、イメージから /dev/mapper/ へのパーティションを自動的にマッピングします:

bash
sudo kpartx -av disk.img  # creates /dev/mapper/loop0p1, loop0p2 …
mount -o ro /dev/mapper/loop0p2 /mnt

一般的なマウントエラーと修正

エラー一般的な原因修正
cannot mount /dev/loop0 read-onlyジャーナル化されたファイルシステム (ext4) が正常にアンマウントされていない-o ro,norecovery を使用
bad superblock …オフセットが間違っているか、ファイルシステムが破損しているオフセットを計算する (sector*size) か、コピーに対して fsck -n を実行
mount: unknown filesystem type 'LVM2_member'LVMコンテナvgchange -ay でボリュームグループをアクティブ化

クリーンアップ

umountdisconnect ループ/nbdデバイスを忘れずに行い、さらなる作業を破損させる可能性のあるダングリングマッピングを残さないようにしてください:

bash
umount -Rl /mnt/evidence
kpartx -dv /dev/loop0  # or qemu-nbd --disconnect /dev/nbd0

参考文献

  • AFF4イメージングツールの発表と仕様: https://github.com/aff4/aff4
  • qemu-nbdマニュアルページ(ディスクイメージを安全にマウントする): https://manpages.debian.org/qemu-system-common/qemu-nbd.1.en.html

tip

AWSハッキングを学び、実践する:HackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践する:HackTricks Training GCP Red Team Expert (GRTE) Azureハッキングを学び、実践する:HackTricks Training Azure Red Team Expert (AzRTE)

HackTricksをサポートする