PK
œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
| Dir : /opt/imunify360/venv/lib/python3.11/site-packages/defence360agent/api/ |
| Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 IP: 66.29.132.192 |
| Dir : //opt/imunify360/venv/lib/python3.11/site-packages/defence360agent/api/pam_auth.py |
from defence360agent.api.integration_conf import IntegrationConfig
from defence360agent.contracts.config import UIRole
from defence360agent.subsys.panels.generic.panel import get_admin_list
class PamAuth:
DEFAULT_AUTH_SERVICE = "system-auth"
def authenticate(self, username, password) -> bool:
from pam import pam
try:
config = IntegrationConfig().to_dict()
service = config["PAM"]["SERVICE_NAME"]
except KeyError:
service = self.DEFAULT_AUTH_SERVICE
p = pam()
return p.authenticate(username, password, service=service)
async def get_user_type(self, username: str) -> UIRole:
admins = await get_admin_list()
return UIRole.ADMIN if username in admins else UIRole.CLIENT