treyhunsucker
Programmer
Hello,
I am working on a script that will check to verify the md5 of a file hasn't changed. Here is what I have so far:
#!/usr/bin/perl
if ($md5 eq "@my_file") {
print "Secure";
} else {
print "Unsecure";
}
$md5 = 'MD5 (/etc/pf.conf) = d813f6767fd31ce8cb075cad145da694';
open (FILE, "/var/apps/scripts/security/results") or die "cannot open file: $!";
flock(FILE, 2) or die "cannot lock file: $!";
@my_file = <FILE>;
The problem I am running into is that even if I change $md5 to $md5 = 'test' then it still prints "Secure".
Any help would be greatly appreciated.
I am working on a script that will check to verify the md5 of a file hasn't changed. Here is what I have so far:
#!/usr/bin/perl
if ($md5 eq "@my_file") {
print "Secure";
} else {
print "Unsecure";
}
$md5 = 'MD5 (/etc/pf.conf) = d813f6767fd31ce8cb075cad145da694';
open (FILE, "/var/apps/scripts/security/results") or die "cannot open file: $!";
flock(FILE, 2) or die "cannot lock file: $!";
@my_file = <FILE>;
The problem I am running into is that even if I change $md5 to $md5 = 'test' then it still prints "Secure".
Any help would be greatly appreciated.