From 2325d9a5a055f126f6c69eba7546d0ca4ea8d246 Mon Sep 17 00:00:00 2001 From: gbucchino Date: Mon, 3 Jul 2023 16:57:41 +0200 Subject: [PATCH] Add apache check --- audit/system/plugins/apaches/apaches.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 audit/system/plugins/apaches/apaches.py diff --git a/audit/system/plugins/apaches/apaches.py b/audit/system/plugins/apaches/apaches.py new file mode 100644 index 0000000..d279df4 --- /dev/null +++ b/audit/system/plugins/apaches/apaches.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +def apaches_ssl() -> list: + ssl = list() + + # Check if apaches has disabled the bad SSL/TLS version + + + return ssl +