This file contains hidden or 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
| FROM python:2.7-alpine | |
| RUN apk --update --no-cache add \ | |
| zlib-dev \ | |
| musl-dev \ | |
| libc-dev \ | |
| gcc \ | |
| libffi-dev \ | |
| openssl-dev && \ | |
| rm -rf /var/cache/apk/* | |
| RUN mkdir -p /opt/impacket |
This file contains hidden or 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
| FROM nginx:stable | |
| RUN apt-get update && apt-get install -y openssl | |
| RUN mkdir -p /etc/nginx/ssl && mkdir -p /srv/data | |
| COPY default.conf /etc/nginx/conf.d/ | |
| COPY start.sh / | |
| ENTRYPOINT [ "/start.sh" ] |
This file contains hidden or 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
| FROM python:alpine | |
| RUN pip install wsgidav cheroot | |
| RUN mkdir -p /webdav/share && mkdir -p /srv/data/share | |
| COPY run.sh /webdav/ | |
| WORKDIR /webdav/ | |
| ENTRYPOINT "/webdav/run.sh" |
This file contains hidden or 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
| function dockershell() { | |
| docker run --rm -i -t --entrypoint=/bin/bash "$@" | |
| } | |
| function dockershellsh() { | |
| docker run --rm -i -t --entrypoint=/bin/sh "$@" | |
| } | |
| function dockershellhere() { | |
| dirname=${PWD##*/} |
This file contains hidden or 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
| package main | |
| /* | |
| Example Go program with multiple .NET Binaries embedded | |
| This requires packr (https://github.com/gobuffalo/packr) and the utility. Install with: | |
| $ go get -u github.com/gobuffalo/packr/packr | |
| Place all your EXEs are in a "binaries" folder |
OlderNewer