Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: envmodules/modules
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: envmodules/modules
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.3.x
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 7 files changed
  • 1 contributor

Commits on Sep 6, 2026

  1. init: fix command injection in bash Tab completion (compgen -W expans…

    …ion)
    
    _module_comgen_words_and_files() fed untrusted text (module names read
    off disk, LOADEDMODULES, MODULEPATH) straight into `compgen -W`, which
    performs a full unquoted-word expansion on its wordlist -- including
    command substitution -- as a normal, documented part of its behavior.
    A module name, loaded-module entry, or MODULEPATH component containing
    e.g. `$(...)` therefore ran arbitrary shell code the moment a user
    pressed Tab.
    
    Fix: never hand candidate text to `compgen -W`. The new
    _module_comgen_words() splits the candidate list with `read -r -d ''`
    (pure IFS word-splitting, no expansion of any kind) and does the
    prefix match itself; _module_comgen_words_and_files() now layers the
    nospace-for-directory-entries behavior on top of it. Every call site
    that previously built a compgen -W wordlist from LOADEDMODULES,
    MODULEPATH, or a stash/save collection name now goes through one of
    these two functions instead.
    
    Fixes CVE-2026-85013
    
    Assisted-by: Claude:claude-sonnet-5
    Signed-off-by: Xavier Delaruelle <xavier.delaruelle@cea.fr>
    xdelaruelle committed Sep 6, 2026
    Configuration menu
    Copy the full SHA
    84c712b View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2026

  1. script: sync gitlog2changelog.py with upstream

    Update gitlog2changelog.py script with recent changes made on it in its
    upstream repository (https://github.com/networkupstools/nut/, commit
    e4739b9).
    
    Keep our local adaptation:
    * TextWrapper specific configuration
    
    Signed-off-by: Xavier Delaruelle <xavier.delaruelle@cea.fr>
    xdelaruelle committed Sep 7, 2026
    Configuration menu
    Copy the full SHA
    7817dba View commit details
    Browse the repository at this point in the history
  2. Release of version 5.3.2

    Signed-off-by: Xavier Delaruelle <xavier.delaruelle@cea.fr>
    xdelaruelle committed Sep 7, 2026
    Configuration menu
    Copy the full SHA
    0192e29 View commit details
    Browse the repository at this point in the history
Loading