Time for some ELForensics

Forensics

Video

Resources

With PowerShell, we can obtain the hash of a file by running the following command: Get-FileHash -Algorithm MD5 file.txt

Another tool you can use to inspect within a binary file (.exe) is Strings.exe

The command to run for the Strings tool to scan the mysterious executable: c:\Tools\strings64.exe -accepteula file.exe

The command to view ADS using Powershell: Get-Item -Path file.exe -Stream *

The command to run to launch the hidden executable hiding within ADS: wmic process call create $(Resolve-Path file.exe:streamname)

Challenge

Read the contents of the text file within the Documents folder. What is the file hash for db.exe?

What is the file hash of the mysterious executable within the Documents folder?

Using Strings find the hidden flag within the executable?

What is the flag that is displayed when you run the database connector file?

Last updated

Was this helpful?