Skip to content

Commit 6af93ee

Browse files
committed
merged upstream/master
2 parents ee860ff + d1ced94 commit 6af93ee

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM python:2-alpine as compile
2+
WORKDIR /opt
3+
RUN apk add --no-cache git gcc openssl-dev libffi-dev musl-dev
4+
RUN pip install virtualenv
5+
RUN virtualenv -p python venv
6+
ENV PATH="/opt/venv/bin:$PATH"
7+
RUN git clone --depth 1 https://github.com/SecureAuthCorp/impacket.git
8+
RUN pip install impacket/
9+
10+
FROM python:2-alpine
11+
COPY --from=compile /opt/venv /opt/venv
12+
ENV PATH="/opt/venv/bin:$PATH"
13+
ENTRYPOINT ["/bin/sh"]

impacket/examples/ntlmrelayx/servers/wcfrelayserver.py

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
# This is the WCF server (ADWS too) which relays the NTLMSSP messages to other protocols
1818
# Only NetTcpBinding is supported!
1919

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

0 commit comments

Comments
 (0)