Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/tools/payloads/ysoserial/Dockerfile
Views: 11782
# A docker container to generate empty ysoserial payloads and metadata to allow for # dynamically creating payloads within related projects, such as Metasploit # # Created by: Aaron Soto, Rapid7 Metasploit Team, 2018-DEC-11 # # To run: # docker build -t ysoserial-payloads . && docker run -i ysoserial-payloads > ysoserial_offsets.json # # Note: There will be ruby gem errors. It's fine. # We attempt to use the ysoserial-modified fork, then fail back to the original ysoserial project. # You will see warnings, but we're doing our best. :-) FROM ubuntu:20.04 RUN apt update && apt -y upgrade # Dependencies: wget (to download ysoserial) # openjdk-8-jre-headless (to execute ysoserial) # make, gcc (to install the 'json' ruby gem) RUN apt install -y wget openjdk-8-jre-headless ruby-dev make gcc # Download the latest ysoserial, last tested on 2021-02-18 using commit d367e379d961c18bff28fd2c888a2c8fe0dc6e63 RUN wget -q https://jitpack.io/com/github/frohoff/ysoserial/master-SNAPSHOT/ysoserial-master-d367e379d9-1.jar -O ysoserial-original.jar # Download ysoserial-modified RUN wget -q https://github.com/pimps/ysoserial-modified/raw/1bd423d30ae87074f94d6b9b687c17162f122c3d/target/ysoserial-modified.jar # Install gems: diff-lcs v1.4.4 (to diff the ysoserial output) # json (to print the scripts results in JSON) # pry (to debug issues) RUN gem install --silent diff-lcs:1.4.4 json pry COPY find_ysoserial_offsets.rb / ENTRYPOINT ["ruby", "/find_ysoserial_offsets.rb"]