first init

This commit is contained in:
nouri_a
2026-04-15 11:11:44 +03:30
parent f41bc57b71
commit 1bad6394d1
20 changed files with 2844 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM python:3.12-slim
LABEL maintainer="Rainman69"
LABEL description="SNISPF - Cross-platform DPI bypass tool"
WORKDIR /app
COPY pyproject.toml .
COPY sni_spoofing/ ./sni_spoofing/
COPY run.py .
COPY config.json .
COPY README.md .
COPY LICENSE .
RUN pip install --no-cache-dir -e .
EXPOSE 40443
ENTRYPOINT ["snispf"]
CMD ["--config", "config.json"]