CCD - L1 Exam - Guided By RedBlock
SOC Analyst Training & Certification - CCDL1

These notes will come handy in exam.
Perimeter Defense - Email Security
Email Spoofing
SPF - Sender Policy Framework
Check the SPF records of the domain name by checking its DNS TXT records,
dig <domain> TXT | grep spf
Mechanisms
Mechanisms display the IP being matched and prefixed with Qualifiers that state what action should be taken if that mechanism (i.e., IP address) is matched.
Mechanism | Example SPF Record | Explanation |
|---|---|---|
ip4 |
| Authorized server IPs are in the 10.0.0.1/24 range |
a |
| Authorized servers' IPs are in the DNS A record of example.com |
mx |
| Authorized servers IPs are the IPs of the servers in the DNS MX record of example.com |
include |
| Authorized servers' IPs are in another SPF/TXT record ( |
all |
| Authorized servers' IPs match any IP. |
Qualifiers
Each of the above mechanisms should be prefixed with a qualifier to state the action upon matching the provided IP.
Qualifier | Example SPF Record | Explanation | Action |
|---|---|---|---|
+ (pass) |
| Pass SPF check If the sender server IP is in the 10.0.0.1/24 range | Accept the message (This is an authentic message) |
- (fail) |
| Fail SPF check If the sender server IP is in the 10.0.0.1/24 range | Reject the message (This is a spoofed message) |
~ (softfail) |
| SoftFail SPF checks If the sender server IP is in the 10.0.0.1/24 range | Accept the message but flag it as spam or junk (probably a spoofed message). |
? (neutral) |
| Neither pass nor fail If the sender server IP is in the 10.0.0.1/24 range | Accept the message (Not sure whether this is a spoofed or authentic message) |
DKIM - DomainKeys Identified Mail
DKIM records have a standard format of
<selector>._domainkey.<domain>.
For example, the DKIM public key for cyberdefenders.org is published at
google._domainkey.cyberdefenders.org
and can be queried using
dig google._domainkey.cyberdefenders.org TXT | grep DKIM
DMARC - Domain-based Message Authentication, Reporting & Conformance
DMARC records are published as TXT records in the DNS server, just like DKIM and SPF. To check the DMARC record for a domain, we query the DNS server for _dmarc.<domain>,
dig _dmarc.nsa.gov TXT | grep dmarc
DMARC Record Creation
Monitor Mode
To start monitoring and collecting all sending servers, we only need to create a DMARC record with the policy set to none and publish it in the DNS server,
v=DMARC1; p=none; rua=mailto:[email protected]
Receiving Mode
The receiving server/report generators will have to verify that the service provider is waiting for your reports to come by querying the DMARC record at,
dig <your-company.com>._report._dmarc.<service-provider.com> | grep dmarc
Analyzing Artifacts
Visualization Tools - URL2PNG, URLScan, AbuseIPDB, Criminalip.io, ThreatBook.io, IPQuality Score,
URL Reputation Tools - VirusTotal, URLScan, URLhaus, WannaBrowser
File Reputation Tools - VirusTotal, Talos File Reputation
Malware Sandboxing - Hybrid Analysis, Any.run, VirusTotal, Joe Sandbox, Tri.ge.
Digital Forensics
Acquisition
Memory Acquisition
Linux
Determine the kernel version on a Linux machine, you can use the command
uname -a
Download LiME,
sudo apt update && sudo apt install build-essential git
git clone <https://github.com/504ensicsLabs/LiME.git>
cd LiME/src/
make
Capture memory using LiME,
sudo insmod ./lime.ko "path=/home/user/Desktop/dump.mem format=lime timout=0"
Windows
We can use various tools like FTK Imager, Belkasoft, DumpIt.
Checking Disk Encryption
Use a command line tool called "Encrypted Disk Detector," to detect encrypted drives.
.\\EDDv310.exe
Triage Image Acquisition
Obtaining Triage Image with KAPE is convenient.
Another tool CyLR, which can acquire triage images on Windows, Linux, and OSX systems. It comes with a list of essential artifacts to collect from each system.
Disk Acquisition
Windows
Using FTK Imager, Disk Images can be acquired.
Linux
Note: Do not run dd on the host system; run it from an external drive and save the output image to the same drive.
First, determine all mounted disks, and we will specifically choose one of them to image,
df -h
Now, proceed to the acquisition,
sudo dd if=/dev/sb1 of=/home/user/Desktop/file.img bs=512
Mounting
To mount different image types, use Arsenal Image Mounter, FTK Imager.
Windows Disk Forensics
Windows Event Logs
By default, Windows Event Logs are stored at 'C:\\Windows\\system32\\winevt\\logs' as .evtx files.
We can use Event log explorer or Full Event Log view.
Artifacts
By default, Windows Event Logs are stored at 'C:\\Windows\\system32\\winevt\\logs' as .evtx files.
Important Artifacts
Live System | Dead System | Investigation Tool |
|---|---|---|
HKEY_LOCAL_MACHINE/SYSTEM |
| Registry Explorer/RegRipper |
HKEY_LOCAL_MACHINE/SOFTWARE |
| Registry Explorer/RegRipper |
HKEY_USERS |
| Registry Explorer/RegRipper |
HKEY_CURRENT_USER |
| Registry Explorer/RegRipper |
Amcache.hve |
| Registry Explorer/RegRipper |
Event Viewer -> Windows Logs -> SECURITY |
| Event logs Explorer |
Event Viewer -> Windows Logs -> SYSTEM |
| Event logs Explorer |
Event Viewer -> Windows Logs -> Application |
| Event logs Explorer |
Event viewer -> Applications & service logs -> Microsoft -> Windows -> TaskScheduler -> Operational |
| Event logs Explorer |
System Information
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
Windows version and installation date |
| Registry Explorer/RegRipper |
Computer Name |
| Registry Explorer/RegRipper |
Timezone |
| Registry Explorer/RegRipper |
Network Information
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
Identify physical cards |
| Registry Explorer/RegRipper |
Identify interface configuration |
| Registry Explorer/RegRipper |
Connections History |
| WifiHistoryView |
Users Information
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
Username, creation date ,login date, SID | SAM | Registry Explorer/RegRipper |
Login, logout, deletion, creation | Security.evtx | Event Log Explorer |
4624 -> Successful logon event | ||
4625 -> failed logon event | ||
4634 -> Session terminated | ||
4647 -> User initiated logoff | ||
4672 -> Special privilege logon | ||
4648 -> User run program as another user (Runas administrator) | ||
4720/4726 -> Account creation/deletion |
File Activities - What happened?
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
File name, path, timestamps, actions (i.e rename) |
| NTFS Log Tracker |
Information about deleted files |
| INDXRipper |
File Activities - Who did it?
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
Failed/Succesful object access | Securit.evtx | Event Log Explorer |
4656 -> User tried to access an object | ||
4660 -> object was deleted | ||
4663 -> User accessed the object successfully | ||
4658 -> the user closed the opened object (file) | ||
Recently used files/folders | NTUSER.dat | Registry Explorer/RegRipper |
| ||
| ||
| ||
| ||
| ||
| ||
Accessed folders | ShellBags | ShellBags Explorer |
NTUSER.dat | ||
USRCLASS.dat | ||
Accessed files, its path, metadata, timestamps, drive letter | LNK files | LECmd |
| ||
| ||
| ||
Frequently accessed files | JumpLists | JumpLists Explorer |
| ||
| ||
Recover Deleted Files from Recycle Bin |
| RBCmd |
Connected Devices
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
Vendor ID, Product ID, Serial Number, Device name |
| Registry Explorer/RegRipper |
Serial Number, First connection time, last connection time, last removal time |
| Registry Explorer/RegRipper |
USB Label |
| Registry Explorer/RegRipper |
GUID, TYPE, serial number |
| Registry Explorer/RegRipper |
VolumeGUID, Volume letter, serial number |
| Registry Explorer/RegRipper |
Serial number, first connection time |
| notepad++ |
Serial number, connections times, drive letter | SYSTEM.evtx: 20001 -> a new device is installed | Event Log Explorer |
Security.evtx: 6416 -> new externel device recognized | ||
Microsoft-Windows-Ntfs%4Operational.evtx | ||
Automation | Registry | USBDeviceForenics, USBDetective |
Event Logs | ||
setupapi.dev.log |
Execution Activities
What To Look For | Where To Find It | Investigation Tool |
|---|---|---|
Windows Services executable, date added |
| Registry Explorer/RegRipper |
Service installation time, Service crashed, stop/start service event | Security.evtx: 4697 -> service gets installed | Event Log Explorer |
SYSTEM.evtx: 7034 -> Service crashed | ||
7035 -> start/stop requests | ||
7036 -> service stoppped/started | ||
Autorun applications |
| Registry Explorer/RegRipper |
| ||
| ||
| ||
| ||
| ||
Frequently run programs, last time, number of execution | UserAssist | UserAssist by Didier Steven |
| ||
Run of older applications on newer system |
| ShimCache Parser |
Files path, md5 & sha1 hash |
| Amcache Parser |
Background applications |
| Registry Explorer/RegRipper |
| ||
Filename, size, run count, each run timestamp, path |
| WinPrefetchView |
| ||
Program network usage, memory usage |
| SrumECmd |
| ||
Scheduled task |
| Task Scheduler Viewer |
| ||
| ||
|
Windows Memory Forensics with Volatility
Image Identification
imageinfo Plugin
To determine the profile of an image,
python vol.py -f memory.dmp imageinfo
kdbgscan Plugin
To determine the kdbg signature of an image, first ran the command,
python vol.py -f memory.dmp imageinfo
Then identify the profile to be used later in the process, and use the plugin,
python vol.py -f memory.dmp --profile=<profile> kdbgscan
Determine the KdCopyDataBlock offset as we will use it in the next step with any other plugin, let us say pslist,
python vol.py -f memory.dmp --profile=<profile> -g <offset> pslist
Processes and DLLs
pslist Plugin
To determine the process in the memory dump,
python vol.py -f memory.dmp --profile=<profile> -g <offset> pslist
psscan Plugin
To enumerate processes using pool tag scanning,
python vol.py -f memory.dmp --profile=<profile> -g <offset> psscan
dlllist Plugin
To display a process's loaded DLLs,
python vol.py -f memory.dmp --profile=<profile> -g <offset> dlllist
To display the process's loaded DLLs of a particular process with PID XXXX,
python vol.py -f memory.dmp --profile=<profile> -g <offset> dlllist -p XXXX
pstree Plugin
To determine the parent-child process like which process is the parent process and which process is the child process,
python vol.py -f memory.dmp --profile=<profile> -g <offset> pstree
Use verbose mode of the pstree plugin to list detailed information,
python vol.py -f memory.dmp --profile=<profile> -g <offset> pstree -v
psxview Plugin
To find the hidden processes that are concealed from standard processes,
python vol.py -f memory.dmp --profile=<profile> -g <offset> psxview
psinfo Plugin
To find the detailed process information,
python vol.py -f memory.dmp --profile=<profile> -g <offset> psinfo -o <process_offset>
getsids plugin
To find the process privileges and identify the SIDs of the users,
python vol.py -f memory.dmp --profile=<profile> -g <offset> getsids -o <process_offset>
handles Plugin
To find open handles in a process,
python vol.py -f memory.dmp --profile=<profile> -g <offset> handles
To find open handles of a particular process with PID XXXX,
python vol.py -f memory.dmp --profile=<profile> -g <offset> handles -p XXXX
privs Plugin
To display which process privileges are present, enabled, and/or enabled by default,
python vol.py -f memory.dmp --profile=<profile> -g <offset> privs
consoles Plugin
To detect the commands that attackers typed into cmd.exe,
python vol.py -f memory.dmp --profile=<profile> -g <offset> consoles
cmdscan Plugin
To detect the commands that attackers entered through a console shell, cmd.exe.
python vol.py -f memory.dmp --profile=<profile> -g <offset> cmdscan
ldrmodules Plugin
To list the DLLs in WoW64 processes,
python vol.py -f memory.dmp --profile=<profile> -g <offset> ldrmodules
Networking
netscan Plugin
To find the network-relevant information,
python vol.py -f memory.dmp --profile=<profile> -g <offset> netscan
connscan Plugin
To detect connections that have since been terminated, or active ones,
python vol.py -f memory.dmp --profile=<profile> -g <offset> connscan
Registry
hivelist Plugin
To list all registry hives in memory, their virtual space along with the full path, use the following plugin,
python vol.py -f memory.dmp --profile=<profile> -g <offset> hivelist
printkey Plugin
To detect the persistence techniques in Registry key, utilize the following plugin,
python vol.py -f memory.dmp --profile=<profile> -g <offset> printkey -K <registry-key>
winesap Plugin
To automate the inspecting persistence-related registry keys, utilize the following plugin,
volatility -f <memory_dump> --profile=<profile> -g <offset> winesap
Use the following parameter to display suspicious entries,
volatility -f <memory_dump> --profile=<profile> -g <offset> winesap --match
File System
mftparser Plugin
To extract MFT entries in memory, utilize the following plugin,
volatility -f <memory_dump> --profile=<profile> -g <offset> mftparser
Process Memory
procdump Plugin
To dump the process's executable of a particular process with PID XXXX,
python vol.py -f memory.dmp --profile=<profile> -g <offset> procdump -p XXXX --dump-dir=/<output-directory>
memdump Plugin
To dump the memory resident pages of a particular process with PID XXXX,
python vol.py -f memory.dmp --profile=<profile> -g <offset> memdump -p XXXX --dump-dir=/<output-directory>
vaddump Plugin
To extract the range of pages described by a VAD node,
python vol.py -f memory.dmp --profile=<profile> -g <offset> vaddump --dump-dir=/<output-directory>
Kernel Memory and Objects
filescan Plugin
To find all the files in the physical memory,
python vol.py -f memory.dmp --profile=<profile> -g <offset> filescan
Miscellaneous
volshell Plugin
Interactively explore an image,
python vol.py -f memory.dmp --profile=<profile> -g <offset> volshell
timeliner Plugin
To create a timeline from various artifacts in memory from the following sources,
python vol.py -f memory.dmp --profile=<profile> -g <offset> timeliner
malfind Plugin
To find the hidden or injected DLLs in the memory,
volatility -f <memory_dump> --profile=<profile> -g <offset> malfind
yarscan Plugin
To locate any sequence of bytes, or determine the malicious nature of a process with PID XXXX, provided we have included the rule (yara rule file) we created,
volatility -f <memory_dump> --profile=<profile> -g <offset> yarascan -y rule.yar -P XXXX
Threat Hunting
Elastic Common Schema (ECS)
Field | Description | KQL Examples |
|---|---|---|
event.category | It looks for similar events from various data sources that can be grouped together for viewing or analysis. | event.category: authentication |
event.category: process | ||
event.category: network | ||
event.category: (malware or intrusion_detection) | ||
event.type | It serves as a sub-categorization that, when combined with the "event.category" field, allows for filtering events to a specific level. | event.type: start |
event.type: creation | ||
event.type: access | ||
event.type: deletion | ||
event.outcome | It indicates whether the event represents a successful or a failed outcome | event.outcome: success |
event.outcome : failure |
Common search fields
Field | Description | KQL Examples |
|---|---|---|
@timestamp | @timestamp: 2023-01-26 | Events that happened in 26th |
@timestamp <= "2023-01-25" | Events that happened with a date less than or equal to 25th of Jan | |
@timestamp >= "2023-01-26" and @timestamp <= "2023-01-27" | Events that happened between 26th and the 27th of Jan | |
agent.name: | Look for events from the agent name that starts with DESKTOP | |
message | message: powershell | Look for any message with the word powershell |
Process Related Fields
Field | Description | KQL Examples |
|---|---|---|
| Look for powershell.exe as a process | |
process.command_line |
| Look for a commandline that has whoami on it |
process.pid |
| Look for process id: 6360 |
| Looks for cmd.exe as a parent process | |
process.parent.pid |
| Looks for a process command line that has powershell and the parent process id is 12620 on a hostname that starts with DESKTOP |
Network related fields
Field | Description | KQL Examples |
|---|---|---|
source.ip |
| Looks for any logs originated from the loopback IP address |
destination.ip |
| Looks for any logs originating to IP 23.194.192.66 |
destination.port |
| Looks for any logs originating towards port 443 |
| Look for any DNS resolution towards www.youtube.com | |
dns.response_code |
| Looks for DNS traffic towards non existing domain names |
destination.geo.country_name |
| Looks for any outbound traffic toward Canada |
Authentication related fields
Field | Description | KQL Examples |
|---|---|---|
| Looks for failed login attempt targeting username administrator | |
winlog.logon.type |
| Look for authentication that happened over the network |
| Look for RDP authentication | |
winlog.event_data.AuthenticationPackageName |
| Look for successful network authentication events against the user administrator, and the authentication package is NTLM. |
Endpoint Threat Hunting
Detecting Persistence using Scheduled Tasks,
technique_id=T1053,technique_name=Scheduled Task
Detect PsExec Activity in the Network,
event.code: 1 and process.name.text: psexec*
Detecting Mimikatz Activity in Network,
event.code: 10 and winlog.event_data.TargetImage: *\\\\lsass.exe
Network Threat Hunting
To detect data exfiltration through DNS,
agent.type: "packetbeat" and type: dns AND not dns.response_code: "NOERROR"
Few Commands for quick start
Eric Zimmerman Tools
MFTCmd
Extract the $MFT file from the C:\\$MFT directory,
MFTECmd.exe -f "/path/to/$MFT" --csv "<output-directory>" --csvf results.csv
PECmd
Extract the Prefetch directory from the C:\\Windows\\Prefetch path using FTK Imager,
PECmd.exe -f "/path/to/Prefetch" --csv "<output-directory>" --csvf results.csv
LECmd
Extract the LNK file(s) from C:\\Users\\$USER$\\AppData\\Roaming\\Microsoft\\Windows\\Recent using FTK Imager,
LECmd.exe -f "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows\\Recent\\file.lnk"
RBCmd
Restore the deleted file from the Recycle Bin,
RBCmd.exe -f "path/to/file" --csv "<output-directory>" --csvf results.csv
WxtCmd
Analyze the Timeline database and parse it into a CSV file using WxtCmd. The file can be found at C:\\Users<user>\\AppData\\Local\\ConnectedDevicesPlatform\\<user>\\ActivitiesCache.db
WxTCmd.exe -f "C:\\Users<user>\\AppData\\Local\\ConnectedDevicesPlatform\\<user>\\ActivitiesCache.db" --csv "C:\\Users\\<user>\\Desktop" --csvf results.csv
Amcache Parser
Parsing the AmCache.hve file to identify any suspicious entries or determine the malicious nature. The file can be found at C:\\Windows\\appcompat\\Programs\\Amcache.hve
AmcacheParser.exe -f "C:\\Windows\\appcompat\\Programs\\Amcache.hve" --csv "C:\\Users\\<user>\\Desktop\\" --csvf results.csv
SrumECmd
Parse the SRUDB.dat file to find the system resource usage, network and process, etc. The file can be found at C:\\Windows\\System32\\sru\\SRUDB.dat
SrumECmd.exe -f "C:\\Users\\Administrator\\Desktop\\SRUDB.dat" --csv "C:\\Users\\<user>\\Desktop\\" --csvf results.csv
AppCompatCacheParser
To parse the ShimCache from the registry hive,
AppCompatCacheParser.exe -f "</path/to/SYSTEM/hive>" --csv "C:\\Users\\<user>\\Desktop\\" --csvf results.csv
ShimCacheParser
Parse the ShimCache with ShimCacheParser,
python ShimCacheParser.py -i <SYSTEM-hive> -o results.csv
Hashing the files
Windows
Utilizing the great PowerShell, we can find the hash of the file,
# generate SHA256 hash by-default
get-filehash <file>
# generate MD5 hash
get-filehash -algorithm MD5 <file>
# generate SHA1 hash
get-filehash -algorithm SHA1 <file>
Linux
With Linux terminal, we can find the hash of the file,
# generate MD5 hash
md5sum <file>
# generate SHA1 hash
sha1sum <file>
# generate SHA256 hash
sha256sum <file>
File Extraction and Analysis
Use Binwalk tool to extract the files and analysis,
binwalk -e <file>
Bulk Extractor
Use bulk_extractor tool to extract the information without parsing file system,
bulk_extractor -o dump/ memory.dmp
Strings Command
To print the strings of printable characters,
strings <file>
Tools Utilized
Here is the list of all the tools utilized during the completion of the Certification. More tools can be added in coming future.
Tool Name | Resource Link | Purpose |
|---|---|---|
LiME | Memory Acquisition on Linux devices. | |
FTK Imager | Memory Acquisition on range of devices. | |
Belkasoft | Memory Acquisition. | |
DumpIt | http://www.toolwar.com/2014/01/dumpit-memory-dump-tools.html | Memory Acquisition. |
Encrypted Disk Detector | https://www.magnetforensics.com/resources/encrypted-disk-detector/ | Quickly checks for encrypted volumes on a system. |
KAPE | https://www.kroll.com/en/insights/publications/cyber/kroll-artifact-parser-extractor-kape | Used for fast acquisition of data. |
CyLR | Forensics artifacts collection tool. | |
dd | Used to create a disk image of a Linux OS. | |
Arsenal Image Mounter | Used to mount different image types. | |
Event log explorer | Used for Windows event log analysis. | |
Full Event Log view | Used to display a table that details all events from the event logs of Windows. | |
Volatility | Used for Memory Analysis. | |
AbuseIPDB | Detect abusive activity of IP address. | |
IPQuality Score | checks for IP addresses reputation. | |
Malware Sandbox. | ||
VirusTotal | Malware Sandbox. | |
Malware Sandbox. | ||
EZ Tools | Set of digital forensics tools. | |
NTFS Log Tracker | Used to parse | |
UserAssist | Used to display a table of programs executed on a Windows machine, run count, last execution date & time. | |
R-Studio | Used to recover lost files. | |
Wireshark | Used for Network Traffic analysis. | |
CobaltStrikeParser | A python parser for CobaltStrike Beacon's configuration. | |
Suricata | A popular open-source IDS. | |
RITA | An open source framework for detecting C2 through network traffic analysis. | |
Sysmon | https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon | Windows system service and device driver that logs system activity to Windows Event Log. |
Velociraptor | Used for collecting collect, monitor, and hunt on a single endpoint, a group of endpoints, or an entire network. | |
Gophish | Open-Source, advanced Phishing Simulation framework. | |
Epoch & Unix Timestamp Conversion Tools | Convert epoch to human-readable date and vice versa. | |
OSSEC | A powerful host-based intrusion detection system. | |
Nessus | https://www.tenable.com/downloads/nessus?loginAttempted=true | Popular Vulnerability Assessment Scanner. |
Microsoft Sentinel | https://azure.microsoft.com/en-in/products/microsoft-sentinel/ | A cloud native SIEM solution |
Open Threat Exchange (OTX) | Open Threat Intelligence Community | |
Canary Tokens | Used for tracking anything. | |
Elastic SIEM | Used for aggregating data, logging, monitoring. | |
Yara | Used my malware researchers to identify and classify malware sample. | |
SQLite Browser | A high quality, visual, open source tool to create, design, and edit database files compatible with SQLite. | |
RegRipper | Used to surgically extract, translate, and display information from Registry-formatted files via plugins in the form of Perl-scripts. | |
Binwalk | Used for for analyzing, reverse engineering, and extracting firmware images. | |
Used for parsing and displaying Master File Table (MFT) files. | ||
Used for Parsing and extracting a sortable list of basic Windows Prefetch file information based on "last run" timestamps. | ||
parseMFT | Parse the $MFT from an NTFS filesystem. | |
Brim | Used for network troubleshooting and security incident response. | |
NetworkMiner | Used to extract artifacts, such as files, images, emails and passwords, from captured network traffic in PCAP files. | |
Autopsy | Used for analyzing forensically-sound images. | |
Capa-Explorer | Used to identify capabilities in executable files. | |
IDA | Used for Reverse engineering the binary samples. | |
TurnedOnTimesView | Used to analyze the windows event logs and detect time ranges that a computer was turned on. | |
USB Forensic Tracker | http://orionforensics.com/forensics-tools/usb-forensic-tracker | Used to extracts USB device connection artefacts from a range of locations. |
WinDbg | https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools | Used for debugging. |
Outlook Forensics Wizard | Used to open, search, analyze, & export outlook data files of any size. | |
FakeNet | Used for dynamic network analysis. | |
oletools | Set of tools used for malware analysis, forensics, and debugging. | |
scdbg | Used to display to the user all of the Windows API the shellcode attempts to call. | |
Resource Hacker | A freeware resource compiler & decompiler for Windows applications. | |
Hashcat | Used to crack the hashes to obtain plain-text password. | |
John The Ripper | Used to crack the hashes to obtain plain-text password. | |
Bulk Extractor | https://downloads.digitalcorpora.org/downloads/bulk_extractor/ | Used to extract useful information without parsing the file system. |
jq | A command line JSON processor | |
AWS-CLI | https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html | Used to interact with AWS via Command Line. |
HindSight | Used for Web browser forensics for Google Chrome/Chromium | |
xxd | Creates a HEX dump of a file/input | |
ShimCacheParser | Used to parse the Application Compatibility Shim Cache stored in the Windows registry |