-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFIMlinux.sh
32 lines (23 loc) · 1.11 KB
/
FIMlinux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# LOGIC
#find * -exec md5sum {} \; > hash_original
#find * -exec md5sum {} \; > hash_modefied
#diff hash_original hash_modefied
#!/bin/bash
echo "Enter a directory path or file pattern:"
read path
# Get the current date and time in the format "DD-MM-YYYY_HH:MM:SS"
current_datetime=$(date +%d-%m-%Y_%H:%M:%S)
# Use the current date and time as the name of the initial hash file
initial_hash_file="hash_$current_datetime.txt"
# Create a file named "hash_DD-MM-YYYY_HH:MM:SS.txt" containing the MD5 hashes of the specified files
find "$path" -exec md5sum {} \; > "$initial_hash_file"
# Continuously check the files for changes
while true; do
# Calculate the current MD5 hashes of the files
current_hash_file="hash_$current_datetime.txt"
find "$path" -exec md5sum {} \; > "$current_hash_file"
# Compare the current hashes with the baseline
diff "$initial_hash_file" "$current_hash_file"
# Sleep for 1 second before checking again
sleep 1
done