Récupération automatique des mots de passe firefox¶
Ce notebook est construit à partir du projet github firefox_decrypt. Il a été retravaillé pour être simplifié, et minimiser les options disponibles.
La quantité de code peu être intimidante, mais une grosse portion du code sert à gérer différents cas (selon si on est sur Windows ou sur Linux par exemple), à la gestion des erreurs, ...
Pour commencer simple, le code ci-dessous permet de gérer la verbosité de l'affichage, c'est à dire la quantité d'infortmatio qui sera affichée. Vous pouvez changer la valeur passée à setup_logging
pour accroitre la quantité d'information affichée à l'exécution. Ça peut vous permettre de mieux comprendre les différentes étapes.
import logging
LOG: logging.Logger
def setup_logging(verbose) -> None:
"""Setup the logging level and configure the basic logger"""
if verbose == 1:
level = logging.INFO
elif verbose >= 2:
level = logging.DEBUG
else:
level = logging.WARN
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(message)s",
level=level,
)
global LOG
LOG = logging.getLogger(__name__)
setup_logging(0)
Définition de l'environnement de base¶
Toute la cellule ci-dessous contient du code permettant de poser le contexte proprement : on va aller cherchez les chemin d'accès adaptés en fonction du système, définir le gestion des erreur, récupérer l'accès à des bibliothèques utiles (notamment NSS, la bibliothèque cryptographique de Mozilla).
Cetet partie est très conséquente en terme de quantité de code. Il est nécessaire d'exécuter cette cellule, mais vous n'êtes pas tenu.e.s d'examiner son contenu.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Based on original work from: www.dumpzilla.org
from __future__ import annotations
import ctypes as ct
import json
import locale
import os
import platform
import sqlite3
import sys
import shutil
from base64 import b64decode
from getpass import getpass
from subprocess import run, PIPE, DEVNULL
from configparser import ConfigParser
from typing import Optional, Iterator, Any
VERBOSE = False
SYSTEM = platform.system()
SYS64 = sys.maxsize > 2**32
DEFAULT_ENCODING = "utf-8"
PWStore = list[dict[str, str]]
def identify_system_locale() -> str:
encoding: Optional[str] = locale.getpreferredencoding()
if encoding is None:
LOG.error(
"Could not determine which encoding/locale to use for NSS interaction. "
"This configuration is unsupported.\n"
"If you are in Linux or MacOS, please search online "
"how to configure a UTF-8 compatible locale and try again."
)
raise Exit(Exit.BAD_LOCALE)
return encoding
encodings = (
("stdin", sys.stdin.encoding),
("stdout", sys.stdout.encoding),
("stderr", sys.stderr.encoding),
("locale", identify_system_locale()),
)
if SYSTEM == "Windows":
profile_path = os.path.join(os.environ["APPDATA"], "Mozilla", "Firefox")
elif os.uname()[0] == "Darwin":
home = os.path.expanduser("~")
profile_path = home + "/Library/Application Support/Firefox"
else:
home = os.path.expanduser("~")
profile_path = home + "/.mozilla/firefox"
if not os.path.isdir(profile_path):
profile_path = home + "/.mozilla/firefox-esr"
class NotFoundError(Exception):
"""Exception to handle situations where a credentials file is not found"""
pass
class Exit(Exception):
"""Exception to allow a clean exit from any point in execution"""
CLEAN = 0
ERROR = 1
MISSING_PROFILEINI = 2
MISSING_SECRETS = 3
BAD_PROFILEINI = 4
LOCATION_NO_DIRECTORY = 5
BAD_SECRETS = 6
BAD_LOCALE = 7
FAIL_LOCATE_NSS = 10
FAIL_LOAD_NSS = 11
FAIL_INIT_NSS = 12
FAIL_NSS_KEYSLOT = 13
FAIL_SHUTDOWN_NSS = 14
BAD_PRIMARY_PASSWORD = 15
NEED_PRIMARY_PASSWORD = 16
DECRYPTION_FAILED = 17
PASSSTORE_NOT_INIT = 20
PASSSTORE_MISSING = 21
PASSSTORE_ERROR = 22
READ_GOT_EOF = 30
MISSING_CHOICE = 31
NO_SUCH_PROFILE = 32
UNKNOWN_ERROR = 100
KEYBOARD_INTERRUPT = 102
def __init__(self, exitcode):
self.exitcode = exitcode
def __unicode__(self):
return f"Premature program exit with exit code {self.exitcode}"
class Credentials:
"""Base credentials backend manager"""
def __init__(self, db):
self.db = db
LOG.debug("Database location: %s", self.db)
if not os.path.isfile(db):
raise NotFoundError(f"ERROR - {db} database not found\n")
LOG.info("Using %s for credentials.", db)
def __iter__(self) -> Iterator[tuple[str, str, str, int]]:
pass
def done(self):
"""Override this method if the credentials subclass needs to do any
action after interaction
"""
pass
class SqliteCredentials(Credentials):
"""SQLite credentials backend manager"""
def __init__(self, profile):
db = os.path.join(profile, "signons.sqlite")
super(SqliteCredentials, self).__init__(db)
self.conn = sqlite3.connect(db)
self.c = self.conn.cursor()
def __iter__(self) -> Iterator[tuple[str, str, str, int]]:
LOG.debug("Reading password database in SQLite format")
self.c.execute(
"SELECT hostname, encryptedUsername, encryptedPassword, encType "
"FROM moz_logins"
)
for i in self.c:
# yields hostname, encryptedUsername, encryptedPassword, encType
yield i
def done(self):
"""Close the sqlite cursor and database connection"""
super(SqliteCredentials, self).done()
self.c.close()
self.conn.close()
class JsonCredentials(Credentials):
"""JSON credentials backend manager"""
def __init__(self, profile):
db = os.path.join(profile, "logins.json")
super(JsonCredentials, self).__init__(db)
def __iter__(self) -> Iterator[tuple[str, str, str, int]]:
with open(self.db) as fh:
LOG.debug("Reading password database in JSON format")
data = json.load(fh)
try:
logins = data["logins"]
except Exception:
LOG.error(f"Unrecognized format in {self.db}")
raise Exit(Exit.BAD_SECRETS)
for i in logins:
try:
yield (
i["hostname"],
i["encryptedUsername"],
i["encryptedPassword"],
i["encType"],
)
except KeyError:
# This should handle deleted passwords that still maintain
# a record in the JSON file - GitHub issue #99
LOG.info(f"Skipped record {i} due to missing fields")
def find_nss(locations: list[str], nssname: str) -> ct.CDLL:
"""Locate nss is one of the many possible locations"""
fail_errors: list[tuple[str, str]] = []
OS = ("Windows", "Darwin")
for loc in locations:
nsslib = os.path.join(loc, nssname)
LOG.debug("Loading NSS library from %s", nsslib)
if SYSTEM in OS:
# On windows in order to find DLLs referenced by nss3.dll
# we need to have those locations on PATH
os.environ["PATH"] = ";".join([loc, os.environ["PATH"]])
LOG.debug("PATH is now %s", os.environ["PATH"])
# However this doesn't seem to work on all setups and needs to be
# set before starting python so as a workaround we chdir to
# Firefox's nss3.dll/libnss3.dylib location
if loc:
if not os.path.isdir(loc):
# No point in trying to load from paths that don't exist
continue
workdir = os.getcwd()
os.chdir(loc)
try:
nss: ct.CDLL = ct.CDLL(nsslib)
except OSError as e:
fail_errors.append((nsslib, str(e)))
else:
LOG.debug("Loaded NSS library from %s", nsslib)
return nss
finally:
if SYSTEM in OS and loc:
# Restore workdir changed above
os.chdir(workdir)
else:
LOG.error(
"Couldn't find or load '%s'. This library is essential "
"to interact with your Mozilla profile.",
nssname,
)
LOG.error(
"If you are seeing this error please perform a system-wide "
"search for '%s' and file a bug report indicating any "
"location found. Thanks!",
nssname,
)
LOG.error(
"Alternatively you can try launching firefox_decrypt "
"from the location where you found '%s'. "
"That is 'cd' or 'chdir' to that location and run "
"firefox_decrypt from there.",
nssname,
)
LOG.error(
"Please also include the following on any bug report. "
"Errors seen while searching/loading NSS:"
)
for target, error in fail_errors:
LOG.error("Error when loading %s was %s", target, error)
raise Exit(Exit.FAIL_LOCATE_NSS)
def load_libnss():
"""Load libnss into python using the CDLL interface"""
locations: list[str] = [
os.environ.get("NSS_LIB_PATH", ""),
]
if SYSTEM == "Windows":
nssname = "nss3.dll"
if not SYS64:
locations += [
"", # Current directory or system lib finder
"C:\\Program Files (x86)\\Mozilla Firefox",
"C:\\Program Files (x86)\\Firefox Developer Edition",
"C:\\Program Files (x86)\\Mozilla Thunderbird",
"C:\\Program Files (x86)\\Nightly",
"C:\\Program Files (x86)\\SeaMonkey",
"C:\\Program Files (x86)\\Waterfox",
]
locations += [
"", # Current directory or system lib finder
os.path.expanduser("~\\AppData\\Local\\Mozilla Firefox"),
os.path.expanduser("~\\AppData\\Local\\Firefox Developer Edition"),
os.path.expanduser("~\\AppData\\Local\\Mozilla Thunderbird"),
os.path.expanduser("~\\AppData\\Local\\Nightly"),
os.path.expanduser("~\\AppData\\Local\\SeaMonkey"),
os.path.expanduser("~\\AppData\\Local\\Waterfox"),
"C:\\Program Files\\Mozilla Firefox",
"C:\\Program Files\\Firefox Developer Edition",
"C:\\Program Files\\Mozilla Thunderbird",
"C:\\Program Files\\Nightly",
"C:\\Program Files\\SeaMonkey",
"C:\\Program Files\\Waterfox",
]
# If either of the supported software is in PATH try to use it
software = ["firefox", "thunderbird", "waterfox", "seamonkey"]
for binary in software:
location: Optional[str] = shutil.which(binary)
if location is not None:
nsslocation: str = os.path.join(os.path.dirname(location), nssname)
locations.append(nsslocation)
elif SYSTEM == "Darwin":
nssname = "libnss3.dylib"
locations += [
"", # Current directory or system lib finder
"/usr/local/lib/nss",
"/usr/local/lib",
"/opt/local/lib/nss",
"/sw/lib/firefox",
"/sw/lib/mozilla",
"/usr/local/opt/nss/lib", # nss installed with Brew on Darwin
"/opt/homebrew/lib", # nss installed with Brew on Darwin/Apple Silicon
"/opt/pkg/lib/nss", # installed via pkgsrc
"/Applications/Firefox.app/Contents/MacOS", # default manual install location
"/Applications/Thunderbird.app/Contents/MacOS",
"/Applications/SeaMonkey.app/Contents/MacOS",
"/Applications/Waterfox.app/Contents/MacOS",
]
else:
nssname = "libnss3.so"
if SYS64:
locations += [
"", # Current directory or system lib finder
"/usr/lib64",
"/usr/lib64/nss",
"/usr/lib",
"/usr/lib/nss",
"/usr/local/lib",
"/usr/local/lib/nss",
"/opt/local/lib",
"/opt/local/lib/nss",
os.path.expanduser("~/.nix-profile/lib"),
]
else:
locations += [
"", # Current directory or system lib finder
"/usr/lib",
"/usr/lib/nss",
"/usr/lib32",
"/usr/lib32/nss",
"/usr/lib64",
"/usr/lib64/nss",
"/usr/local/lib",
"/usr/local/lib/nss",
"/opt/local/lib",
"/opt/local/lib/nss",
os.path.expanduser("~/.nix-profile/lib"),
]
# If this succeeds libnss was loaded
return find_nss(locations, nssname)
class c_char_p_fromstr(ct.c_char_p):
"""ctypes char_p override that handles encoding str to bytes"""
def from_param(self):
return self.encode(DEFAULT_ENCODING)
def ask_password(profile: str, interactive: bool) -> str:
"""
Prompt for profile password
"""
passwd: str
passmsg = f"\nPrimary Password for profile {profile}: "
if interactive:
passwd = getpass(passmsg)
else:
sys.stderr.write("Reading Primary password from standard input:\n")
sys.stderr.flush()
print("there")
# Ability to read the password from stdin (echo "pass" | ./firefox_...)
passwd = sys.stdin.readline().rstrip("\n")
return passwd
class NSSProxy:
class SECItem(ct.Structure):
"""struct needed to interact with libnss"""
_fields_ = [
("type", ct.c_uint),
("data", ct.c_char_p), # actually: unsigned char *
("len", ct.c_uint),
]
def decode_data(self):
_bytes = ct.string_at(self.data, self.len)
return _bytes.decode(DEFAULT_ENCODING)
class PK11SlotInfo(ct.Structure):
"""Opaque structure representing a logical PKCS slot"""
def __init__(self, non_fatal_decryption=False):
# Locate libnss and try loading it
self.libnss = load_libnss()
self.non_fatal_decryption = non_fatal_decryption
SlotInfoPtr = ct.POINTER(self.PK11SlotInfo)
SECItemPtr = ct.POINTER(self.SECItem)
self._set_ctypes(ct.c_int, "NSS_Init", c_char_p_fromstr)
self._set_ctypes(ct.c_int, "NSS_Shutdown")
self._set_ctypes(SlotInfoPtr, "PK11_GetInternalKeySlot")
self._set_ctypes(None, "PK11_FreeSlot", SlotInfoPtr)
self._set_ctypes(ct.c_int, "PK11_NeedLogin", SlotInfoPtr)
self._set_ctypes(
ct.c_int, "PK11_CheckUserPassword", SlotInfoPtr, c_char_p_fromstr
)
self._set_ctypes(
ct.c_int, "PK11SDR_Decrypt", SECItemPtr, SECItemPtr, ct.c_void_p
)
self._set_ctypes(None, "SECITEM_ZfreeItem", SECItemPtr, ct.c_int)
# for error handling
self._set_ctypes(ct.c_int, "PORT_GetError")
self._set_ctypes(ct.c_char_p, "PR_ErrorToName", ct.c_int)
self._set_ctypes(ct.c_char_p, "PR_ErrorToString", ct.c_int, ct.c_uint32)
def _set_ctypes(self, restype, name, *argtypes):
"""Set input/output types on libnss C functions for automatic type casting"""
res = getattr(self.libnss, name)
res.argtypes = argtypes
res.restype = restype
# Transparently handle decoding to string when returning a c_char_p
if restype == ct.c_char_p:
def _decode(result, func, *args):
try:
return result.decode(DEFAULT_ENCODING)
except AttributeError:
return result
res.errcheck = _decode
setattr(self, "_" + name, res)
def initialize(self, profile: str):
# The sql: prefix ensures compatibility with both
# Berkley DB (cert8) and Sqlite (cert9) dbs
profile_path = "sql:" + profile
LOG.debug("Initializing NSS with profile '%s'", profile_path)
err_status: int = self._NSS_Init(profile_path)
LOG.debug("Initializing NSS returned %s", err_status)
if err_status:
LOG.info("Couldn't initialize NSS, maybe '%s' is not a valid profile?",
profile)
raise Exception
def shutdown(self):
err_status: int = self._NSS_Shutdown()
if err_status:
self.handle_error(
Exit.FAIL_SHUTDOWN_NSS,
"Couldn't shutdown current NSS profile",
)
def authenticate(self, profile, interactive):
"""Unlocks the profile if necessary, in which case a password
will prompted to the user.
"""
LOG.debug("Retrieving internal key slot")
keyslot = self._PK11_GetInternalKeySlot()
LOG.debug("Internal key slot %s", keyslot)
if not keyslot:
self.handle_error(
Exit.FAIL_NSS_KEYSLOT,
"Failed to retrieve internal KeySlot",
)
try:
if self._PK11_NeedLogin(keyslot):
password: str = ask_password(profile, interactive)
LOG.debug("Authenticating with password '%s'", password)
err_status: int = self._PK11_CheckUserPassword(keyslot, password)
LOG.debug("Checking user password returned %s", err_status)
if err_status:
self.handle_error(
Exit.BAD_PRIMARY_PASSWORD,
"Primary password is not correct",
)
else:
LOG.info("No Primary Password found - no authentication needed")
except Exception as e:
print("Error while fetching the primary password:", e)
finally:
# Avoid leaking PK11KeySlot
self._PK11_FreeSlot(keyslot)
def handle_error(self, exitcode: int, *logerror: Any):
"""If an error happens in libnss, handle it and print some debug information"""
if logerror:
LOG.error(*logerror)
else:
LOG.debug("Error during a call to NSS library, trying to obtain error info")
code = self._PORT_GetError()
name = self._PR_ErrorToName(code)
name = "NULL" if name is None else name
# 0 is the default language (localization related)
text = self._PR_ErrorToString(code, 0)
LOG.debug("%s: %s", name, text)
raise Exit(exitcode)
def decrypt(self, data64):
data = b64decode(data64)
inp = self.SECItem(0, data, len(data))
out = self.SECItem(0, None, 0)
err_status: int = self._PK11SDR_Decrypt(inp, out, None)
LOG.debug("Decryption of data returned %s", err_status)
try:
if err_status: # -1 means password failed, other status are unknown
error_msg = (
"Username/Password decryption failed. "
"Credentials damaged or cert/key file mismatch."
)
if self.non_fatal_decryption:
raise ValueError(error_msg)
else:
self.handle_error(Exit.DECRYPTION_FAILED, error_msg)
res = out.decode_data()
finally:
# Avoid leaking SECItem
self._SECITEM_ZfreeItem(out, 0)
return res
Interactions avec les profiles Mozilla¶
Chaque profile a uen structure particulière. Notamment, les mots de passe ne sont pas stockés directement "en clair" dans le fichier, mais chiffrés au préalable. Une chance pour les attaquant, la clé de chiffrement (et de déchiffrement) est aussi stockée dans le profile !
Cette classe permet de manipuler les profiles, et de récupérer les éléments nécessaires pour déchiffrer les mots de passe.
class MozillaInteraction:
"""
Abstraction interface to Mozilla profile and lib NSS
"""
def __init__(self, non_fatal_decryption=True):
self.profile = None
self.proxy = NSSProxy(non_fatal_decryption)
def load_profile(self, profile):
"""Initialize the NSS library and profile"""
self.profile = profile
self.proxy.initialize(self.profile)
def authenticate(self, interactive=False):
"""Authenticate the the current profile is protected by a primary password,
prompt the user and unlock the profile.
"""
self.proxy.authenticate(self.profile, interactive)
def unload_profile(self):
"""Shutdown NSS and deactivate current profile"""
self.proxy.shutdown()
def decrypt_passwords(self) -> PWStore:
"""Decrypt requested profile using the provided password.
Returns all passwords in a list of dicts
"""
outputs: PWStore = []
try:
credentials: Credentials = self.obtain_credentials()
except:
print("\tNo password database found for this profile")
return outputs
LOG.info("Decrypting credentials")
url: str
user: str
passw: str
enctype: int
for url, user, passw, enctype in credentials:
# enctype informs if passwords need to be decrypted
if enctype:
try:
LOG.debug("Decrypting username data '%s'", user)
user = self.proxy.decrypt(user)
LOG.debug("Decrypting password data '%s'", passw)
passw = self.proxy.decrypt(passw)
except (TypeError, ValueError) as e:
LOG.warning(
"Failed to decode username or password for entry from URL %s",
url,
)
LOG.debug(e, exc_info=True)
user = "*** decryption failed ***"
passw = "*** decryption failed ***"
LOG.debug(
"Decoded username '%s' and password '%s' for website '%s'",
user,
passw,
url,
)
output = {"url": url, "user": user, "password": passw}
outputs.append(output)
if not outputs:
LOG.warning("No passwords found in selected profile")
# Close credential handles (SQL)
credentials.done()
return outputs
def obtain_credentials(self) -> Credentials:
"""Figure out which of the 2 possible backend credential engines is available"""
credentials: Credentials
try:
credentials = JsonCredentials(self.profile)
except NotFoundError:
try:
credentials = SqliteCredentials(self.profile)
except NotFoundError:
raise Exit(Exit.MISSING_SECRETS)
return credentials
Parser les profils¶
Les profils du navigateurs sont listés dans le fichiers profiles.ini
, situé dans le même dossier que les différents profiles. Ce fichier a une structure particulière, qui rend facilement reconnaissable la liste de profiles définis par le navigateur.
Les fonctions définies ci-dessous permettent de lire ce fichier, et à partir de sont contenu, d'identifier les profiles disponibles.
def get_sections(profiles):
"""
Returns hash of profile numbers and profile names.
"""
sections = []
for section in profiles.sections():
if section.startswith("Profile"):
sections.append(profiles.get(section, "Path"))
else:
continue
return sections
def print_sections(sections, textIOWrapper=sys.stderr):
"""
Prints all available sections to an textIOWrapper (defaults to sys.stderr)
"""
for i in sorted(sections):
textIOWrapper.write(f"{i} -> {sections[i]}\n")
textIOWrapper.flush()
def read_profiles(basepath):
"""
Parse Firefox profiles in provided location.
If list_profiles is true, will exit after listing available profiles.
"""
profileini = os.path.join(basepath, "profiles.ini")
LOG.debug("Reading profiles from %s", profileini)
if not os.path.isfile(profileini):
LOG.warning("profile.ini not found in %s", basepath)
raise Exit(Exit.MISSING_PROFILEINI)
# Read profiles from Firefox profile folder
profiles = ConfigParser()
profiles.read(profileini, encoding=DEFAULT_ENCODING)
LOG.debug("Read profiles %s", profiles.sections())
return profiles
Format de sortie¶
La cellule suivant défini le format de sorti des mots de passe. Ici, on a opté pour le plus simple : l'affichage de trois lignes contenant l'URL, le nom d'utilisateur et le mot de passe.
class HumanOutputFormat:
def __init__(self, pwstore: PWStore):
self.pwstore = pwstore
def output(self):
for output in self.pwstore:
record: str = (
f"\n\tWebsite: {output['url']}\n"
f"\tUsername: '{output['user']}'\n"
f"\tPassword: '{output['password']}'\n"
)
sys.stdout.write(record)
Récupération des profiles¶
Maintenant que tout est prêt et que les fonctions nécessaires sont définies, on peut commencer à récupérer les profiles !
basepath = os.path.expanduser(profile_path)
print(profile_path)
On a le bon emplacement pour les profiles, on peut donc tous les traiter.
Commençons simplement par lister les profiles détectés. Lancez le code dans la cellule ci-dessous, et vérifier que les profiles correspondent bien à ceux que vous avez.
profiles: ConfigParser = read_profiles(basepath)
sections = list(get_sections(profiles))
print("Profiles disponibles :")
for s in sections:
print(" " + s)
Récupération des mot de passe de chaque profile¶
Le code suivant lance le parcours des différents profiles avec l'objectif de récupérer un maximum de mots de passe.
En revanche il est incomplet. En l'état, il va simplement parcourir la liste des profiles en calculant le bon chemin d'accès aux dossier. À vous d'utiliser les fonctions suivantes (qui ne sont pas listées dans le bon ordre) pour retrouver les mots de passe de chaque profile !
moz.unload_profile()
: Nettoie le contexte, etmoz.load_profile()
: Instantie la bibliothèque NSS pour le profile sélectionnémoz.decrypt_passwords()
: Décode et déchiffre tous les mots de passe du profile. Cette fonction retourne une liste (un élément par profile) de dictionnaire (contenant l'URL, le login et le mot de passe).moz.authenticate(interactive=False)
: Vérifie si le mot de passe est protégé par un mot de passe maitre. Si interactive vautTrue
, demande le mot de passe si nécessaire.HumanOutputFormat(...)
: Instancie le formatter de sortie. Il attend en paramètre une liste de dictionnaire, qu'il va parser proprement. Sa méthode.output()
permet alors d'afficher le contenu.
Quand vous y serez parvenu, vous pourrez essayer de changer le niveau de verbosité à 2 (dans la première cellue), et relancer le notebook pour observer les différentes étapes de l'exécution.
moz = MozillaInteraction() # moz permet d'interagir avec les profiles Mozilla
# Cette boucle permet de parcourir tous les profiles
for section in sections:
print(f"Profile {section}")
profile = os.path.join(basepath, section)
if not os.path.isdir(profile):
LOG.error(
"Profile location '%s' is not a directory. Has profiles.ini been tampered with?",
profile,
)
raise Exit(Exit.BAD_PROFILEINI)
try:
# TODO c'est à vous de compléter cette partie avec les indications ci-dessus !
except:
print(f"Invalid profile ({profile})")
continue
print("")