Skip to content

Commit b187215

Browse files
author
Louis Bettens
committed
init
0 parents  commit b187215

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

COPYING

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2+
Version 2, December 2004
3+
4+
Copyright (C) 2004 Sam Hocevar <[email protected]>
5+
6+
Everyone is permitted to copy and distribute verbatim or modified
7+
copies of this license document, and changing it is allowed as long
8+
as the name is changed.
9+
10+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
12+
13+
0. You just DO WHAT THE FUCK YOU WANT TO.
14+

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM python:3.10
2+
3+
COPY requirements.txt /root/requirements.txt
4+
RUN pip install -r /root/requirements.txt
5+
6+
# allow passwordless su
7+
RUN passwd -d root
8+
9+
RUN useradd -m polygl0t -s /bin/bash
10+
CMD su - polygl0t

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Handy container with CTF tools
2+
<a href="http://www.wtfpl.net/"><img
3+
src="http://www.wtfpl.net/wp-content/uploads/2012/12/wtfpl-badge-2.png"
4+
width="80" height="15" alt="WTFPL" /></a>

requirements.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pwntools
2+
3+
pycryptodome
4+
gmpy2
5+
fastecdsa
6+
7+
numpy
8+
galois

0 commit comments

Comments
 (0)