diff --git a/Dockerfile b/Dockerfile index 93d5423..6747d07 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,6 @@ FROM python:3.11.10-bookworm WORKDIR /usr/src/app -COPY ./requirements.txt . RUN apt update RUN apt install -y iputils-ping RUN apt install -y dnsutils diff --git a/garfbot.py b/garfbot.py index 757d909..ecbdf8b 100644 --- a/garfbot.py +++ b/garfbot.py @@ -59,6 +59,14 @@ def is_private(target): except ValueError: if "crate.lan" in target.lower(): return True + if "crate.zip" in target.lower(): + return True + if "memtec.org" in target.lower(): + return True + if "crateit.net" in target.lower(): + return True + if "garfbot.art" in target.lower(): + return True return False