mfcuk
mfcuk copied to clipboard
Add link to docker container with mfcuk installed
Good initiative! Do you have a repository containing the Dockerfile of that image?
Unfortunately no, reinstalled my computer and never pushed to a public repo. Maybe i can look into creating a new one this weekend. Feel its a must so you know what you are downloading.
OK, then you can retrieve it from: https://imagelayers.io/?images=note89%2Frfid-forensics:latest
unknown instruction
MAINTAINER [email protected]
FROM scratch
MAINTAINER [email protected]
RUN echo "deb http://http.kali.org/kali sana main contrib non-free" > /etc/apt/sources.list && echo "deb-src http://http.kali.org/kali sana main contrib non-free" >> /etc/apt/sources.list && echo "deb http://security.kali.org/kali-security sana/updates main contrib non-free" >> /etc/apt/sources.list && echo "deb-src http://security.kali.org/kali-security sana/updates main contrib non-free" >> /etc/apt/sources.list
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update && apt-get -y dist-upgrade && apt-get clean
CMD "/bin/bash"
MAINTAINER Nils Eriksson <[email protected]>
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install kali-linux-rfid -y
RUN apt-get install git -y
RUN git clone https://github.com/zhovner/mfdread.git
RUN mv mfdread/mfdread.py /usr/bin/mfdread
RUN chmod a+x /usr/bin/mfdread