Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ba342dd571 | |||
| ac1af85810 | |||
| 54b6c877e5 | |||
| 8562202aa7 | |||
| 3361b571cf | |||
| 86eeb2b947 | |||
| cf915c5c80 | |||
| cf1e554a28 | |||
| 657fdbaf6b | |||
| a39dc88770 | |||
| 19f72d5be4 |
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -2,6 +2,7 @@
|
||||
"files.eol": "\n",
|
||||
"chat.tools.terminal.autoApprove": {
|
||||
"Rename-Item": true,
|
||||
"ForEach-Object": true
|
||||
"ForEach-Object": true,
|
||||
"&": true
|
||||
}
|
||||
}
|
||||
14
README.md
14
README.md
@@ -112,7 +112,7 @@ sudo journalctl -u adguard-shield -f # Logs live ver
|
||||
│ ├── report.html # HTML-Report-Template
|
||||
│ └── report.txt # TXT-Report-Template
|
||||
├── README.md
|
||||
└── doc/
|
||||
└── docs/
|
||||
├── architektur.md # Architektur & Funktionsweise
|
||||
├── konfiguration.md # Alle Parameter erklärt + Konfig-Migration
|
||||
├── befehle.md # Vollständige Befehlsreferenz inkl. Installer
|
||||
@@ -125,12 +125,12 @@ sudo journalctl -u adguard-shield -f # Logs live ver
|
||||
|
||||
| Dokument | Inhalt |
|
||||
|----------|--------|
|
||||
| [Architektur](doc/architektur.md) | Wie das Tool funktioniert, iptables-Strategie, Konfig-Migration |
|
||||
| [Konfiguration](doc/konfiguration.md) | Alle Parameter, Ports, Whitelist-Pflege, automatische Migration |
|
||||
| [Befehle](doc/befehle.md) | Vollständige Befehlsreferenz für Installer, Monitor, iptables-Helper und systemd |
|
||||
| [Benachrichtigungen](doc/benachrichtigungen.md) | Setup für Discord, Slack, Gotify, Ntfy |
|
||||
| [E-Mail Report](doc/report.md) | Periodische Statistik-Reports per E-Mail (HTML/TXT) |
|
||||
| [Tipps & Troubleshooting](doc/tipps-und-troubleshooting.md) | Best Practices, häufige Probleme, Deinstallation |
|
||||
| [Architektur](docs/architektur.md) | Wie das Tool funktioniert, iptables-Strategie, Konfig-Migration |
|
||||
| [Konfiguration](docs/konfiguration.md) | Alle Parameter, Ports, Whitelist-Pflege, automatische Migration |
|
||||
| [Befehle](docs/befehle.md) | Vollständige Befehlsreferenz für Installer, Monitor, iptables-Helper und systemd |
|
||||
| [Benachrichtigungen](docs/benachrichtigungen.md) | Setup für Discord, Slack, Gotify, Ntfy |
|
||||
| [E-Mail Report](docs/report.md) | Periodische Statistik-Reports per E-Mail (HTML/TXT) |
|
||||
| [Tipps & Troubleshooting](docs/tipps-und-troubleshooting.md) | Best Practices, häufige Probleme, Deinstallation |
|
||||
|
||||
## Lizenz
|
||||
|
||||
|
||||
@@ -5,11 +5,10 @@
|
||||
#
|
||||
# Autor: Patrick Asmus
|
||||
# E-Mail: support@techniverse.net
|
||||
# Datum: 2026-03-04
|
||||
# Lizenz: MIT
|
||||
###############################################################################
|
||||
|
||||
VERSION="v0.5.2"
|
||||
VERSION="v0.6.0"
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
@@ -551,9 +550,9 @@ send_notification() {
|
||||
message="🚫 AdGuard Shield: Client **$client_ip** gesperrt (${count}x $domain in ${window}s via **$protocol**, ${reason_label}). Sperre für ${simple_dur}."
|
||||
fi
|
||||
elif [[ "$action" == "service_start" ]]; then
|
||||
message="🟢 AdGuard Shield v${VERSION} wurde gestartet."
|
||||
message="🟢 AdGuard Shield ${VERSION} wurde gestartet."
|
||||
elif [[ "$action" == "service_stop" ]]; then
|
||||
message="🔴 AdGuard Shield v${VERSION} wurde gestoppt."
|
||||
message="🔴 AdGuard Shield ${VERSION} wurde gestoppt."
|
||||
else
|
||||
message="✅ AdGuard Shield: Client **$client_ip** wurde entsperrt."
|
||||
fi
|
||||
@@ -1097,7 +1096,7 @@ stop_blocklist_worker() {
|
||||
# ─── Hauptschleife ──────────────────────────────────────────────────────────
|
||||
main_loop() {
|
||||
log "INFO" "═══════════════════════════════════════════════════════════"
|
||||
log "INFO" "AdGuard Shield v${VERSION} gestartet"
|
||||
log "INFO" "AdGuard Shield ${VERSION} gestartet"
|
||||
log "INFO" " Limit: ${RATE_LIMIT_MAX_REQUESTS} Anfragen pro ${RATE_LIMIT_WINDOW}s"
|
||||
log "INFO" " Sperrdauer: $(format_duration "${BAN_DURATION}")"
|
||||
log "INFO" " Prüfintervall: ${CHECK_INTERVAL}s"
|
||||
@@ -1150,7 +1149,7 @@ trap cleanup SIGTERM SIGINT SIGHUP
|
||||
# ─── Kommandozeilen-Argumente ────────────────────────────────────────────────
|
||||
case "${1:-start}" in
|
||||
start)
|
||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [INFO] AdGuard Shield v${VERSION} wird gestartet..."
|
||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [INFO] AdGuard Shield ${VERSION} wird gestartet..."
|
||||
check_dependencies
|
||||
check_already_running
|
||||
init_directories
|
||||
@@ -1250,7 +1249,7 @@ case "${1:-start}" in
|
||||
;;
|
||||
*)
|
||||
cat << USAGE
|
||||
AdGuard Shield v${VERSION}
|
||||
AdGuard Shield ${VERSION}
|
||||
|
||||
Service-Steuerung (empfohlen):
|
||||
sudo systemctl start adguard-shield
|
||||
|
||||
@@ -26,7 +26,7 @@ sudo bash install.sh --help
|
||||
|
||||
## Uninstaller (eigenständig)
|
||||
|
||||
Ab Version 0.6 wird bei der Installation ein eigenständiger Uninstaller nach `/opt/adguard-shield/uninstall.sh` kopiert. Die Deinstallation kann damit **ohne die originalen Installationsdateien** durchgeführt werden:
|
||||
Ab Version 0.5.2 wird bei der Installation ein eigenständiger Uninstaller nach `/opt/adguard-shield/uninstall.sh` kopiert. Die Deinstallation kann damit **ohne die originalen Installationsdateien** durchgeführt werden:
|
||||
|
||||
```bash
|
||||
# Direkt aus dem Installationsverzeichnis — kein install.sh benötigt
|
||||
@@ -56,7 +56,26 @@ sudo /opt/adguard-shield/report-generator.sh install
|
||||
|
||||
Der Report enthält folgende Statistiken:
|
||||
|
||||
### Übersicht
|
||||
### Zeitraum-Schnellübersicht *(immer ganz oben)*
|
||||
|
||||
Eine Vergleichstabelle mit Live-Zahlen für vier feste Zeitfenster – unabhängig vom konfigurierten `REPORT_INTERVAL`:
|
||||
|
||||
| Zeitraum | Sperren | Entsperrungen | Eindeutige IPs | Permanent gebannt |
|
||||
|----------|---------|---------------|----------------|-------------------|
|
||||
| Heute *(nur nach 20:00 Uhr)* | … | … | … | … |
|
||||
| Gestern | … | … | … | … |
|
||||
| Letzte 7 Tage | … | … | … | … |
|
||||
| Letzte 14 Tage | … | … | … | … |
|
||||
| Letzte 30 Tage | … | … | … | … |
|
||||
|
||||
Im HTML-Format wird **Gestern** grün hervorgehoben, **Heute** blau (erscheint nur ab 20:00 Uhr).
|
||||
- **Gestern** umfasst exakt 00:00:00 – 23:59:59 des gestrigen Tages.
|
||||
- **Heute** umfasst den laufenden Tag von 00:00:00 bis zum Zeitpunkt der Reportgenerierung und wird nur eingeblendet, wenn der Report nach 20:00 Uhr erstellt wird.
|
||||
Die übrigen Zeiträume laufen vom Starttag 00:00 Uhr bis zum Zeitpunkt der Reportgenerierung.
|
||||
|
||||
> **Hinweis:** Die AbuseIPDB-Meldungen werden in der Schnellübersicht nicht mehr separat ausgewiesen, da sie immer mit einer Permanentsperre korrelieren – der Wert „Permanent gebannt" ist daher ausreichend. Die Gesamtanzahl der AbuseIPDB-Reports im Berichtszeitraum ist weiterhin in der allgemeinen Übersicht sichtbar.
|
||||
|
||||
### Übersicht (Berichtszeitraum)
|
||||
- Gesamtzahl der Sperren und Entsperrungen
|
||||
- Anzahl eindeutiger gesperrter IPs
|
||||
- Permanente Sperren
|
||||
@@ -6,7 +6,7 @@
|
||||
# Lizenz: MIT
|
||||
###############################################################################
|
||||
|
||||
VERSION="v0.5.2"
|
||||
VERSION="v0.6.0"
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
|
||||
@@ -65,6 +65,49 @@ log() {
|
||||
echo "[$timestamp] [$level] [REPORT] $message" | tee -a "$LOG_FILE" >&2
|
||||
}
|
||||
|
||||
# ─── Versionsnummern vergleichen ──────────────────────────────────────────────
|
||||
# Gibt 0 zurück, wenn $1 > $2 (semver-Vergleich, v-Präfix wird ignoriert)
|
||||
version_gt() {
|
||||
local v1="${1#v}"
|
||||
local v2="${2#v}"
|
||||
[[ "$v1" == "$v2" ]] && return 1
|
||||
local IFS='.' i a b
|
||||
read -ra ver1 <<< "$v1"
|
||||
read -ra ver2 <<< "$v2"
|
||||
local max_len=$(( ${#ver1[@]} > ${#ver2[@]} ? ${#ver1[@]} : ${#ver2[@]} ))
|
||||
for ((i=0; i<max_len; i++)); do
|
||||
a="${ver1[i]:-0}"
|
||||
b="${ver2[i]:-0}"
|
||||
[[ "$((10#${a}))" -gt "$((10#${b}))" ]] && return 0
|
||||
[[ "$((10#${a}))" -lt "$((10#${b}))" ]] && return 1
|
||||
done
|
||||
return 1
|
||||
}
|
||||
|
||||
# ─── Versionsprüfung gegen Gitea-Releases ─────────────────────────────────────
|
||||
check_for_update() {
|
||||
UPDATE_NOTICE_HTML=""
|
||||
UPDATE_NOTICE_TXT=""
|
||||
|
||||
[[ "$VERSION" == "unknown" ]] && return
|
||||
|
||||
local latest_tag
|
||||
latest_tag=$(curl -sf --max-time 5 \
|
||||
"https://git.techniverse.net/api/v1/repos/scriptos/adguard-shield/releases?limit=1&page=1" \
|
||||
2>/dev/null | grep -o '"tag_name":"[^"]*"' | head -1 | cut -d'"' -f4 || true)
|
||||
|
||||
[[ -z "$latest_tag" ]] && return
|
||||
|
||||
if version_gt "$latest_tag" "$VERSION"; then
|
||||
UPDATE_NOTICE_HTML='<div class="update-notice">🆕 Update verfügbar: <strong>'"${latest_tag}"'</strong> · <a href="https://git.techniverse.net/scriptos/adguard-shield/releases">Jetzt aktualisieren →</a></div>'
|
||||
UPDATE_NOTICE_TXT=" ⚠ Neue Version verfügbar: ${latest_tag}
|
||||
Update: https://git.techniverse.net/scriptos/adguard-shield/releases
|
||||
"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
# ─── Berichtszeitraum berechnen ───────────────────────────────────────────────
|
||||
|
||||
# Gibt Epoch-Wert für heute 00:00:00 (Mitternacht) zurück
|
||||
@@ -135,40 +178,58 @@ get_period_end_epoch() {
|
||||
echo $((today_midnight - 1))
|
||||
}
|
||||
|
||||
# ─── History-Cache (einmaliges Einlesen der Ban-History) ─────────────────────
|
||||
# Die Datei wird genau einmal mit awk geparst; alle Funktionen lesen danach
|
||||
# nur noch aus diesem In-Memory-Cache – keine date-Subprozesse pro Zeile mehr.
|
||||
#
|
||||
# Cache-Format pro Zeile (Pipe-separiert, alle Felder getrimmt):
|
||||
# EPOCH|TIMESTAMP|ACTION|IP|DOMAIN|COUNT|DURATION|PROTOCOL|REASON
|
||||
HISTORY_CACHE=""
|
||||
HISTORY_CACHE_LOADED=false
|
||||
|
||||
_load_history_cache() {
|
||||
[[ "$HISTORY_CACHE_LOADED" == "true" ]] && return
|
||||
HISTORY_CACHE_LOADED=true
|
||||
[[ ! -f "$BAN_HISTORY_FILE" ]] && return
|
||||
HISTORY_CACHE=$(awk '
|
||||
/^#/ || /^[[:space:]]*$/ { next }
|
||||
{
|
||||
n = split($0, f, "|")
|
||||
if (n < 2) next
|
||||
ts = f[1]; gsub(/^[[:space:]]+|[[:space:]]+$/, "", ts)
|
||||
if (length(ts) < 19) next
|
||||
ep = mktime(substr(ts,1,4) " " substr(ts,6,2) " " substr(ts,9,2) " " \
|
||||
substr(ts,12,2) " " substr(ts,15,2) " " substr(ts,18,2))
|
||||
if (ep < 0) next
|
||||
for (i = 1; i <= n; i++) gsub(/^[[:space:]]+|[[:space:]]+$/, "", f[i])
|
||||
print ep "|" f[1] "|" f[2] "|" f[3] "|" f[4] "|" f[5] "|" f[6] "|" f[7] "|" f[8]
|
||||
}
|
||||
' "$BAN_HISTORY_FILE")
|
||||
}
|
||||
|
||||
# ─── Ban-History filtern nach Zeitraum ────────────────────────────────────────
|
||||
# Gibt nur Zeilen zurück, deren Zeitstempel im Berichtszeitraum liegen
|
||||
# Gibt nur Zeilen zurück, deren Zeitstempel im Berichtszeitraum liegen.
|
||||
# Liest intern aus dem Cache – keine erneuten date-Subprozesse.
|
||||
filter_history_by_period() {
|
||||
local start_epoch="$1"
|
||||
local end_epoch="$2"
|
||||
|
||||
if [[ ! -f "$BAN_HISTORY_FILE" ]]; then
|
||||
return
|
||||
fi
|
||||
[[ ! -f "$BAN_HISTORY_FILE" ]] && return
|
||||
_load_history_cache
|
||||
[[ -z "$HISTORY_CACHE" ]] && return
|
||||
|
||||
while IFS= read -r line; do
|
||||
# Kommentare und leere Zeilen überspringen
|
||||
[[ "$line" =~ ^#.*$ || -z "$line" ]] && continue
|
||||
|
||||
# Zeitstempel extrahieren (erstes Feld, Format: YYYY-MM-DD HH:MM:SS)
|
||||
local timestamp
|
||||
timestamp=$(echo "$line" | awk -F'|' '{print $1}' | xargs)
|
||||
|
||||
if [[ -z "$timestamp" ]]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
# Timestamp in Epoch umwandeln
|
||||
local line_epoch
|
||||
line_epoch=$(date -d "$timestamp" '+%s' 2>/dev/null || date -j -f '%Y-%m-%d %H:%M:%S' "$timestamp" '+%s' 2>/dev/null || echo "0")
|
||||
|
||||
if [[ "$line_epoch" -ge "$start_epoch" && "$line_epoch" -le "$end_epoch" ]]; then
|
||||
echo "$line"
|
||||
fi
|
||||
done < "$BAN_HISTORY_FILE"
|
||||
# Aus dem Cache filtern und im Original-Format ausgeben (Abwärtskompatibilität)
|
||||
echo "$HISTORY_CACHE" | awk -F'|' -v s="$start_epoch" -v e="$end_epoch" '
|
||||
$1 >= s && $1 <= e {
|
||||
printf "%-19s | %-6s | %-39s | %-30s | %-8s | %-10s | %-10s | %s\n",
|
||||
$2, $3, $4, $5, $6, $7, $8, $9
|
||||
}
|
||||
'
|
||||
}
|
||||
|
||||
# ─── Ban-History bereinigen ────────────────────────────────────────────────────
|
||||
# Entfernt Einträge älter als BAN_HISTORY_RETENTION_DAYS (0 = deaktiviert)
|
||||
# Entfernt Einträge älter als BAN_HISTORY_RETENTION_DAYS (0 = deaktiviert).
|
||||
# Nutzt einen einzelnen awk-Durchlauf mit mktime() – kein date-Subprocess pro Zeile.
|
||||
cleanup_ban_history() {
|
||||
[[ ! -f "$BAN_HISTORY_FILE" ]] && return
|
||||
[[ "$BAN_HISTORY_RETENTION_DAYS" == "0" || -z "$BAN_HISTORY_RETENTION_DAYS" ]] && return
|
||||
@@ -178,36 +239,69 @@ cleanup_ban_history() {
|
||||
[[ -z "$cutoff_epoch" ]] && return
|
||||
|
||||
local tmp_file="${BAN_HISTORY_FILE}.tmp"
|
||||
local removed=0
|
||||
local lines_before lines_after
|
||||
lines_before=$(wc -l < "$BAN_HISTORY_FILE")
|
||||
|
||||
while IFS= read -r line; do
|
||||
# Header-Zeilen immer beibehalten
|
||||
if [[ "$line" =~ ^#.*$ || -z "$line" ]]; then
|
||||
echo "$line"
|
||||
continue
|
||||
fi
|
||||
awk -v cutoff="$cutoff_epoch" '
|
||||
/^#/ || /^[[:space:]]*$/ { print; next }
|
||||
{
|
||||
n = split($0, f, "|")
|
||||
if (n < 2) { print; next }
|
||||
ts = f[1]; gsub(/^[[:space:]]+|[[:space:]]+$/, "", ts)
|
||||
if (length(ts) < 19) { print; next }
|
||||
ep = mktime(substr(ts,1,4) " " substr(ts,6,2) " " substr(ts,9,2) " " \
|
||||
substr(ts,12,2) " " substr(ts,15,2) " " substr(ts,18,2))
|
||||
if (ep >= cutoff) print
|
||||
}
|
||||
' "$BAN_HISTORY_FILE" > "$tmp_file"
|
||||
|
||||
local timestamp
|
||||
timestamp=$(echo "$line" | awk -F'|' '{print $1}' | xargs)
|
||||
local line_epoch
|
||||
line_epoch=$(date -d "$timestamp" '+%s' 2>/dev/null || echo "0")
|
||||
|
||||
if [[ "$line_epoch" -ge "$cutoff_epoch" ]]; then
|
||||
echo "$line"
|
||||
else
|
||||
((removed++)) || true
|
||||
fi
|
||||
done < "$BAN_HISTORY_FILE" > "$tmp_file"
|
||||
lines_after=$(wc -l < "$tmp_file")
|
||||
local removed=$(( lines_before - lines_after ))
|
||||
|
||||
if [[ $removed -gt 0 ]]; then
|
||||
mv "$tmp_file" "$BAN_HISTORY_FILE"
|
||||
# Cache invalidieren, damit Folgeaufrufe die bereinigte Datei neu lesen
|
||||
HISTORY_CACHE=""
|
||||
HISTORY_CACHE_LOADED=false
|
||||
log "INFO" "Ban-History bereinigt: $removed Einträge älter als ${BAN_HISTORY_RETENTION_DAYS} Tage entfernt"
|
||||
else
|
||||
rm -f "$tmp_file"
|
||||
fi
|
||||
}
|
||||
|
||||
# ─── Statistiken für beliebigen Zeitraum berechnen ──────────────────────────
|
||||
# Gibt "bans|unbans|unique_ips|permanent" für einen Epochen-Bereich zurück.
|
||||
# Liest direkt aus dem Cache in einem einzigen awk-Durchlauf.
|
||||
get_stats_for_epoch_range() {
|
||||
local start_epoch="$1"
|
||||
local end_epoch="$2"
|
||||
|
||||
_load_history_cache
|
||||
if [[ -z "$HISTORY_CACHE" ]]; then
|
||||
echo "0|0|0|0"
|
||||
return
|
||||
fi
|
||||
|
||||
echo "$HISTORY_CACHE" | awk -F'|' -v s="$start_epoch" -v e="$end_epoch" '
|
||||
$1 >= s && $1 <= e {
|
||||
if ($3 == "BAN") {
|
||||
bans++
|
||||
ip_seen[$4] = 1
|
||||
if (tolower($7) ~ /permanent/) perm++
|
||||
} else if ($3 == "UNBAN") {
|
||||
unbans++
|
||||
}
|
||||
}
|
||||
END {
|
||||
for (ip in ip_seen) unique++
|
||||
print (bans+0) "|" (unbans+0) "|" (unique+0) "|" (perm+0)
|
||||
}
|
||||
'
|
||||
}
|
||||
|
||||
# ─── Statistiken berechnen ────────────────────────────────────────────────────
|
||||
# Liest die Ban-History genau einmal aus dem Cache und berechnet alle
|
||||
# Kennzahlen in einem einzigen awk-Durchlauf – keine Subprozesse pro Zeile.
|
||||
calculate_stats() {
|
||||
# Ban-History bereinigen (falls Retention konfiguriert)
|
||||
cleanup_ban_history
|
||||
@@ -217,11 +311,10 @@ calculate_stats() {
|
||||
local end_epoch
|
||||
end_epoch=$(get_period_end_epoch)
|
||||
|
||||
local filtered_data
|
||||
filtered_data=$(filter_history_by_period "$start_epoch" "$end_epoch")
|
||||
_load_history_cache
|
||||
|
||||
# Wenn keine Daten vorhanden, Standardwerte
|
||||
if [[ -z "$filtered_data" ]]; then
|
||||
# Wenn keine History-Datei vorhanden, Standardwerte setzen
|
||||
if [[ -z "$HISTORY_CACHE" ]]; then
|
||||
TOTAL_BANS=0
|
||||
TOTAL_UNBANS=0
|
||||
UNIQUE_IPS=0
|
||||
@@ -239,17 +332,80 @@ calculate_stats() {
|
||||
return
|
||||
fi
|
||||
|
||||
# Gesamtzahl Sperren
|
||||
TOTAL_BANS=$(echo "$filtered_data" | grep -c '| BAN ' || echo "0")
|
||||
# Einen einzigen awk-Pass über den Cache: alle Statistiken auf einmal
|
||||
local awk_result
|
||||
awk_result=$(echo "$HISTORY_CACHE" | awk -F'|' -v s="$start_epoch" -v e="$end_epoch" '
|
||||
$1 >= s && $1 <= e {
|
||||
action = $3
|
||||
if (action == "BAN") {
|
||||
bans++
|
||||
ip_count[$4]++
|
||||
ip_seen[$4] = 1
|
||||
day = substr($2, 1, 10)
|
||||
day_count[day]++
|
||||
dom = $5
|
||||
if (dom != "" && dom != "-") dom_count[dom]++
|
||||
proto = $8
|
||||
if (proto == "" || proto == "-") proto = "unbekannt"
|
||||
proto_count[proto]++
|
||||
if (tolower($7) ~ /permanent/) perm++
|
||||
rsn = tolower($9)
|
||||
if (rsn ~ /rate.limit/) rl++
|
||||
if (rsn ~ /subdomain.flood/) sf++
|
||||
if (rsn ~ /external.blocklist/) eb++
|
||||
# Zirkulärer Puffer für die letzten 10 Sperren
|
||||
recent[bans % 10] = $2 "|" $3 "|" $4 "|" $5 "|" $6 "|" $7 "|" $8 "|" $9
|
||||
} else if (action == "UNBAN") {
|
||||
unbans++
|
||||
}
|
||||
}
|
||||
END {
|
||||
for (ip in ip_seen) unique++
|
||||
busiest = ""; max_d = 0
|
||||
for (d in day_count) {
|
||||
if (day_count[d] > max_d) { max_d = day_count[d]; busiest = d }
|
||||
}
|
||||
print "BANS=" (bans+0)
|
||||
print "UNBANS=" (unbans+0)
|
||||
print "UNIQUE=" (unique+0)
|
||||
print "PERM=" (perm+0)
|
||||
print "RL=" (rl+0)
|
||||
print "SF=" (sf+0)
|
||||
print "EB=" (eb+0)
|
||||
print "BUSIEST=" busiest
|
||||
for (ip in ip_count) print "IP\t" ip_count[ip] "\t" ip
|
||||
for (d in dom_count) print "DOMAIN\t" dom_count[d] "\t" d
|
||||
for (p in proto_count) print "PROTO\t" proto_count[p] "\t" p
|
||||
n = (bans < 10) ? bans : 10
|
||||
for (i = 0; i < n; i++) {
|
||||
idx = (bans - i) % 10
|
||||
print "RECENT\t" recent[idx]
|
||||
}
|
||||
}
|
||||
')
|
||||
|
||||
# Gesamtzahl Entsperrungen
|
||||
TOTAL_UNBANS=$(echo "$filtered_data" | grep -c '| UNBAN ' || echo "0")
|
||||
# Einfache Kennzahlen aus dem awk-Ergebnis extrahieren
|
||||
TOTAL_BANS=$( echo "$awk_result" | awk -F= '$1=="BANS" {print $2; exit}')
|
||||
TOTAL_UNBANS=$( echo "$awk_result" | awk -F= '$1=="UNBANS" {print $2; exit}')
|
||||
UNIQUE_IPS=$( echo "$awk_result" | awk -F= '$1=="UNIQUE" {print $2; exit}')
|
||||
PERMANENT_BANS=$(echo "$awk_result" | awk -F= '$1=="PERM" {print $2; exit}')
|
||||
RATELIMIT_BANS=$( echo "$awk_result" | awk -F= '$1=="RL" {print $2; exit}')
|
||||
SUBDOMAIN_FLOOD_BANS=$( echo "$awk_result" | awk -F= '$1=="SF" {print $2; exit}')
|
||||
EXTERNAL_BLOCKLIST_BANS=$(echo "$awk_result" | awk -F= '$1=="EB" {print $2; exit}')
|
||||
|
||||
# Eindeutige IPs (nur BAN-Einträge)
|
||||
UNIQUE_IPS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $3}' | xargs -I{} echo {} | sort -u | wc -l | xargs)
|
||||
local busiest_raw
|
||||
busiest_raw=$(echo "$awk_result" | awk -F= '$1=="BUSIEST" {print $2; exit}')
|
||||
if [[ -n "$busiest_raw" ]]; then
|
||||
BUSIEST_DAY=$(date -d "$busiest_raw" '+%d.%m.%Y' 2>/dev/null || echo "$busiest_raw")
|
||||
else
|
||||
BUSIEST_DAY="–"
|
||||
fi
|
||||
|
||||
# Permanente Sperren (Dauer enthält "PERMANENT" oder "permanent")
|
||||
PERMANENT_BANS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $6}' | grep -ic 'permanent' || echo "0")
|
||||
# Top-Listen: Tab-getrennte Felder sortieren und in das erwartete Format bringen
|
||||
TOP10_IPS=$( echo "$awk_result" | awk -F'\t' '$1=="IP" {print $2 " " $3}' | sort -rn | head -10)
|
||||
TOP10_DOMAINS=$(echo "$awk_result" | awk -F'\t' '$1=="DOMAIN" {print $2 " " $3}' | sort -rn | head -10)
|
||||
PROTOCOL_STATS=$(echo "$awk_result" | awk -F'\t' '$1=="PROTO" {print $2 " " $3}' | sort -rn)
|
||||
RECENT_BANS=$( echo "$awk_result" | awk -F'\t' '$1=="RECENT" {print $2}')
|
||||
|
||||
# Aktuell aktive Sperren (aus State-Dateien)
|
||||
ACTIVE_BANS=0
|
||||
@@ -259,41 +415,21 @@ calculate_stats() {
|
||||
done
|
||||
fi
|
||||
|
||||
# AbuseIPDB Reports (suche in Log-Datei)
|
||||
# AbuseIPDB Reports – zeitraum-gefiltert aus der Logdatei via awk+mktime
|
||||
ABUSEIPDB_REPORTS=0
|
||||
if [[ -f "$LOG_FILE" ]]; then
|
||||
local abuseipdb_start_date
|
||||
abuseipdb_start_date=$(date -d "@$start_epoch" '+%Y-%m-%d' 2>/dev/null || date -r "$start_epoch" '+%Y-%m-%d')
|
||||
ABUSEIPDB_REPORTS=$(grep -c "AbuseIPDB: IP .* erfolgreich gemeldet" "$LOG_FILE" 2>/dev/null | head -1 || echo "0")
|
||||
ABUSEIPDB_REPORTS=$(grep "AbuseIPDB:.*erfolgreich gemeldet" "$LOG_FILE" 2>/dev/null | \
|
||||
awk -v s="$start_epoch" -v e="$end_epoch" '
|
||||
{
|
||||
ts = substr($0, 2, 19)
|
||||
if (ts !~ /^[0-9]{4}/) next
|
||||
ep = mktime(substr(ts,1,4) " " substr(ts,6,2) " " substr(ts,9,2) " " \
|
||||
substr(ts,12,2) " " substr(ts,15,2) " " substr(ts,18,2))
|
||||
if (ep >= s && ep <= e) count++
|
||||
}
|
||||
END { print count+0 }
|
||||
' || echo "0")
|
||||
fi
|
||||
|
||||
# Angriffsarten
|
||||
RATELIMIT_BANS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $8}' | grep -ic 'rate-limit' || echo "0")
|
||||
SUBDOMAIN_FLOOD_BANS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $8}' | grep -ic 'subdomain-flood' || echo "0")
|
||||
EXTERNAL_BLOCKLIST_BANS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $8}' | grep -ic 'external-blocklist' || echo "0")
|
||||
|
||||
# Aktivster Tag
|
||||
BUSIEST_DAY=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $1}' | xargs -I{} echo {} | awk '{print $1}' | sort | uniq -c | sort -rn | head -1 | awk '{print $2}' || echo "–")
|
||||
if [[ -z "$BUSIEST_DAY" ]]; then
|
||||
BUSIEST_DAY="–"
|
||||
else
|
||||
# Datum in DE-Format umwandeln
|
||||
local busiest_formatted
|
||||
busiest_formatted=$(date -d "$BUSIEST_DAY" '+%d.%m.%Y' 2>/dev/null || echo "$BUSIEST_DAY")
|
||||
BUSIEST_DAY="$busiest_formatted"
|
||||
fi
|
||||
|
||||
# Top 10 IPs (nach Häufigkeit der Sperren)
|
||||
TOP10_IPS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $3}' | xargs -I{} echo {} | sort | uniq -c | sort -rn | head -10)
|
||||
|
||||
# Top 10 Domains (nach Häufigkeit)
|
||||
TOP10_DOMAINS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $4}' | xargs -I{} echo {} | sed 's/^-$//' | grep -v '^$' | sort | uniq -c | sort -rn | head -10)
|
||||
|
||||
# Protokoll-Verteilung
|
||||
PROTOCOL_STATS=$(echo "$filtered_data" | grep '| BAN ' | awk -F'|' '{print $7}' | xargs -I{} echo {} | sed 's/^-$/unbekannt/' | grep -v '^$' | sort | uniq -c | sort -rn)
|
||||
|
||||
# Letzte 10 Sperren
|
||||
RECENT_BANS=$(echo "$filtered_data" | grep '| BAN ' | tail -10)
|
||||
}
|
||||
|
||||
# ─── HTML-Tabellen generieren ─────────────────────────────────────────────────
|
||||
@@ -420,6 +556,65 @@ generate_recent_bans_html() {
|
||||
echo "$html"
|
||||
}
|
||||
|
||||
# ─── Zeitraum-Schnellübersicht (HTML) ─────────────────────────────────────────
|
||||
generate_period_overview_html() {
|
||||
local today_midnight
|
||||
today_midnight=$(get_today_midnight)
|
||||
local now
|
||||
now=$(date '+%s')
|
||||
local yesterday_start=$((today_midnight - 86400))
|
||||
local yesterday_end=$((today_midnight - 1))
|
||||
|
||||
# Zeiträume: "Label:start_epoch:end_epoch" (Doppelpunkt als Trennzeichen)
|
||||
local periods=()
|
||||
|
||||
# Heute nur nach 20:00 Uhr einblenden
|
||||
local current_hour
|
||||
current_hour=$(date '+%H' | sed 's/^0*//')
|
||||
if [[ "${current_hour:-0}" -ge 20 ]]; then
|
||||
periods+=("Heute:${today_midnight}:${now}")
|
||||
fi
|
||||
|
||||
periods+=(
|
||||
"Gestern:${yesterday_start}:${yesterday_end}"
|
||||
"Letzte 7 Tage:$((today_midnight - 7 * 86400)):${now}"
|
||||
"Letzte 14 Tage:$((today_midnight - 14 * 86400)):${now}"
|
||||
"Letzte 30 Tage:$((today_midnight - 30 * 86400)):${now}"
|
||||
)
|
||||
|
||||
local html='<table>'
|
||||
html+='<tr>'
|
||||
html+='<th>Zeitraum</th>'
|
||||
html+='<th>Sperren</th>'
|
||||
html+='<th>Entsperrt</th>'
|
||||
html+='<th>Unique IPs</th>'
|
||||
html+='<th>Dauerhaft gebannt</th>'
|
||||
html+='</tr>'
|
||||
|
||||
for period_def in "${periods[@]}"; do
|
||||
IFS=':' read -r label start_e end_e <<< "$period_def"
|
||||
local row_class=""
|
||||
case "$label" in
|
||||
Heute) row_class=' class="period-today"' ;;
|
||||
Gestern) row_class=' class="period-gestern"' ;;
|
||||
esac
|
||||
local stats
|
||||
stats=$(get_stats_for_epoch_range "$start_e" "$end_e")
|
||||
IFS='|' read -r bans unbans unique perm <<< "$stats"
|
||||
|
||||
html+="<tr${row_class}>"
|
||||
html+="<td><strong>${label}</strong></td>"
|
||||
html+="<td>${bans}</td>"
|
||||
html+="<td>${unbans}</td>"
|
||||
html+="<td>${unique}</td>"
|
||||
html+="<td>${perm}</td>"
|
||||
html+="</tr>"
|
||||
done
|
||||
|
||||
html+='</table>'
|
||||
echo "$html"
|
||||
}
|
||||
|
||||
# ─── TXT-Tabellen generieren ──────────────────────────────────────────────────
|
||||
generate_top10_ips_txt() {
|
||||
if [[ -z "$TOP10_IPS" ]]; then
|
||||
@@ -495,6 +690,46 @@ generate_recent_bans_txt() {
|
||||
done <<< "$RECENT_BANS"
|
||||
}
|
||||
|
||||
# ─── Zeitraum-Schnellübersicht (TXT) ──────────────────────────────────────────
|
||||
generate_period_overview_txt() {
|
||||
local today_midnight
|
||||
today_midnight=$(get_today_midnight)
|
||||
local now
|
||||
now=$(date '+%s')
|
||||
local yesterday_start=$((today_midnight - 86400))
|
||||
local yesterday_end=$((today_midnight - 1))
|
||||
|
||||
local periods=()
|
||||
|
||||
# Heute nur nach 20:00 Uhr einblenden
|
||||
local current_hour
|
||||
current_hour=$(date '+%H' | sed 's/^0*//')
|
||||
if [[ "${current_hour:-0}" -ge 20 ]]; then
|
||||
periods+=("Heute:${today_midnight}:${now}")
|
||||
fi
|
||||
|
||||
periods+=(
|
||||
"Gestern:${yesterday_start}:${yesterday_end}"
|
||||
"Letzte 7 Tage:$((today_midnight - 7 * 86400)):${now}"
|
||||
"Letzte 14 Tage:$((today_midnight - 14 * 86400)):${now}"
|
||||
"Letzte 30 Tage:$((today_midnight - 30 * 86400)):${now}"
|
||||
)
|
||||
|
||||
printf " %-15s %-9s %-12s %-14s %-11s\n" \
|
||||
"Zeitraum" "Sperren" "Entsperrt" "Unique IPs" "Dauerhaft"
|
||||
printf " %-15s %-9s %-12s %-14s %-11s\n" \
|
||||
"───────────────" "─────────" "────────────" "──────────────" "───────────"
|
||||
|
||||
for period_def in "${periods[@]}"; do
|
||||
IFS=':' read -r label start_e end_e <<< "$period_def"
|
||||
local stats
|
||||
stats=$(get_stats_for_epoch_range "$start_e" "$end_e")
|
||||
IFS='|' read -r bans unbans unique perm <<< "$stats"
|
||||
printf " %-15s %-9s %-12s %-14s %-11s\n" \
|
||||
"$label" "$bans" "$unbans" "$unique" "$perm"
|
||||
done
|
||||
}
|
||||
|
||||
# ─── Report generieren ────────────────────────────────────────────────────────
|
||||
generate_report() {
|
||||
local format="${1:-$REPORT_FORMAT}"
|
||||
@@ -504,6 +739,9 @@ generate_report() {
|
||||
# Statistiken berechnen
|
||||
calculate_stats
|
||||
|
||||
# Update-Verfügbarkeit prüfen
|
||||
check_for_update
|
||||
|
||||
local report_period
|
||||
report_period=$(get_report_period)
|
||||
local report_date
|
||||
@@ -530,6 +768,8 @@ generate_report() {
|
||||
protocol_table=$(generate_protocol_html)
|
||||
local recent_bans_table
|
||||
recent_bans_table=$(generate_recent_bans_html)
|
||||
local period_overview_table
|
||||
period_overview_table=$(generate_period_overview_html)
|
||||
|
||||
# Platzhalter ersetzen
|
||||
report="${report//\{\{REPORT_PERIOD\}\}/$report_period}"
|
||||
@@ -550,6 +790,8 @@ generate_report() {
|
||||
report="${report//\{\{TOP10_DOMAINS_TABLE\}\}/$top10_domains_table}"
|
||||
report="${report//\{\{PROTOCOL_TABLE\}\}/$protocol_table}"
|
||||
report="${report//\{\{RECENT_BANS_TABLE\}\}/$recent_bans_table}"
|
||||
report="${report//\{\{PERIOD_OVERVIEW_TABLE\}\}/$period_overview_table}"
|
||||
report="${report//\{\{UPDATE_NOTICE\}\}/$UPDATE_NOTICE_HTML}"
|
||||
|
||||
echo "$report"
|
||||
|
||||
@@ -572,6 +814,8 @@ generate_report() {
|
||||
protocol_txt=$(generate_protocol_txt)
|
||||
local recent_bans_txt
|
||||
recent_bans_txt=$(generate_recent_bans_txt)
|
||||
local period_overview_txt
|
||||
period_overview_txt=$(generate_period_overview_txt)
|
||||
|
||||
# Platzhalter ersetzen
|
||||
report="${report//\{\{REPORT_PERIOD\}\}/$report_period}"
|
||||
@@ -592,6 +836,8 @@ generate_report() {
|
||||
report="${report//\{\{TOP10_DOMAINS_TEXT\}\}/$top10_domains_txt}"
|
||||
report="${report//\{\{PROTOCOL_TEXT\}\}/$protocol_txt}"
|
||||
report="${report//\{\{RECENT_BANS_TEXT\}\}/$recent_bans_txt}"
|
||||
report="${report//\{\{PERIOD_OVERVIEW_TEXT\}\}/$period_overview_txt}"
|
||||
report="${report//\{\{UPDATE_NOTICE_TXT\}\}/$UPDATE_NOTICE_TXT}"
|
||||
|
||||
echo "$report"
|
||||
else
|
||||
@@ -836,6 +1082,11 @@ send_test_email() {
|
||||
local content_type="text/plain"
|
||||
[[ "$REPORT_FORMAT" == "html" ]] && content_type="text/html"
|
||||
|
||||
local test_update_notice_html
|
||||
test_update_notice_html='<div style="display:inline-block;margin-top:10px;padding:7px 14px;background:#fff8e1;border:1px solid #ffc107;border-radius:8px;color:#7a5700;font-size:12px;font-weight:600;">🆕 Update verfügbar (Testanzeige): <strong>'"${VERSION}"'</strong> · <a href="https://git.techniverse.net/scriptos/adguard-shield/releases" style="color:#7a5700;font-weight:700;text-decoration:none;">Jetzt aktualisieren →</a></div>'
|
||||
local test_update_notice_txt
|
||||
test_update_notice_txt=" ⚠ Neue Version verfügbar (Testanzeige): ${VERSION}\n Update: https://git.techniverse.net/scriptos/adguard-shield/releases\n"
|
||||
|
||||
local test_body
|
||||
if [[ "$REPORT_FORMAT" == "html" ]]; then
|
||||
test_body=$(cat <<TESTHTML
|
||||
@@ -861,13 +1112,17 @@ send_test_email() {
|
||||
</table>
|
||||
<p style="color:#6c757d;font-size:13px;">Ab jetzt kannst du den automatischen Versand aktivieren mit:<br><code>sudo $(basename "$0") install</code></p>
|
||||
</div>
|
||||
<div style="background:#f8f9fc;padding:20px;text-align:center;font-size:12px;color:#6c757d;border-top:1px solid #e8ecf1;">
|
||||
<a href="https://www.patrick-asmus.de" style="color:#0f3460;text-decoration:none;font-weight:600;">Patrick-Asmus.DE</a>
|
||||
<div style="background:#f8f9fc;padding:20px;font-size:12px;color:#6c757d;border-top:1px solid #e8ecf1;text-align:center;">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
<span><a href="https://www.patrick-asmus.de" style="color:#0f3460;text-decoration:none;font-weight:600;">Patrick-Asmus.de</a>
|
||||
<span style="margin:0 8px;color:#ced4da;">|</span>
|
||||
<a href="https://www.cleveradmin.de" style="color:#0f3460;text-decoration:none;font-weight:600;">CleverAdmin.DE</a>
|
||||
<a href="https://www.cleveradmin.de" style="color:#0f3460;text-decoration:none;font-weight:600;">CleverAdmin.de</a></span>
|
||||
<span><a href="https://git.techniverse.net/scriptos/adguard-shield.git" style="color:#0f3460;text-decoration:none;font-weight:600;">AdGuard Shield auf Gitea</a>
|
||||
<span style="margin:0 8px;color:#ced4da;">|</span>
|
||||
<a href="https://git.techniverse.net/scriptos/adguard-shield.git" style="color:#0f3460;text-decoration:none;font-weight:600;">AdGuard Shield auf Gitea</a>
|
||||
<div style="margin-top:8px;font-size:11px;color:#adb5bd;">AdGuard Shield v${VERSION} · ${hostname}</div>
|
||||
<a href="https://git.techniverse.net/scriptos/adguard-shield/src/branch/main/docs" style="color:#0f3460;text-decoration:none;font-weight:600;">docs</a></span>
|
||||
</div>
|
||||
<div style="margin-top:8px;font-size:11px;color:#adb5bd;text-align:center;">AdGuard Shield ${VERSION} · ${hostname}</div>
|
||||
${test_update_notice_html}
|
||||
</div>
|
||||
</div>
|
||||
</body></html>
|
||||
@@ -895,12 +1150,14 @@ TESTHTML
|
||||
Ab jetzt kannst du den automatischen Versand aktivieren mit:
|
||||
sudo $(basename "$0") install
|
||||
|
||||
${test_update_notice_txt}
|
||||
═══════════════════════════════════════════════════════════════
|
||||
AdGuard Shield v${VERSION} · ${hostname}
|
||||
AdGuard Shield ${VERSION} · ${hostname}
|
||||
|
||||
Web: https://www.patrick-asmus.de
|
||||
Blog: https://www.cleveradmin.de
|
||||
Repo: https://git.techniverse.net/scriptos/adguard-shield.git
|
||||
Docs: https://git.techniverse.net/scriptos/adguard-shield/src/branch/main/docs
|
||||
═══════════════════════════════════════════════════════════════
|
||||
TESTTXT
|
||||
)
|
||||
|
||||
@@ -210,17 +210,57 @@
|
||||
}
|
||||
.footer .links {
|
||||
margin-top: 10px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.footer .separator {
|
||||
margin: 0 8px;
|
||||
color: #ced4da;
|
||||
}
|
||||
.version-tag {
|
||||
display: inline-block;
|
||||
display: block;
|
||||
margin-top: 8px;
|
||||
font-size: 11px;
|
||||
color: #adb5bd;
|
||||
}
|
||||
.update-notice {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
padding: 7px 14px;
|
||||
background: #fff8e1;
|
||||
border: 1px solid #ffc107;
|
||||
border-radius: 8px;
|
||||
color: #7a5700;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.update-notice a {
|
||||
color: #7a5700;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
}
|
||||
.update-notice a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.period-today td {
|
||||
background: #eef4ff;
|
||||
font-weight: 600;
|
||||
}
|
||||
.period-today td:first-child {
|
||||
color: #0f3460;
|
||||
}
|
||||
.period-gestern td {
|
||||
background: #f0faf3;
|
||||
font-weight: 600;
|
||||
}
|
||||
.period-gestern td:first-child {
|
||||
color: #27ae60;
|
||||
}
|
||||
@media (max-width: 700px) {
|
||||
table { font-size: 12px; }
|
||||
th, td { padding: 8px 8px; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -234,6 +274,11 @@
|
||||
|
||||
<!-- Statistik-Übersicht -->
|
||||
<div class="content">
|
||||
<!-- Zeitraum-Schnellübersicht -->
|
||||
<h2>📅 Zeitraum-Schnellübersicht</h2>
|
||||
{{PERIOD_OVERVIEW_TABLE}}
|
||||
|
||||
<!-- Gesamt-Übersicht des Berichtszeitraums -->
|
||||
<h2>📊 Übersicht</h2>
|
||||
<div class="stats-grid">
|
||||
<div class="stat-card danger">
|
||||
@@ -302,16 +347,23 @@
|
||||
|
||||
<!-- Footer -->
|
||||
<div class="footer">
|
||||
<div class="links">
|
||||
<span>
|
||||
<a href="https://www.patrick-asmus.de">Patrick-Asmus.de</a>
|
||||
<span class="separator">|</span>
|
||||
<a href="https://www.cleveradmin.de">CleverAdmin.de</a>
|
||||
</span>
|
||||
<span>
|
||||
<a href="https://git.techniverse.net/scriptos/adguard-shield.git">AdGuard Shield auf Gitea</a>
|
||||
<span class="separator">|</span>
|
||||
<a href="https://git.techniverse.net/scriptos/adguard-shield/src/branch/main/docs">docs</a>
|
||||
</span>
|
||||
</div>
|
||||
<br>
|
||||
Dieser Report wurde automatisch von <strong>AdGuard Shield</strong> generiert.<br>
|
||||
Generiert am: {{REPORT_DATE}}
|
||||
<div class="links">
|
||||
<a href="https://www.patrick-asmus.de">Patrick-Asmus.DE</a>
|
||||
<span class="separator">|</span>
|
||||
<a href="https://www.cleveradmin.de">CleverAdmin.DE</a>
|
||||
<span class="separator">|</span>
|
||||
<a href="https://git.techniverse.net/scriptos/adguard-shield.git">AdGuard Shield auf Gitea</a>
|
||||
</div>
|
||||
<div class="version-tag">AdGuard Shield {{VERSION}} · {{HOSTNAME}}</div>
|
||||
{{UPDATE_NOTICE}}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -7,7 +7,13 @@
|
||||
Host: {{HOSTNAME}}
|
||||
|
||||
───────────────────────────────────────────────────────────────
|
||||
📊 ÜBERSICHT
|
||||
<EFBFBD> ZEITRAUM-SCHNELLÜBERSICHT
|
||||
───────────────────────────────────────────────────────────────
|
||||
|
||||
{{PERIOD_OVERVIEW_TEXT}}
|
||||
|
||||
───────────────────────────────────────────────────────────────
|
||||
📊 ÜBERSICHT (Berichtszeitraum)
|
||||
───────────────────────────────────────────────────────────────
|
||||
|
||||
Sperren gesamt: {{TOTAL_BANS}}
|
||||
@@ -50,6 +56,7 @@
|
||||
|
||||
{{RECENT_BANS_TEXT}}
|
||||
|
||||
{{UPDATE_NOTICE_TXT}}
|
||||
═══════════════════════════════════════════════════════════════
|
||||
Dieser Report wurde automatisch von AdGuard Shield generiert.
|
||||
AdGuard Shield {{VERSION}}
|
||||
@@ -57,4 +64,5 @@
|
||||
Web: https://www.patrick-asmus.de
|
||||
Blog: https://www.cleveradmin.de
|
||||
Repo: https://git.techniverse.net/scriptos/adguard-shield.git
|
||||
Docs: https://git.techniverse.net/scriptos/adguard-shield/src/branch/main/docs
|
||||
═══════════════════════════════════════════════════════════════
|
||||
|
||||
Reference in New Issue
Block a user