mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 01:49:11 +00:00
Test that digest matching works with LDAP sudoCommand: ALL
This commit is contained in:
parent
702746f96b
commit
292916f43c
2
MANIFEST
2
MANIFEST
@ -940,6 +940,8 @@ plugins/sudoers/regress/testsudoers/test15.out.ok
|
||||
plugins/sudoers/regress/testsudoers/test15.sh
|
||||
plugins/sudoers/regress/testsudoers/test16.out.ok
|
||||
plugins/sudoers/regress/testsudoers/test16.sh
|
||||
plugins/sudoers/regress/testsudoers/test17.out.ok
|
||||
plugins/sudoers/regress/testsudoers/test17.sh
|
||||
plugins/sudoers/regress/testsudoers/test2.inc
|
||||
plugins/sudoers/regress/testsudoers/test2.out.ok
|
||||
plugins/sudoers/regress/testsudoers/test2.sh
|
||||
|
10
plugins/sudoers/regress/testsudoers/test17.out.ok
Normal file
10
plugins/sudoers/regress/testsudoers/test17.out.ok
Normal file
@ -0,0 +1,10 @@
|
||||
Parses OK
|
||||
|
||||
Entries for user root:
|
||||
|
||||
ALL = (ALL) sha224:fIoq2MAfM/PZKTbkn9RE4VZ8YHjwnwTgE28Hxw== ALL
|
||||
host matched
|
||||
runas matched
|
||||
cmnd allowed
|
||||
|
||||
Command allowed
|
51
plugins/sudoers/regress/testsudoers/test17.sh
Executable file
51
plugins/sudoers/regress/testsudoers/test17.sh
Executable file
@ -0,0 +1,51 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Test that digest matching works with LDAP sudoCommand: ALL
|
||||
#
|
||||
|
||||
: ${TESTSUDOERS=testsudoers}
|
||||
|
||||
# Create test command with known digest
|
||||
TESTDIR="`pwd`/regress/testsudoers"
|
||||
cat >"$TESTDIR/hello" <<EOF
|
||||
#!/bin/sh
|
||||
echo Hello World
|
||||
EOF
|
||||
chmod 755 "$TESTDIR/hello"
|
||||
SHA224_DIGEST="fIoq2MAfM/PZKTbkn9RE4VZ8YHjwnwTgE28Hxw=="
|
||||
|
||||
$TESTSUDOERS -i ldif root "${TESTDIR}/hello" <<-EOF
|
||||
dn: dc=sudo,dc=ws
|
||||
objectClass: dcObject
|
||||
objectClass: organization
|
||||
dc: bigwheel
|
||||
o: Big Wheel
|
||||
description: Big Wheel
|
||||
|
||||
# Organizational Role for Directory Manager
|
||||
dn: cn=Manager,dc=sudo,dc=ws
|
||||
objectClass: organizationalRole
|
||||
cn: Manager
|
||||
description: Directory Manager
|
||||
|
||||
# SUDOers, sudo.ws
|
||||
dn: ou=SUDOers,dc=sudo,dc=ws
|
||||
objectClass: top
|
||||
objectClass: organizationalUnit
|
||||
description: SUDO Configuration Subtree
|
||||
ou: SUDOers
|
||||
|
||||
# root, SUDOers, sudo.ws
|
||||
dn: cn=root,ou=SUDOers,dc=sudo,dc=ws
|
||||
objectClass: top
|
||||
objectClass: sudoRole
|
||||
cn: root
|
||||
sudoUser: root
|
||||
sudoRunAs: ALL
|
||||
sudoHost: ALL
|
||||
sudoCommand: sha224:$SHA224_DIGEST ALL
|
||||
sudoOrder: 10
|
||||
EOF
|
||||
|
||||
rm -f "$TESTDIR/hello"
|
||||
exit 0
|
Loading…
x
Reference in New Issue
Block a user