Bug 1548380
| Summary: | RFE: Create flag to filter to sudo -l output | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | Daniele <dconsoli> |
| Component: | sudo | Assignee: | Daniel Kopeček <dkopecek> |
| Status: | CLOSED ERRATA | QA Contact: | Martin Zelený <mzeleny> |
| Severity: | medium | Docs Contact: | Mirek Jahoda <mjahoda> |
| Priority: | low | ||
| Version: | 7.7 | CC: | dapospis, dkopecek, mjahoda, mthacker, mzeleny |
| Target Milestone: | rc | Keywords: | FutureFeature, Triaged |
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | sudo-1.8.23-1.el7 | Doc Type: | Enhancement |
| Doc Text: |
*cvtsudoers* converts between different `sudoers` formats
The new *cvtsudoers* utility enables the administrator to convert rules between different `sudoers` security policy file formats. See the `cvtsudoers(1)` man page for the list of available options and examples of usage.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2018-10-30 11:09:01 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 1547974 | ||
| Bug Blocks: | |||
Upstream Tracker https://bugzilla.sudo.ws/show_bug.cgi?id=812 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHEA-2018:3199 |
Currently the output of sudo -l is not parseable out of the box, and contains 3 different sections: - defaults for the host - defaults for the user - command that the user may run on the host Example of sudo -l output is: """ Matching Defaults entries for root on localhost: env_reset, mail_badpass, secure_path=/usr/local/sbin\:/usr/local/bin\:/usr/sbin\:/usr/bin\:/sbin\:/bin, log_output, maxseq=150, iolog_dir=/var/log/sudo-io/%{user}, !requiretty Runas and Command-specific defaults for root: Defaults!/usr/bin/sudoreplay !log_output User root may run the following commands on localhost: (ALL : ALL) ALL """ It would be very useful to have the following flags as optional to "-l": --host-defaults --user-defaults --commands It should be also possible to combinate the options (ie: sudo -l --host-defaults --user-defaults) Example of the expected output: sudo -l --host-defaults """ Matching Defaults entries for root on localhost: env_reset, mail_badpass, secure_path=/usr/local/sbin\:/usr/local/bin\:/usr/sbin\:/usr/bin\:/sbin\:/bin, log_output, maxseq=150, iolog_dir=/var/log/sudo-io/%{user}, !requiretty """ sudo -l --user-defaults """ Runas and Command-specific defaults for root: Defaults!/usr/bin/sudoreplay !log_output """ sudo -l --commands """ User root may run the following commands on localhost: (ALL : ALL) ALL """ sudo -l --host-defaults --user-defaults """ Matching Defaults entries for root on localhost: env_reset, mail_badpass, secure_path=/usr/local/sbin\:/usr/local/bin\:/usr/sbin\:/usr/bin\:/sbin\:/bin, log_output, maxseq=150, iolog_dir=/var/log/sudo-io/%{user}, !requiretty Runas and Command-specific defaults for root: Defaults!/usr/bin/sudoreplay !log_output """