File tree 2 files changed +13
-1
lines changed
impacket/examples/ntlmrelayx/servers
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change
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" ]
Original file line number Diff line number Diff line change 17
17
# This is the WCF server (ADWS too) which relays the NTLMSSP messages to other protocols
18
18
# Only NetTcpBinding is supported!
19
19
20
- # FIXME tester en python 2 !
21
20
# To support NetTcpBinding, this implements the ".NET Message Framing Protocol" [MC-NMF] and
22
21
# ".NET NegotiateStream Protocol" [MS-NNS]
23
22
# Thanks to inspiration from https://github.com/ernw/net.tcp-proxy/blob/master/nettcp/nmf.py
You can’t perform that action at this time.
0 commit comments