This file is indexed.

/usr/bin/lxqt-admin-user-helper is in lxqt-admin 0.12.0-4.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/bin/sh
case "$1" in
# we only allow executing these commands
useradd|usermod|userdel|groupadd|groupmod|groupdel|passwd|gpasswd)
    # TODO: platforms using different commands can add wrapper scripts here.
    export LC_ALL=C
    exec "$@"
    ;;
*)
    echo "Command '$1' is not allowed!"
    exit 1
    ;;
esac