mirror of
https://github.com/ovh/the-bastion.git
synced 2025-09-04 12:04:11 +08:00
feat: add the accountUnlock restricted plugin
This commit is contained in:
parent
d51c4c8be0
commit
aaaa173764
8 changed files with 198 additions and 1 deletions
102
bin/helper/osh-accountUnlock
Executable file
102
bin/helper/osh-accountUnlock
Executable file
|
@ -0,0 +1,102 @@
|
|||
#! /usr/bin/perl -T
|
||||
# vim: set filetype=perl ts=4 sw=4 sts=4 et:
|
||||
# NEEDGROUP osh-accountUnlock
|
||||
# SUDOERS %osh-accountUnlock ALL=(root) NOPASSWD:/usr/bin/env perl -T /opt/bastion/bin/helper/osh-accountUnlock *
|
||||
# FILEMODE 0700
|
||||
# FILEOWN 0 0
|
||||
|
||||
#>HEADER
|
||||
use common::sense;
|
||||
use Getopt::Long;
|
||||
use File::Basename;
|
||||
use lib dirname(__FILE__) . '/../../lib/perl';
|
||||
use OVH::Result;
|
||||
use OVH::Bastion;
|
||||
use OVH::Bastion::Helper;
|
||||
|
||||
# Fetch command options
|
||||
my $fnret;
|
||||
my ($result, @optwarns);
|
||||
my ($account);
|
||||
eval {
|
||||
local $SIG{__WARN__} = sub { push @optwarns, shift };
|
||||
$result = GetOptions("account=s" => sub { $account //= $_[1] },);
|
||||
};
|
||||
if ($@) { die $@ }
|
||||
|
||||
if (!$result) {
|
||||
local $" = ", ";
|
||||
HEXIT('ERR_BAD_OPTIONS', msg => "Error parsing options: @optwarns");
|
||||
}
|
||||
if (!$account) {
|
||||
HEXIT('ERR_MISSING_PARAMETER', msg => "Missing argument 'account'");
|
||||
}
|
||||
|
||||
#<HEADER
|
||||
#>RIGHTSCHECK
|
||||
if ($self eq 'root') {
|
||||
osh_debug "Real root, skipping checks of permissions";
|
||||
}
|
||||
else {
|
||||
# need to perform another security check
|
||||
$fnret = OVH::Bastion::is_user_in_group(
|
||||
user => $self,
|
||||
group => "osh-accountUnlock"
|
||||
);
|
||||
if (!$fnret) {
|
||||
HEXIT('ERR_SECURITY_VIOLATION', msg => "You're not allowed to run this, dear $self");
|
||||
}
|
||||
}
|
||||
|
||||
#<RIGHTSCHECK
|
||||
#>PARAMS:ACCOUNT
|
||||
osh_debug("Checking account");
|
||||
$fnret = OVH::Bastion::is_bastion_account_valid_and_existing(account => $account);
|
||||
$fnret or HEXIT($fnret);
|
||||
$account = $fnret->value->{'account'}; # untainted
|
||||
|
||||
#<PARAMS:ACCOUNT
|
||||
|
||||
osh_info("Attempting to unlock account... system helper output will follow.");
|
||||
osh_info("\n");
|
||||
|
||||
# we need a list because we want to try in that specific order
|
||||
my @programs = qw{ faillock pam_tally2 pam_tally };
|
||||
my %cmds = (
|
||||
faillock => [qw{ faillock --user }, $account],
|
||||
pam_tally2 => [qw{ pam_tally2 -u }, $account, '-r'],
|
||||
pam_tally => [qw{ pam_tally --user }, $account, '--reset'],
|
||||
);
|
||||
|
||||
my $found;
|
||||
foreach my $program (@programs) {
|
||||
next if not $cmds{$program};
|
||||
next if not OVH::Bastion::is_in_path(binary => $cmds{$program}[0]);
|
||||
$found = $program;
|
||||
last;
|
||||
}
|
||||
|
||||
if (!$found) {
|
||||
if (OVH::Bastion::is_linux()) {
|
||||
warn_syslog("Couldn't unlock account $account, as neither faillock, pam_tally2 or pam_tally seem to be installed");
|
||||
HEXIT('ERR_HELPER_MISSING', msg => "Found no unlock helper on this system. Please contact your sysadmin!");
|
||||
}
|
||||
else {
|
||||
HEXIT('ERR_UNSUPPORTED_FEATURE', msg => "Can't unlock account, your system might not support it");
|
||||
}
|
||||
}
|
||||
|
||||
$fnret = OVH::Bastion::execute(cmd => $cmds{$found}, must_succeed => 1, noisy_stdout => 1, noisy_stderr => 1);
|
||||
if (!$fnret) {
|
||||
my $error = '(empty)';
|
||||
if ($fnret->value->{'stderr'}) {
|
||||
$error = $fnret->value->{'stderr'}[0];
|
||||
}
|
||||
elsif ($fnret->value->{'stdout'}) {
|
||||
$error = $fnret->value->{'stdout'}[0];
|
||||
}
|
||||
warn_syslog("Got an error trying to unlock account $account through $found, first returned line was '$error'");
|
||||
HEXIT R('ERR_INTERNAL', msg => "Failed to unlock $account");
|
||||
}
|
||||
|
||||
HEXIT('OK', value => {account => $account}, msg => "Account '$account' has been successfully unlocked.");
|
48
bin/plugin/restricted/accountUnlock
Executable file
48
bin/plugin/restricted/accountUnlock
Executable file
|
@ -0,0 +1,48 @@
|
|||
#! /usr/bin/env perl
|
||||
# vim: set filetype=perl ts=4 sw=4 sts=4 et:
|
||||
use common::sense;
|
||||
use Term::ANSIColor qw{ colored };
|
||||
use POSIX qw{ strftime };
|
||||
use File::Basename;
|
||||
use lib dirname(__FILE__) . '/../../../lib/perl';
|
||||
use OVH::Result;
|
||||
use OVH::Bastion;
|
||||
use OVH::Bastion::Plugin qw( :DEFAULT help );
|
||||
my ($account);
|
||||
OVH::Bastion::Plugin::begin(
|
||||
argv => \@ARGV,
|
||||
header => "unlock an account",
|
||||
options => {
|
||||
"account=s" => \$account
|
||||
},
|
||||
helptext => <<'EOF',
|
||||
Unlock an account locked by pam_tally, pam_tally2 or pam_faillock
|
||||
|
||||
Usage: --osh SCRIPT_NAME --account ACCOUNT
|
||||
|
||||
--account ACCOUNT Account to work on
|
||||
EOF
|
||||
);
|
||||
#
|
||||
# code
|
||||
#
|
||||
my $fnret;
|
||||
if (not $account) {
|
||||
help();
|
||||
osh_exit 'ERR_MISSING_PARAMETER', "Missing 'account' parameter";
|
||||
}
|
||||
|
||||
# Here we parse account name
|
||||
$fnret = OVH::Bastion::is_bastion_account_valid_and_existing(account => $account);
|
||||
$fnret
|
||||
or osh_exit $fnret;
|
||||
$account = $fnret->value->{'account'};
|
||||
my @command = qw{ sudo -n -u root -- };
|
||||
push @command, qw{ /usr/bin/env perl -T };
|
||||
push @command, $OVH::Bastion::BASEPATH . '/bin/helper/osh-accountUnlock';
|
||||
push @command, ('--account', $account);
|
||||
osh_exit(
|
||||
OVH::Bastion::helper(
|
||||
cmd => \@command
|
||||
)
|
||||
);
|
20
doc/sphinx/plugins/restricted/accountUnlock.rst
Normal file
20
doc/sphinx/plugins/restricted/accountUnlock.rst
Normal file
|
@ -0,0 +1,20 @@
|
|||
==============
|
||||
accountUnlock
|
||||
==============
|
||||
|
||||
Unlock an account locked by pam_tally, pam_tally2 or pam_faillock
|
||||
=================================================================
|
||||
|
||||
|
||||
.. admonition:: usage
|
||||
:class: cmdusage
|
||||
|
||||
--osh accountUnlock --account ACCOUNT
|
||||
|
||||
.. program:: accountUnlock
|
||||
|
||||
|
||||
.. option:: --account ACCOUNT
|
||||
|
||||
Account to work on
|
||||
|
|
@ -22,6 +22,7 @@ restricted plugins
|
|||
accountPIV
|
||||
accountRevokeCommand
|
||||
accountUnexpire
|
||||
accountUnlock
|
||||
groupCreate
|
||||
groupDelete
|
||||
realmCreate
|
||||
|
|
1
etc/sudoers.d/osh-plugin-accountUnlock
Normal file
1
etc/sudoers.d/osh-plugin-accountUnlock
Normal file
|
@ -0,0 +1 @@
|
|||
%osh-accountUnlock ALL=(root) NOPASSWD:/usr/bin/env perl -T /opt/bastion/bin/helper/osh-accountUnlock *
|
|
@ -141,7 +141,7 @@ my %_autoload_files = (
|
|||
qw{ enable_mocking is_mocking set_mock_data mock_get_account_entry mock_get_account_accesses mock_get_account_personal_accesses mock_get_account_legacy_accesses mock_get_group_accesses mock_get_account_guest_accesses }
|
||||
],
|
||||
os => [
|
||||
qw{ sysinfo is_linux is_debian is_redhat is_bsd is_freebsd is_openbsd is_netbsd has_acls sys_useradd sys_groupadd sys_userdel sys_groupdel sys_addmembertogroup sys_delmemberfromgroup sys_changepassword sys_neutralizepassword sys_setpasswordpolicy sys_getpasswordinfo sys_getsudoersfolder sys_setfacl }
|
||||
qw{ sysinfo is_linux is_debian is_redhat is_bsd is_freebsd is_openbsd is_netbsd has_acls sys_useradd sys_groupadd sys_userdel sys_groupdel sys_addmembertogroup sys_delmemberfromgroup sys_changepassword sys_neutralizepassword sys_setpasswordpolicy sys_getpasswordinfo sys_getsudoersfolder sys_setfacl is_in_path }
|
||||
],
|
||||
password => [qw{ get_hashes_from_password get_hashes_list is_valid_hash }],
|
||||
ssh => [
|
||||
|
|
|
@ -586,4 +586,14 @@ sub sys_setfacl {
|
|||
return R('OK');
|
||||
}
|
||||
|
||||
sub is_in_path {
|
||||
my %params = @_;
|
||||
my $binary = $params{'binary'};
|
||||
|
||||
foreach my $path (split /:/, $ENV{'PATH'}) {
|
||||
return R('OK', value => "$path/$binary") if -f -x "$path/$binary";
|
||||
}
|
||||
return R('KO', msg => "$binary was not found in PATH");
|
||||
}
|
||||
|
||||
1;
|
||||
|
|
|
@ -55,6 +55,21 @@ testsuite_accountinfo()
|
|||
json .value.already_seen_before 1
|
||||
contain "Last seen on"
|
||||
|
||||
# try to unlock
|
||||
grant accountUnlock
|
||||
|
||||
run a0_unlock_a1 $a0 --osh accountUnlock --account $account1
|
||||
json .command accountUnlock
|
||||
if [ "$OS_FAMILY" = Linux ]; then
|
||||
retvalshouldbe 0
|
||||
json .error_code OK
|
||||
else
|
||||
retvalshouldbe 100
|
||||
json .error_code ERR_UNSUPPORTED_FEATURE
|
||||
fi
|
||||
|
||||
revoke accountUnlock
|
||||
|
||||
grant accountModify
|
||||
|
||||
# a0 changes a2 expiration policy
|
||||
|
|
Loading…
Add table
Reference in a new issue