[ Avaa Bypassed ]




Upload:

Command:

www-data@3.17.185.36: ~ $
# Functions for MD5 and SHA1 password encryption

use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our %config;

# check_md5()
# Returns a perl module name if the needed perl module(s) for MD5 encryption
# are not installed, or undef if they are
sub check_md5
{
# On some systems, the crypt function just works!
return undef if (&unix_crypt_supports_md5());

# Try Perl modules
eval "use MD5";
if (!$@) {
	eval "use Digest::MD5";
	if ($@) {
		return "Digest::MD5";
		}
	}
return undef;
}

# encrypt_md5(string, [salt])
# Returns a string encrypted in MD5 format
sub encrypt_md5
{
my ($passwd, $salt) = @_;
my $magic = '$1$';
if ($salt && $salt =~ /^\$1\$([^\$]+)/) {
	# Extract actual salt from already encrypted password
	$salt = $1;
	}
if ($salt && $salt !~ /^[a-z0-9\/\.]{8}$/i) {
	# Non-MD5 salt
	$salt = undef;
	}
$salt ||= substr(time(), -8);

# Use built-in crypt support for MD5, if we can
if (&unix_crypt_supports_md5()) {
	return crypt($passwd, $magic.$salt.'$xxxxxxxxxxxxxxxxxxxxxx');
	}

# Add the password, magic and salt
my $cls = "MD5";
eval "use MD5";
if ($@) {
	$cls = "Digest::MD5";
	eval "use Digest::MD5";
	if ($@) {
		&error("Missing MD5 or Digest::MD5 perl modules");
		}
	}
my $ctx = eval "new $cls";
$ctx->add($passwd);
$ctx->add($magic);
$ctx->add($salt);

# Add some more stuff from the hash of the password and salt
my $ctx1 = eval "new $cls";
$ctx1->add($passwd);
$ctx1->add($salt);
$ctx1->add($passwd);
my $final = $ctx1->digest();
for(my $pl=length($passwd); $pl>0; $pl-=16) {
	$ctx->add($pl > 16 ? $final : substr($final, 0, $pl));
	}

# This piece of code seems rather pointless, but it's in the C code that
# does MD5 in PAM so it has to go in!
my $j = 0;
for(my $i=length($passwd); $i; $i >>= 1) {
	if ($i & 1) {
		$ctx->add("\0");
		}
	else {
		$ctx->add(substr($passwd, $j, 1));
		}
	}
$final = $ctx->digest();

# This loop exists only to waste time
for(my $i=0; $i<1000; $i++) {
	my $ctx1 = eval "new $cls";
	$ctx1->add($i & 1 ? $passwd : $final);
	$ctx1->add($salt) if ($i % 3);
	$ctx1->add($passwd) if ($i % 7);
	$ctx1->add($i & 1 ? $final : $passwd);
	$final = $ctx1->digest();
	}

# Convert the 16-byte final string into a readable form
my $rv = $magic.$salt.'$';
my @final = map { ord($_) } split(//, $final);
my $l = ($final[ 0]<<16) + ($final[ 6]<<8) + $final[12];
$rv .= &to64($l, 4);
$l = ($final[ 1]<<16) + ($final[ 7]<<8) + $final[13];
$rv .= &to64($l, 4);
$l = ($final[ 2]<<16) + ($final[ 8]<<8) + $final[14];
$rv .= &to64($l, 4);
$l = ($final[ 3]<<16) + ($final[ 9]<<8) + $final[15];
$rv .= &to64($l, 4);
$l = ($final[ 4]<<16) + ($final[10]<<8) + $final[ 5];
$rv .= &to64($l, 4);
$l = $final[11];
$rv .= &to64($l, 2);

return $rv;
}

# unix_crypt_supports_md5()
# Returns 1 if the built-in crypt() function can already do MD5
sub unix_crypt_supports_md5
{
my $hash = '$1$A9wB3O18$zaZgqrEmb9VNltWTL454R/';
my $newhash = eval { crypt('test', $hash) };
return $newhash eq $hash;
}

our @itoa64 = split(//, "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");

sub to64
{
my ($v, $n) = @_;
my $r = "";
while(--$n >= 0) {
        $r .= $itoa64[$v & 0x3f];
        $v >>= 6;
        }
return $r;
}

sub check_sha1
{
eval "use Digest::SHA1";
return undef if (!$@);
eval "use Digest::SHA";
return undef if (!$@);
return "Digest::SHA";
}

# encrypt_sha1(password)
# Encrypts a password in SHA1 format
sub encrypt_sha1
{
my ($pass) = @_;
my $sh = eval "use Digest::SHA1 qw(sha1_base64);return sha1_base64(\$pass);";
if ($@) {
	$sh = eval "use Digest::SHA qw(sha1_base64);return sha1_base64(\$pass);";
	}
return "{SHA}$sh=";
}

# encrypt_sha1_hash(password, salt)
# Hashes a combined salt+password with SHA1, and returns it in hex. Used on OSX
sub encrypt_sha1_hash
{
my ($pass, $salt) = @_;
# XXX not done yet??
}

# check_blowfish()
# Returns an missing Perl module if blowfish is not available, undef if OK
sub check_blowfish
{
eval "use Crypt::Eksblowfish::Bcrypt";
return $@ ? "Crypt::Eksblowfish::Bcrypt" : undef;
}

# encrypt_blowfish(password, [salt])
# Returns a string encrypted in blowfish format, suitable for /etc/shadow
sub encrypt_blowfish
{
my ($passwd, $salt) = @_;
my ($plain, $base64) = ("", "");
eval "use Crypt::Eksblowfish::Bcrypt";
if ($salt && $salt !~ /^\$2a\$/) {
	# Invalid salt for Blowfish
	$salt = undef;
	}
if (!$salt) {
	# Generate a 22-character base-64 format salt
	&seed_random();
	while(length($base64) < 22) {
		$plain .= chr(int(rand()*96)+32);
		$base64 = Crypt::Eksblowfish::Bcrypt::en_base64($plain);
		}
	$base64 = substr($base64, 0, 22);
	$salt = '$2a$'.'08'.'$'.$base64;
	}
return Crypt::Eksblowfish::Bcrypt::bcrypt($passwd, $salt);
}

# unix_crypt_supports_sha512()
# Returns 1 if the built-in crypt() function can already do SHA512
sub unix_crypt_supports_sha512
{
my $hash = '$6$Tk5o/GEE$zjvXhYf/dr5M7/jan3pgunkNrAsKmQO9r5O8sr/Cr1hFOLkWmsH4iE9hhqdmHwXd5Pzm4ubBWTEjtMeC.h5qv1';
my $newhash = eval { crypt('test', $hash) };
return $newhash eq $hash;
}

# check_sha512()
# Returns undef if SHA512 hashing is supported, or an error message if not
sub check_sha512
{
return &unix_crypt_supports_sha512() ? undef : 'Crypt::SHA';
}

# encrypt_sha512(password, [salt])
# Hashes a password, possibly with the given salt, with SHA512
sub encrypt_sha512
{
my ($passwd, $salt) = @_;
$salt ||= '$6$'.substr(time(), -8).'$';
return crypt($passwd, $salt);
}

# unix_crypt_supports_yescrypt()
# Returns 1 if the built-in crypt() function can already do yescrypt
sub unix_crypt_supports_yescrypt
{
my $hash = '$y$j9T$waHytoaqP/CEnKFroGn0S/$fxd5mVc2mBPUc3vv.cpqDckpwrWTyIm2iD4JfnVBi26';
my $newhash = eval { crypt('test', $hash) };
return $newhash eq $hash;
}

# check_yescrypt()
# Returns undef if yescrypt hashing is supported, or an error message if not
sub check_yescrypt
{
return &unix_crypt_supports_yescrypt() ? undef : 'Crypt::NaCl::Sodium';
}

# encrypt_yescrypt(password, [salt])
# Hashes a password, possibly with the given salt, with yescrypt
sub encrypt_yescrypt
{
my ($passwd, $salt) = @_;
$salt ||= &substitute_pattern('$y$j9T$[A-Z]{4}.[a-zA-Z0-9]{16}.$[a-zA-Z0-9]{14}.[a-zA-Z0-9]{7}/[a-zA-Z0-9]{15}/[a-zA-Z0-9]{4}');
return crypt($passwd, $salt);
}

# validate_password(password, hash)
# Compares a password with a hash to see if they match, returns 1 if so,
# 0 otherwise. Tries all supported hashing schemes.
sub validate_password
{
my ($passwd, $hash) = @_;

# Classic Unix crypt
my $chash = eval {
	local $main::error_must_die = 1;
	&unix_crypt($passwd, $hash);
	};
return 1 if ($chash eq $hash);

# MD5
if (!&check_md5()) {
	my $mhash = &encrypt_md5($passwd, $hash);
	return 1 if ($mhash eq $hash);
	}

# Blowfish
if (!&check_blowfish()) {
	my $mhash = &encrypt_blowfish($passwd, $hash);
	return 1 if ($mhash eq $hash);
	}

# SHA512
if (!&check_sha512()) {
	my $shash = &encrypt_sha512($passwd, $hash);
	return 1 if ($shash && $shash eq $hash);
	}

# yescrypt
if (!&check_yescrypt()) {
	my $shash = &encrypt_yescrypt($passwd, $hash);
	return 1 if ($shash && $shash eq $hash);
	}

# Some other hashing, maybe supported by crypt
my $ohash = eval { crypt($passwd, $hash) };
return 1 if ($ohash && $ohash eq $hash);

return 0;
}

=head2 is_dictionary_word(word)

Returns 1 if some file can be found in a dictionary words file

=cut
sub is_dictionary_word
{
my ($word) = @_;
$word = lc($word);
my @files;
if ($config{'dict_file'}) {
	@files = split(/\s+/, $config{'dict_file'});
	}
else {
	@files = ( "/usr/share/dict/words",
		   "/usr/share/dict/linux.words",
		   "/usr/dict/words" );
	}
foreach my $f (@files) {
	my $found = 0;
	my $fh = "WORDS";
	&open_readfile($fh, $f);
	while(<$fh>) {
		s/#.*//;
		s/\s//;
		if (lc($_) eq $word) {
			$found = 1;
			last;
			}
		}
	close($fh);
	return 1 if ($found);
	}
return 0;
}

1;


Filemanager

Name Type Size Permission Actions
help Folder 0755
images Folder 0755
lang Folder 0755
CHANGELOG File 5.66 KB 0644
acl_security.pl File 13.74 KB 0755
aix-lib.pl File 1.17 KB 0755
backup_config.pl File 749 B 0755
batch_exec.cgi File 17.21 KB 0755
batch_form.cgi File 2.42 KB 0755
cgi_args.pl File 477 B 0755
config-aix File 703 B 0644
config-cobalt-linux File 710 B 0644
config-coherent-linux File 657 B 0644
config-corel-linux File 665 B 0644
config-debian-linux File 665 B 0644
config-freebsd File 684 B 0644
config-generic-linux File 677 B 0644
config-gentoo-linux File 637 B 0644
config-hpux File 579 B 0644
config-irix File 757 B 0644
config-macos File 581 B 0644
config-mandrake-linux File 662 B 0644
config-msc-linux File 657 B 0644
config-netbsd File 623 B 0644
config-open-linux File 687 B 0644
config-openSUSE-Linux-15.0-ALL File 715 B 0644
config-openbsd File 636 B 0644
config-openmamba-linux File 657 B 0644
config-openserver File 841 B 0644
config-osf1 File 579 B 0644
config-pardus-linux File 665 B 0644
config-redhat-linux-15.0-ALL File 659 B 0644
config-redhat-linux-ALL-14.9 File 657 B 0644
config-slackware-linux File 663 B 0644
config-sol-linux File 657 B 0644
config-solaris File 631 B 0644
config-suse-linux File 677 B 0644
config-suse-linux-9.0-ALL File 715 B 0644
config-trustix-linux File 657 B 0644
config-turbo-linux File 677 B 0644
config-united-linux File 677 B 0644
config-unixware File 595 B 0644
config.info File 4.05 KB 0644
config.info.bg File 7.87 KB 0644
config.info.ca File 4.82 KB 0644
config.info.cs File 4.21 KB 0644
config.info.da File 3.7 KB 0644
config.info.de File 4.65 KB 0644
config.info.es File 4.34 KB 0644
config.info.fa File 6.04 KB 0644
config.info.fr File 2.77 KB 0644
config.info.hu File 0 B 0644
config.info.ja File 4.96 KB 0644
config.info.nl File 4.61 KB 0644
config.info.no File 4.12 KB 0644
config.info.pl File 3.01 KB 0644
config.info.pt_BR File 4.36 KB 0644
config.info.ru File 4.61 KB 0644
config.info.sv File 1.06 KB 0644
config.info.tr File 3.69 KB 0644
config.info.uk File 4.58 KB 0644
config.info.zh File 961 B 0644
config.info.zh_TW File 909 B 0644
cpan_modules.pl File 256 B 0755
defaultacl File 358 B 0644
delete_group.cgi File 2.18 KB 0755
delete_user.cgi File 4.67 KB 0755
edit_group.cgi File 4.97 KB 0755
edit_user.cgi File 18.46 KB 0755
export_exec.cgi File 2.9 KB 0755
export_form.cgi File 1.77 KB 0755
freebsd-lib.pl File 1.74 KB 0755
gbatch_exec.cgi File 8.1 KB 0755
gbatch_form.cgi File 1.59 KB 0755
gexport_exec.cgi File 1.73 KB 0755
gexport_form.cgi File 1.26 KB 0755
help.html File 6.79 KB 0644
hpux-lib.pl File 1.02 KB 0755
index.cgi File 7.38 KB 0755
irix-lib.pl File 1.09 KB 0755
linux-lib.pl File 4.75 KB 0755
list_logins.cgi File 1.55 KB 0755
list_who.cgi File 945 B 0755
log_parser.pl File 1.68 KB 0755
macos-lib.pl File 3.15 KB 0755
mass_delete_group.cgi File 2.41 KB 0755
mass_delete_user.cgi File 7.65 KB 0755
md5-lib.pl File 7.58 KB 0755
module.info File 544 B 0644
module.info.af File 0 B 0644
module.info.af.auto File 155 B 0644
module.info.ar File 173 B 0644
module.info.ar.auto File 34 B 0644
module.info.be File 0 B 0644
module.info.be.auto File 247 B 0644
module.info.bg File 0 B 0644
module.info.bg.auto File 228 B 0644
module.info.ca File 117 B 0644
module.info.ca.auto File 27 B 0644
module.info.cs File 30 B 0644
module.info.cs.auto File 134 B 0644
module.info.da File 27 B 0644
module.info.da.auto File 116 B 0644
module.info.de File 133 B 0644
module.info.de.auto File 25 B 0644
module.info.el File 0 B 0644
module.info.el.auto File 258 B 0644
module.info.es File 26 B 0644
module.info.es.auto File 136 B 0644
module.info.eu File 0 B 0644
module.info.eu.auto File 175 B 0644
module.info.fa File 0 B 0644
module.info.fa.auto File 220 B 0644
module.info.fi File 0 B 0644
module.info.fi.auto File 156 B 0644
module.info.fr File 32 B 0644
module.info.fr.auto File 154 B 0644
module.info.he File 0 B 0644
module.info.he.auto File 182 B 0644
module.info.hr File 0 B 0644
module.info.hr.auto File 147 B 0644
module.info.hu File 37 B 0644
module.info.hu.auto File 156 B 0644
module.info.it File 0 B 0644
module.info.it.auto File 129 B 0644
module.info.ja File 39 B 0644
module.info.ja.auto File 175 B 0644
module.info.ko File 29 B 0644
module.info.ko.auto File 142 B 0644
module.info.lt File 0 B 0644
module.info.lt.auto File 166 B 0644
module.info.lv File 0 B 0644
module.info.lv.auto File 167 B 0644
module.info.ms File 124 B 0644
module.info.ms.auto File 26 B 0644
module.info.mt File 0 B 0644
module.info.mt.auto File 133 B 0644
module.info.nl File 30 B 0644
module.info.nl.auto File 123 B 0644
module.info.no File 27 B 0644
module.info.no.auto File 116 B 0644
module.info.pl File 122 B 0644
module.info.pl.auto File 31 B 0644
module.info.pt File 30 B 0644
module.info.pt.auto File 124 B 0644
module.info.pt_BR File 30 B 0644
module.info.pt_BR.auto File 130 B 0644
module.info.ro File 0 B 0644
module.info.ro.auto File 167 B 0644
module.info.ru File 49 B 0644
module.info.ru.auto File 208 B 0644
module.info.sk File 0 B 0644
module.info.sk.auto File 177 B 0644
module.info.sl File 0 B 0644
module.info.sl.auto File 163 B 0644
module.info.sv File 31 B 0644
module.info.sv.auto File 128 B 0644
module.info.th File 0 B 0644
module.info.th.auto File 260 B 0644
module.info.tr File 31 B 0644
module.info.tr.auto File 147 B 0644
module.info.uk File 0 B 0644
module.info.uk.auto File 247 B 0644
module.info.ur File 0 B 0644
module.info.ur.auto File 232 B 0644
module.info.vi File 0 B 0644
module.info.vi.auto File 177 B 0644
module.info.zh File 24 B 0644
module.info.zh.auto File 103 B 0644
module.info.zh_TW File 30 B 0644
module.info.zh_TW.auto File 109 B 0644
my_group_chooser.cgi File 6.9 KB 0755
my_user_chooser.cgi File 6.56 KB 0755
netbsd-lib.pl File 1.74 KB 0755
openbsd-lib.pl File 1.74 KB 0755
openserver-lib.pl File 1.18 KB 0755
osf1-lib.pl File 1.01 KB 0755
prefs.info File 134 B 0644
rbac-mapping File 190 B 0644
save_group.cgi File 4.86 KB 0755
save_user.cgi File 20.39 KB 0755
search_group.cgi File 991 B 0755
search_user.cgi File 1.33 KB 0755
solaris-lib.pl File 1.78 KB 0755
unixware-lib.pl File 1.13 KB 0755
user-lib.pl File 71.71 KB 0755