Skip to main content

How to mount .E01 forensic image file into linux

https://bwiggs.com/posts/2021-07-25-cyberdefenders-hacked/

Here Webserver.E01 is our forensic image. Apni amr linux forensic IR course o dekhte paren. Okhane Mr. Hal Pomeranz er direction follow kore kaj korcilam. 

উদ্দেশ্য কী ছিল?

/mnt → এখানে আমরা ewfmount দিয়ে .E01 forensic image মাউন্ট করেছি।

এর ভেতরে ewf1 নামে raw virtual disk ফাইল তৈরি হয়।

Boot partition (/boot) মাউন্ট করার জন্যও /mnt/boot সাবডিরেক্টরি ব্যবহার করেছি।

/mnt1 → এখানে আমরা LVM root filesystem মাউন্ট করেছি।

kpartx + lvscan দিয়ে LVM volumes বের করেছি।

তারপর /dev/VulnOSv2-vg/root read‑only মাউন্ট করেছি /mnt1/linux এ।

Install Command line tools

  • ewf-tools provides tools to work with the EWF file formats
  • sleuthkit provides tools to work with the filesystme images (no need here)
  • kpartx reads partition tables on specified device and create device maps over partitions segments detected

$ apt-get install ewf-tools sleuthkit kpartx

 

Use root to do the following but here we are doing as normal user, you can see the dollar $ sign.:
$ mkdir mnt (this folder is created under /home/avi/ and assuming we are in /home/avi/ directory) 
$ sudo ewfmount /home/avi/Desktop/Hacked/Webserver.E01 /home/avi/mnt
ewfmount 20140807 

Now to see the partition you need root access. Otherwise you will not be able to see that. 

# ls -la /home/avi/mnt

 -r--r--r-- 1 root root 32G Jul 25 00:36 ewf1

Now you can see that, ewf1 named partition is created. 

Mount the Partitions

View Partition Layout

$ cd /home/avi/mnt

$ mmls ewf1


এতে দেখা যায় Linux partition ও LVM partition আছে।
You can see it mentions Units are in 512-byte sectors, take that and multiply by the value in the Start column to find the byte offset for the filesystems we’re going to mount.

Linux Boot Partition:

$ mkdir -p /home/avi/mnt/boot

$ sudo mount -o offset=$((2048*512)) -v /home/avi/mnt/ewf1 /home/avi/mnt/boot



Linux LVM Partition:

$ sudo kpartx -a -v /home/avi/mnt/ewf1

add map loop0p1 (253:0): 0 497664 linear 7:0 2048
add map loop0p2 (253:1): 0 2 linear 7:0 501758
add map loop0p5 (253:2): 0 65562624 linear 7:0 501760

# checkout the lvm volumes and get their paths

$ sudo lvscan
 
/dev/sda: open failed: No medium found
WARNING: PV /dev/mapper/loop0p5 in VG VulnOSv2-vg is using an old PV header, modify the VG to update. ACTIVE '/dev/VulnOSv2-vg/root' [30.51 GiB] inherit ACTIVE '/dev/VulnOSv2-vg/swap_1' [768.00 MiB] inherit
 
# mount those volumes to your filesystem

$ mkdir -p /home/avi/mnt1/linux
$ sudo mount -o ro,noload /dev/VulnOSv2-vg/root /home/avi/mnt1/linux (here mnt1 is created under /home/avi/ directory) 
$ ls -l /home/avi/mnt1/linux
 
total 104K
drwxr-xr-x  21 root       root       4.0K Apr  3  2016 .
drwxrwxr-x   4 bwigginton bwigginton 4.0K Jul 25 01:01 ..
drwxr-xr-x   2 root       root       4.0K Apr 16  2016 bin
drwxr-xr-x   2 root       root       4.0K Apr  3  2016 boot
drwxr-xr-x   4 root       root       4.0K Apr  3  2016 dev
drwxr-xr-x 102 root       root       4.0K Oct  5  2019 etc
drwxr-xr-x   4 root       root       4.0K Apr 16  2016 home
lrwxrwxrwx   1 root       root         33 Apr  3  2016 initrd.img -> boot/initrd.img-3.13.0-24-generic
drwxr-xr-x  21 root       root       4.0K Apr  3  2016 lib
drwx------   2 root       root        16K Apr  3  2016 lost+found
drwxr-xr-x   3 root       root       4.0K Apr  3  2016 media
drwxr-xr-x   2 root       root       4.0K Apr 10  2014 mnt
drwxr-xr-x   2 root       root       4.0K Apr 16  2014 opt
drwxr-xr-x   2 root       root       4.0K Apr 10  2014 proc
drwx------   3 root       root       4.0K Oct  5  2019 root
drwxr-xr-x   2 root       root       4.0K Apr  3  2016 run
drwxr-xr-x   2 root       root        12K Apr  3  2016 sbin
drwxr-xr-x   2 root       root       4.0K Apr 16  2014 srv
drwxr-xr-x   2 root       root       4.0K Mar 12  2014 sys
drwxrwxrwx   2 root       root       4.0K Oct  5  2019 tmp
drwxr-xr-x  11 root       root       4.0K Oct  5  2019 usr
drwxr-xr-x  13 root       root       4.0K Apr  3  2016 var
lrwxrwxrwx   1 root       root         30 Apr  3  2016 vmlinuz -> boot/vmlinuz-3.13.0-24-generic 


 


Comments

Popular posts from this blog

API hacking lab setup

 Follow the commands to install and configure API hacking lab: 1. Install kali linux and update all the packages.  apt update -y apt upgrade -y or apt dist-upgrade -y or apt full-upgrade -y If you face any problem regarding update, install cloud flare warp in the host machine, then again start updating packages in your kali vm.  2. Install and configure burpsuite professional.  After that open burpsuite and go to Extensions tab. Click on BAppStore. Search for Autorize extension, It will help us to automate authorization testing. Click on Download Jython from the right side. From Jython website click on Jython standalone JAR and save it. Go to Extensios > Extensions settings >  under Core extension settings find out Python environment on the right pane. Select the jython jar file that you just downloaded. Now again go to BAppStore and re-search for Autorize extension. You will see Install option this time after selecting Autorize extension. Install it. You ...

Privilege Escalation Domain Level PowerUp - Part - 2

  Our target is first escalate our local privs to local admin level. Then we will hunt for to check we have the local admin privs to which other machines. Then we will check on those machines, any domain admin sessions are available or not.  Unquoted service path check: Get-WmiObject -class win32_service | Select-Object pathname From powerup: Get-ServiceUnquoted -Verbose Get services where the current user can write to its binary path or change arguments to the binary: Get-ModifiableServiceFile -Verbose Get the services whose configuration current user can modify, if you are in server operator group then you can do this: Get-ModifiableService -Verbose Or we can run all the above checks from using powerup.ps1 script: . .\PowerUp.ps1 Invoke-AllChecks help Invoke-ServiceAbuse -Examples Invoke-ServiceAbuse -Name AbyssWebServer -UserName dcorp\student15     (Here AbyssWebServer is the abuseable service name that you come to know after running Invoke-AllChecks command) Wh...

How to use vim efficiently

  Here every command works in command mode . And if you need to write something then you need to go to Insert mode . Pressing i will take you to the insert mode.  1. Let's say you want to search something. For example you want to find avi keyword. Then first you need to go to the command mode by typing Esc . Now type /avi  (at the bottom) and hit enter. Press small n to forward this search pattern and press Shift N to go reverse.  2. Substitute something: :%s/old string/new string/g    (g for affecting globally) 3. If you want to pick the 1st letter of word then press w and last letter of word then press e .  4. yy means copy a single line. 2yy means copy double lines.  5. Shift P is for paste.  6. Shift D to delete a line or cut a line.  7. Press o to go a new line.  8. Press Home to go to the 1st letter of a line and End to go to the last letter of a line.  9. If you want to save the file then press wq! . 10. If ...