Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
op7ic committed Jun 18, 2024
1 parent 811eb2c commit dab5c65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ A shell script for basic forensic collection of various artefacts from UNIX syst

* Runs everything from a single script
* No installation or external libraries needed

# Script Activities

* Enumerate basic host information such as kernel version, processes, hostname and save details in output directory.
* Enumerate files written to the disk and create basic timeline using 'stat' command.
* Enumerate network information and save details in output directory.
Expand Down
6 changes: 6 additions & 0 deletions unix_collector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,12 @@ then
cp -R /dev/shm/ $OUTPUT_DIR/general/dev_shm_folder/ 2> /dev/null
fi

if [ -d /run/shm ]
then
cp -R /run/shm/ $OUTPUT_DIR/general/run_shm_folder/ 2> /dev/null
fi


if [ $PLATFORM = "mac" ]
then
crontab -v 1> $OUTPUT_DIR/general/crontab-v.txt 2> /dev/null
Expand Down

0 comments on commit dab5c65

Please sign in to comment.