forked from 1N3/Sn1per
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 1N3#190 from hariom282538/hariom282538
Dockerfile created
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM kalilinux/kali-linux-docker | ||
|
||
LABEL org.label-schema.name='Sn1per - Kali Linux' \ | ||
org.label-schema.description='Automated pentest framework for offensive security experts' \ | ||
org.label-schema.usage='https://github.com/1N3/Sn1per' \ | ||
org.label-schema.url='https://github.com/1N3/Sn1per' \ | ||
org.label-schema.vendor='https://xerosecurity.com' \ | ||
org.label-schema.schema-version='1.0' \ | ||
org.label-schema.docker.cmd.devel='docker run --rm -ti hariomv/sniper' \ | ||
MAINTAINER="Hariom Vashisth <[email protected]>" | ||
|
||
RUN echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" > /etc/apt/sources.list && \ | ||
echo "deb-src http://http.kali.org/kali kali-rolling main contrib non-free" >> /etc/apt/sources.list | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN set -x \ | ||
&& apt-get -yqq update \ | ||
&& apt-get -yqq dist-upgrade \ | ||
&& apt-get clean | ||
|
||
RUN \ | ||
apt-get --yes install git \ | ||
&& mkdir -p security \ | ||
&& cd security \ | ||
&& git clone https://github.com/1N3/Sn1per.git \ | ||
&& cd Sn1per \ | ||
&& ./install.sh | ||
|
||
CMD ["bash"] | ||
|