Make a new folder with docker, which contain 2 files, with this files we can run Hidden Eye in docker

This commit is contained in:
MoisesTapia 2020-07-25 22:01:11 -05:00
parent b13c9ffaee
commit 2e37712cf7
No known key found for this signature in database
GPG Key ID: BE22111DAB113FC3
3 changed files with 48 additions and 0 deletions

View File

@ -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"

17
Docker/Dockerfile Normal file
View File

@ -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

20
Docker/docker-compose.yml Normal file
View File

@ -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