/AutoLLR

Script to automate Linux live evidence collection

Primary LanguageShellGNU General Public License v3.0GPL-3.0

AutoLLR

Script to automate Linux live evidence collection

AutoLLR is a live Linux evidence collection script that gathers key artifacts important for Incident Response investigations. In addition to gathering artifacts AutoLLR does some low overhead post processing to produce refined results that analysts can look at immediately.

Results are divided into three (3) categories:

  1. System artifacts
  • General system information including
  • Dumps all process ENVIRON data
  • Collects bash histories
  • SSH info
  • and more
  1. Network artifacts
  • Different network connection pulls
  • Artifacts that record useful network information
  1. Triage searches
  • Hidden files, directories, executables
  • Targeted directory checks
  • Deleted binaries still running
  • Binaries running from temporary directories
  • Executables in interesting directories
  • Assorted data spoliation searches
  • Assorted persistence searches

Findings are hashed (MD5 SHA256) and archived upon completion.

Acknowledgments:

  • Developers of Bambiraptor. Some of the code was structured after bambiraptor.
  • Sandfly Security. Some of the triage searches follow the Sandfly fast triage methodology

Version 2.1 Updates - Bug fixes + setup command from Modules file combined into main script

Version 2.2 Updates: Fileless Linux attack detection Dervived from Sandfly Security research: https://www.sandflysecurity.com/blog/detecting-linux-memfd_create-fileless-malware-with-command-line-forensics/

  • Processes with memfd executable
  • Process COMM and CMDLINE agreement
  • Process CWD and EXE check
  • Process MAP details with memfd references
  • Process ENVIRON ssh details

Version 2.3 Updates: Dervived from Sandfly Security research: https://www.sandflysecurity.com/blog/detecting-linux-kernel-process-masquerading-with-command-line-forensics/#more-2777

  • Kernel Thread Masquerading – detects via the process environment ‘maps’ artifact.
  • Kernel Thread Masquerading – detects via the process environment ‘exe’ artifact.
  • SHA1 of all running processes. To generate a list for OSINT hash checks.

Version 2.4 Updates:

  • Replaced SHA1 hashing with SHA256.
  • Bug fixes
  • Extracts all binaries from memory and saves them as PID_number.recovered. If suspected malware is running on the system, this step automatically retreives a copy for binary analysis.