mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
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:
parent
b13c9ffaee
commit
2e37712cf7
11
Defs/FeatureManager/EmailManager/emailconfig.py
Normal file
11
Defs/FeatureManager/EmailManager/emailconfig.py
Normal 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
17
Docker/Dockerfile
Normal 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
20
Docker/docker-compose.yml
Normal 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
|
||||
|
Loading…
Reference in New Issue
Block a user