-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
891 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
ruby 3.0.1 | ||
nodejs 14.17.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Official verified image | ||
FROM ruby:3.0.3-alpine3.15 | ||
|
||
# Remote git repository <-> Remote container registry | ||
LABEL org.opencontainers.image.source https://github.com/noraj/ctf-party | ||
# Other metadata | ||
LABEL org.opencontainers.image.authors "noraj (Alexandre ZANNI)" | ||
LABEL org.opencontainers.image.documentation https://noraj.github.io/ctf-party/ | ||
LABEL org.opencontainers.image.licenses MIT | ||
LABEL org.opencontainers.image.description "A CLI tool & library to enhance and speed up script/exploit writing with string conversion/manipulation." | ||
|
||
ARG CTF_PARTY_VERSION | ||
LABEL org.opencontainers.image.version $CTF_PARTY_VERSION | ||
|
||
## INSTALL ## | ||
# Install the app | ||
RUN gem install ctf-party -v $CTF_PARTY_VERSION --no-document | ||
|
||
## BUILD ## | ||
|
||
# drop privileges | ||
RUN adduser -s /bin/true -u 1337 -D -H noraj | ||
USER noraj | ||
|
||
CMD ["/usr/local/bundle/bin/ctf-party_console"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
ctf-party (1.5.0) | ||
ctf-party (2.0.0) | ||
docopt (~> 0.6) | ||
|
||
GEM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Author: noraj | ||
version: '3' | ||
services: | ||
ctf-party: | ||
image: noraj/ctf-party:2.0.0 | ||
user: noraj | ||
container_name: ctf-party | ||
read_only: false | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
args: | ||
CTF_PARTY_VERSION: 2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.