Skip to content

Commit

Permalink
Merge pull request #1 from BuffaloWill/master
Browse files Browse the repository at this point in the history
merge with upstream
  • Loading branch information
nytr0gen authored Mar 11, 2021
2 parents 72c4e1a + 6fdac34 commit ab48560
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
source 'https://rubygems.org'

ruby "2.3.5"
ruby "2.6.2"

# Dependencies at Oct 31, 2017
gem 'sinatra', '1.4.8'
gem 'haml'
gem 'rubyzip'
gem 'haml', '5.0.4' # October 13, 2017 - https://rubygems.org/gems/haml/versions
gem 'rubyzip', '1.2.1' # February 08, 2017 - https://rubygems.org/gems/rubyzip/versions
gem 'json','1.8.6'
gem 'nokogiri'
gem 'nokogiri', '1.8.1' # September 19, 2017 - https://rubygems.org/gems/nokogiri/versions
gem 'data_mapper', '1.2.0'
gem 'dm-sqlite-adapter', '1.2.0'

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Archived

This project is archived. If someone has a working and _maintained_ fork please let me know and I will point people there. Thank you to all of you. This was a fun project and a technique that yieled (and still yields) interesting research.

# oxml_xxe
This tool is meant to help test XXE vulnerabilities in ~~OXML document~~ file formats. Currently supported:

Expand Down
5 changes: 2 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.3.5-slim
FROM ruby:2.6.2-slim
RUN apt-get update && \
apt-get install -y make git libsqlite3-dev libxslt-dev libxml2-dev zlib1g-dev gcc && \
apt-get clean
Expand All @@ -7,5 +7,4 @@ RUN git clone --depth=1 https://github.com/BuffaloWill/oxml_xxe.git /oxml_xxe &&
bundle install
WORKDIR /oxml_xxe
EXPOSE 4567
ENTRYPOINT ["ruby", "server.rb"]
CMD ["-o", "0.0.0.0"]
ENTRYPOINT ["ruby", "server.rb", "-o", "0.0.0.0"]

0 comments on commit ab48560

Please sign in to comment.