check_sys/audit/system/plugins/localaccount.py
2023-09-11 20:05:51 +02:00

15 lines
312 B
Python

#!/usr/bin/env python3
def profile() -> dict:
profile = dict()
profile['description'] = 'Set timeout for session'
profile['flag'] = 'TMOUT'
profile['value'] = 600
profile['filename'] = '/etc/profile'
return profile
def password_quality() -> list:
passwd = list()
return passwd