Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
rkhunter /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
check_modules.pl
1.85
KB
-rwxrwxrwx
2017-07-12 05:07
filehashsha.pl
689
B
-rwxrwxrwx
2017-07-12 05:07
readlink.sh
3.15
KB
-rwxrwxrwx
2017-07-12 05:07
rkhupd.sh
305
B
-rwxrwxrwx
2017-07-12 05:07
stat.pl
3.02
KB
-rwxrwxrwx
2017-07-12 05:07
Save
Rename
#!/usr/bin/perl die "Usage: $0 <module name> <SHA size> <filename>" if ($#ARGV != 2); my $sha = ''; my $mod = $ARGV[0]; my $size = $ARGV[1]; my $file = $ARGV[2]; eval "use $mod"; die "Invalid module: $mod" if ($@); if ($mod eq 'Digest::SHA1' || $mod eq 'Digest::Whirlpool' || $mod eq 'Crypt::RIPEMD160' || $mod eq 'Digest::MD5') { $sha = $mod -> new; } elsif ($mod eq 'Digest::SHA256') { $sha = Digest::SHA256::new($size); } else { $sha = $mod -> new($size); } # Open file in binary mode open(FILE, $file) or die "Can't open file '$file'"; binmode(FILE); # Hash file contents $sha -> add($_) while (<FILE>); close(FILE); $_ = $sha -> hexdigest; s/ //g; print $_, "\n"; exit;