2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Test that digest matching works with LDAP sudoCommand: ALL

This commit is contained in:
Todd C. Miller 2021-09-17 20:41:34 -06:00
parent 702746f96b
commit 292916f43c
3 changed files with 63 additions and 0 deletions

View File

@ -940,6 +940,8 @@ plugins/sudoers/regress/testsudoers/test15.out.ok
plugins/sudoers/regress/testsudoers/test15.sh plugins/sudoers/regress/testsudoers/test15.sh
plugins/sudoers/regress/testsudoers/test16.out.ok plugins/sudoers/regress/testsudoers/test16.out.ok
plugins/sudoers/regress/testsudoers/test16.sh 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.inc
plugins/sudoers/regress/testsudoers/test2.out.ok plugins/sudoers/regress/testsudoers/test2.out.ok
plugins/sudoers/regress/testsudoers/test2.sh plugins/sudoers/regress/testsudoers/test2.sh

View 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

View 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