403Webshell
Server IP : 93.86.61.54  /  Your IP : 216.73.216.206
Web Server : Apache/2.4.62 (Ubuntu)
System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64
User : www-data ( 33)
PHP Version : 8.4.22
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/rkhunter/scripts/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/rkhunter/scripts/filehashsha.pl
#!/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;

Youez - 2016 - github.com/yon3zu
LinuXploit