| |
- builtins.object
-
- Audit
- Report
- Rule
- enum.Enum(builtins.object)
-
- SEVERITY
class Audit(builtins.object) |
|
This function implement hardening checks. |
|
Methods defined here:
- audit_active_auth(server: ~Server) -> hardening.Rule
- This function check authentication is enabled.
- audit_admin_account(server: ~Server) -> collections.abc.Iterator
- This function check the admin password.
- audit_blacklist(server: ~Server) -> hardening.Rule
- This function check the blacklist configuration.
- audit_debug(server: ~Server) -> hardening.Rule
- This function check the debug configuration.
- audit_export_configuration(server: ~Server) -> collections.abc.Iterator
- This function check the export configuration file.
- audit_force_auth(server: ~Server) -> hardening.Rule
- This function check authentication is forced.
- audit_in_venv(server: ~Server) -> hardening.Rule
- This function check the virtualenv.
- audit_interface(server: ~Server) -> hardening.Rule
- This function check the network interface.
- audit_limit_exclude_auth(server: ~Server) -> hardening.Rule
- This function check exclusions for authentication.
- audit_log_level(server: ~Server) -> hardening.Rule
- This function check the log level.
- audit_security(server: ~Server) -> hardening.Rule
- This function check the security configuration.
- audit_smtp_password(server: ~Server) -> hardening.Rule
- This function check the SMTP password protection.
- audit_system_user(server: ~Server) -> hardening.Rule
- This function check the user.
- audits_file_owner(server: ~Server) -> collections.abc.Iterator
- This function check the files owner.
- audits_file_rights(server: ~Server) -> collections.abc.Iterator
- This function check the files rights.
- audits_launcher(server: ~Server) -> collections.abc.Iterator
- This function check the configuration of the script launcher.
- audits_scripts_content_type(server: ~Server) -> collections.abc.Iterator
- This function check the configuration of the script content type.
- audits_scripts_logs(server: ~Server) -> collections.abc.Iterator
- This function check the configuration of the script log.
- audits_scripts_path(server: ~Server) -> collections.abc.Iterator
- This function check the configuration of the script path.
- audits_scripts_stderr_content_type(server: ~Server) -> collections.abc.Iterator
- This function check the configuration of the script stderr content type.
- get_owner(filename: str) -> str
- This function return the owner of a file.
- get_permissions(filename: str) -> str
- This function return the file permissions.
- log_rule(rule: hardening.Rule, logs: ~Logs) -> None
- This function log rule.
- run(server: ~Server, logs: ~Logs) -> List[hardening.Rule]
- This function run audit and checks.
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|
class Report(builtins.object) |
|
Report(rules: List[hardening.Rule], server: ~Server, logs: ~Logs)
This class implement the report object. |
|
Methods defined here:
- __init__(self, rules: List[hardening.Rule], server: ~Server, logs: ~Logs)
- Initialize self. See help(type(self)) for accurate signature.
- as_html(self) -> str
- This function return a HTML string of audit results.
- as_json(self) -> str
- This function returns a JSON string of audit results.
- as_text(self) -> str
- This function return a HTML string of audit results.
- notification(self) -> None
- This function send an email notification
to administrator with the audit report.
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|
class Rule(builtins.object) |
|
Rule(subject: str, id_: int, is_OK: bool, level: int, severity: str, category: str, reason: str) -> None
This class implement a rule for hardening. |
|
Methods defined here:
- __eq__(self, other)
- __init__(self, subject: str, id_: int, is_OK: bool, level: int, severity: str, category: str, reason: str) -> None
- __repr__(self)
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes defined here:
- __annotations__ = {'category': <class 'str'>, 'id_': <class 'int'>, 'is_OK': <class 'bool'>, 'level': <class 'int'>, 'reason': <class 'str'>, 'severity': <class 'str'>, 'subject': <class 'str'>}
- __dataclass_fields__ = {'category': Field(name='category',type=<class 'str'>,default...rue,metadata=mappingproxy({}),_field_type=_FIELD), 'id_': Field(name='id_',type=<class 'int'>,default=<dat...rue,metadata=mappingproxy({}),_field_type=_FIELD), 'is_OK': Field(name='is_OK',type=<class 'bool'>,default=<...rue,metadata=mappingproxy({}),_field_type=_FIELD), 'level': Field(name='level',type=<class 'int'>,default=<d...rue,metadata=mappingproxy({}),_field_type=_FIELD), 'reason': Field(name='reason',type=<class 'str'>,default=<...rue,metadata=mappingproxy({}),_field_type=_FIELD), 'severity': Field(name='severity',type=<class 'str'>,default...rue,metadata=mappingproxy({}),_field_type=_FIELD), 'subject': Field(name='subject',type=<class 'str'>,default=...rue,metadata=mappingproxy({}),_field_type=_FIELD)}
- __dataclass_params__ = _DataclassParams(init=True,repr=True,eq=True,order=False,unsafe_hash=False,frozen=False)
- __hash__ = None
|
class SEVERITY(enum.Enum) |
|
SEVERITY(value, names=None, *, module=None, qualname=None, type=None, start=1)
Severity level of the rules. |
|
- Method resolution order:
- SEVERITY
- enum.Enum
- builtins.object
Data and other attributes defined here:
- CRITICAL = <SEVERITY.CRITICAL: 'CRITICAL'>
- HIGHT = <SEVERITY.HIGHT: 'HIGHT'>
- INFORMATION = <SEVERITY.INFORMATION: 'INFORMATION'>
- LOW = <SEVERITY.LOW: 'LOW'>
- MEDIUM = <SEVERITY.MEDIUM: 'MEDIUM'>
Data descriptors inherited from enum.Enum:
- name
- The name of the Enum member.
- value
- The value of the Enum member.
Readonly properties inherited from enum.EnumMeta:
- __members__
- Returns a mapping of member name->value.
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.
| |