Skip to main content

Python interface to the Linux sudoers file

Project description

pysudoers

This library provides a Python interface to the Linux sudoers file. python-sudoers is open sourced under the BSD 3-Clause license.

checks

Basics

pysudoers runs on Python >= 3.9

Features

This library parses a sudoers file into its component parts. It's not 100% compliant with the EBNF format of the file (yet), but it's getting there. Currently, the script parses out 6 distinct line types from the file:

  • Defaults (This is only a string currently. Pieces of a Defaults setting are not parsed/separated.)
  • Cmnd_Alias
  • Host_Alias
  • Runas_Alias
  • User_Alias
  • User specifications (which we call rules)

As user specifications are the most complicated, they are most likely the area that needs the most improvement. Currently, the following pieces of a user specification are separated out as part of the parsing:

  • User list
  • Host list
  • Command list (containing):
    • Tags
    • Run As notations
    • Commands

One caveat to add is, this module currently does not do anything with #include, #includedir, @include and @includedir lines, but simply ignores them. You can, however, parse any included files individually if needed, but any interdependencies between the files will not be resolved.

Installing

You can use pip to install pysudoers:

pip install pysudoers

Examples

Parsing of the sudoers file is done as part of initializing the Sudoers object. So, you can start using the properties under Sudoers immediately. The following example will print out all the different "types" from the file:

from pysudoers import Sudoers

sobj = Sudoers(path="tmp/sudoers")

for default in sobj.defaults:
    print(default)

for key in sobj.host_aliases:
    print(key)
    print(sobj.host_aliases[key])

for key in sobj.cmnd_aliases:
    print(key)
    print(sobj.cmnd_aliases[key])

for key in sobj.runas_aliases:
    print(key)
    print(sobj.runas_aliases[key])

for key in sobj.user_aliases:
    print(key)
    print(sobj.user_aliases[key])

for rule in sobj.rules:
    print(rule)

Now, suppose you want to print out all the user specifications (rules), but you only want to see the users and hosts for each rule.

from pysudoers import Sudoers

sobj = Sudoers(path="tmp/sudoers")

for rule in sobj.rules:
    print("%s | %s" % (",".join(rule["users"]), ",".join(rule["hosts"])))

Contributing

Pull requests to add functionality and fix bugs are always welcome. Please check the CONTRIBUTING.md for specifics on contributions.

Testing

We try to have a high level of test coverage on the code. Therefore, when adding anything to the repo, tests should be written to test a new feature or to test a bug fix so that there won't be a regression. This library is setup to be pretty simple to build a working development environment using Docker or Podman. Therefore, it is suggested that you have Docker or Podman installed where you clone this repository to make development easier.

To start a development environment, you should be able to just run the dev.sh script. This script will use the Containerfile in this repository to build a container image with all the dependencies for development installed using Poetry.

./dev.sh

The first time you run the script, it should build the container image and then drop you into the container's shell. The directory where you cloned this repository should be volume mounted in to /working, which should also be the current working directory. From there, you can make changes as you see fit. Tests can be run from the /working directory by simply typing pytest as pytest has been setup to with the correct parameters.

Changelog

Changelogs are now created as part of the GitHub release process.

Versioning

Updating the version is typically done using the bump2version tool. This tool takes care of updating the version in all necessary files, updating its own configuration, and making a GitHub commit and tag. We typically do version bumps as part of a PR, so you don't want to have bump2version tag the version at the same time it does the commit as commit hashes may change. Therefore, to bump the version a patch level, one would run the command:

bump2version --verbose --no-tag patch

Once the PR is merged, you can move on to do a release through GitHub.

Releases

Releases are now done through the GitHub Release system. The easiest way to create a new release draft is using the GitHub CLI (gh). For example, to create a new draft release for version 2.2.0 with autogenerated notes:

gh release create '2.2.0' --draft --generate-notes --title '2.2.0'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysudoers-3.0.0.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pysudoers-3.0.0-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file pysudoers-3.0.0.tar.gz.

File metadata

  • Download URL: pysudoers-3.0.0.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/6.8.0-1021-azure

File hashes

Hashes for pysudoers-3.0.0.tar.gz
Algorithm Hash digest
SHA256 a282c429a46b250819f64ce91023f59f6ce92f17e8563fc22942c0188a0fd823
MD5 07bc39eabd8d01f7b2dc09ab95941d45
BLAKE2b-256 cf9c768175b1ed46680c6be89614027a94365b98325715f5fcaf7a7f396c9185

See more details on using hashes here.

File details

Details for the file pysudoers-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: pysudoers-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/6.8.0-1021-azure

File hashes

Hashes for pysudoers-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a462098152600dd31a6b7e7d05d7dad60df87ff71f37a6931702406724d931ec
MD5 5fae47294dd553816ea2f6eaf0793334
BLAKE2b-256 cb12223ed55e51a39028455ecbb43e3e31c73234963e76e7f7bce344597ff144

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page