check_sys/audit/system/plugins/localaccount.py
2023-09-11 16:49:30 +02:00

18 lines
362 B
Python

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