From 39b2c5601a79466e92d85b4ef1bc070b4b957c86 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Mon, 15 Jul 2024 14:05:50 -0700 Subject: [PATCH] ipaauditor: add control checks --- mangle/ipa/ipaauditor.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mangle/ipa/ipaauditor.py b/mangle/ipa/ipaauditor.py index 9c2d6ab..3ab0d2d 100644 --- a/mangle/ipa/ipaauditor.py +++ b/mangle/ipa/ipaauditor.py @@ -251,8 +251,14 @@ class IPAAudit: """ Gets us started on the audit """ + if control == 'hbac': + IPAAudit.hbac_pull(api, name, deep) if control == 'rbac': IPAAudit.rbac_pull(api, name, deep) + if control == 'user': + IPAAudit.user_pull(api, name, deep) + if control == 'group': + IPAAudit.group_pull(api, name, deep) @staticmethod def user_pull(api, name, deep):