[RESOLVED] Audit packages for LUKS and FileVault

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Answer
bastien30
Messages: 38
Registration: March 8, 2024 - 3:21 PM

January 7, 2026 - 12:50

Good morning,

Here are packages to audit the encryption of Linux workstations with LUKS and MacOS workstations with FileVault.

LUKS:

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
    pass

def audit():
    audit_result = "OK"

    # Check existing LUKS partitions
    luks_partitions = run(r"lsblk -e7 -n -f -r -o NAME,FSTYPE | grep LUKS | awk '{print $1}'").strip().split("\n")

    if any(luks_partitions):
        # Ensure system partition is encrypted
        system_partition = None
        for luks_partition in luks_partitions:
            try:
                run(r"lsblk /dev/%s -l -o MOUNTPOINTS | grep '^/$'" % luks_partition)
            except:
                pass
            else:
                system_partition = luks_partition
                break

        if not system_partition:
            print(r'Error, system partition is not encrypted !')
            audit_result = "ERROR"
        else:
            # Ensure system partition is valid LUKS partition
            try:
                run(r'cryptsetup isLuks /dev/%s' % luks_partition)
            except:
                print(r'Error, system partition seems encrypted but is not a valid LUKS partition !')
                audit_result = "ERROR"
            else:
                print(r'System partition is encrypted and is a valid LUKS partition')
    else:
        print(r'Error, cannot find any LUKS partition !')
        audit_result = "ERROR"

    return audit_result

FileVault:

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
    pass

def audit():
    audit_result = "OK"

    filevault_status = run(r'sudo fdesetup status')
    if r'FileVault is On' in filevault_status:
        if r'Encryption in progress' in filevault_status:
            print(r'FileVault is enabled and encryption is in progress.')
        else:
            print(r'FileVault is enabled and disks are fully encrypted.')
    elif r'FileVault is Off' in filevault_status:
        if r'Decryption in progress' in filevault_status:
            print(r'FileVault is not enabled and decryption is in progress !')
        else:
            print(r'FileVault is not enabled and disks are not encrypted !')
        audit_result = "ERROR"
    else:
        print(r'Cannot get FileVault status !')
        audit_result = "ERROR"

    return audit_result
Answer