Skip to content

Commit

Permalink
merged upstream/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ropnop committed Nov 13, 2020
2 parents ee860ff + d1ced94 commit 6af93ee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:2-alpine as compile
WORKDIR /opt
RUN apk add --no-cache git gcc openssl-dev libffi-dev musl-dev
RUN pip install virtualenv
RUN virtualenv -p python venv
ENV PATH="/opt/venv/bin:$PATH"
RUN git clone --depth 1 https://github.com/SecureAuthCorp/impacket.git
RUN pip install impacket/

FROM python:2-alpine
COPY --from=compile /opt/venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
ENTRYPOINT ["/bin/sh"]
1 change: 0 additions & 1 deletion impacket/examples/ntlmrelayx/servers/wcfrelayserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
# This is the WCF server (ADWS too) which relays the NTLMSSP messages to other protocols
# Only NetTcpBinding is supported!

# FIXME tester en python 2 !
# To support NetTcpBinding, this implements the ".NET Message Framing Protocol" [MC-NMF] and
# ".NET NegotiateStream Protocol" [MS-NNS]
# Thanks to inspiration from https://github.com/ernw/net.tcp-proxy/blob/master/nettcp/nmf.py
Expand Down

0 comments on commit 6af93ee

Please sign in to comment.