huge commit
This commit is contained in:
1
2026/cscg/misc/path-of-the-blacksmith/.gitignore
vendored
Normal file
1
2026/cscg/misc/path-of-the-blacksmith/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exploit/booktrolling
|
||||
27
2026/cscg/misc/path-of-the-blacksmith/Dockerfile
Normal file
27
2026/cscg/misc/path-of-the-blacksmith/Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
FROM ubuntu:noble-20251013@sha256:4fdf0125919d24aec972544669dcd7d6a26a8ad7e6561c73d5549bd6db258ac2
|
||||
|
||||
ADD --chmod=0755 --checksum=sha256:c125df9762b0c7233459087bb840c0e5dbfc4d9690ee227f1ed8994f4d51d2e0 \
|
||||
https://raw.githubusercontent.com/reproducible-containers/repro-sources-list.sh/v0.1.4/repro-sources-list.sh \
|
||||
/usr/local/bin/repro-sources-list.sh
|
||||
|
||||
RUN \
|
||||
--mount=type=cache,target=/var/cache/apt,sharing=locked \
|
||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
||||
/usr/local/bin/repro-sources-list.sh && \
|
||||
apt-get update && apt-get install -y \
|
||||
make xz-utils gcc unzip file default-jre
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ADD --chmod=0666 --checksum=sha256:74e3a26c32a09dcbb213aec27a107467739e27b12dbe82b1a3e7a4b7d059c730 \
|
||||
https://fill-data.papermc.io/v1/objects/74e3a26c32a09dcbb213aec27a107467739e27b12dbe82b1a3e7a4b7d059c730/paper-1.21.10-129.jar \
|
||||
/app/paper.jar
|
||||
|
||||
COPY eula.txt server.properties .
|
||||
COPY backup_manager-0.1.jar plugins/backup_manager.jar
|
||||
ADD --chmod=0755 run.sh .
|
||||
ADD --chmod=0444 flag.txt .
|
||||
|
||||
EXPOSE 25565
|
||||
|
||||
CMD ["/app/run.sh"]
|
||||
BIN
2026/cscg/misc/path-of-the-blacksmith/backup_manager-0.1.jar
Normal file
BIN
2026/cscg/misc/path-of-the-blacksmith/backup_manager-0.1.jar
Normal file
Binary file not shown.
1
2026/cscg/misc/path-of-the-blacksmith/eula.txt
Normal file
1
2026/cscg/misc/path-of-the-blacksmith/eula.txt
Normal file
@@ -0,0 +1 @@
|
||||
eula=true
|
||||
1
2026/cscg/misc/path-of-the-blacksmith/flag.txt
Normal file
1
2026/cscg/misc/path-of-the-blacksmith/flag.txt
Normal file
@@ -0,0 +1 @@
|
||||
CSCG{FAKE_FLAG_FOR_TESTING}
|
||||
5
2026/cscg/misc/path-of-the-blacksmith/run.sh
Normal file
5
2026/cscg/misc/path-of-the-blacksmith/run.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
while [ true ]; do
|
||||
java -Xms4096M -Xmx4096M --add-modules=jdk.incubator.vector -jar /app/paper.jar --nogui
|
||||
done
|
||||
67
2026/cscg/misc/path-of-the-blacksmith/server.properties
Normal file
67
2026/cscg/misc/path-of-the-blacksmith/server.properties
Normal file
@@ -0,0 +1,67 @@
|
||||
accepts-transfers=false
|
||||
allow-flight=true
|
||||
broadcast-console-to-ops=true
|
||||
broadcast-rcon-to-ops=true
|
||||
bug-report-link=
|
||||
debug=false
|
||||
difficulty=easy
|
||||
enable-code-of-conduct=false
|
||||
enable-jmx-monitoring=false
|
||||
enable-query=false
|
||||
enable-rcon=false
|
||||
enable-status=true
|
||||
enforce-secure-profile=true
|
||||
enforce-whitelist=false
|
||||
entity-broadcast-range-percentage=100
|
||||
force-gamemode=false
|
||||
function-permission-level=2
|
||||
gamemode=survival
|
||||
generate-structures=true
|
||||
generator-settings={}
|
||||
hardcore=false
|
||||
hide-online-players=false
|
||||
initial-disabled-packs=
|
||||
initial-enabled-packs=vanilla
|
||||
level-name=world
|
||||
level-seed=
|
||||
level-type=minecraft\:normal
|
||||
log-ips=true
|
||||
management-server-enabled=false
|
||||
management-server-host=localhost
|
||||
management-server-port=0
|
||||
management-server-secret=LrK3aDMflULtrBr2QPqAM3hVBDP5nkbNmqDki1Pn
|
||||
management-server-tls-enabled=true
|
||||
management-server-tls-keystore=
|
||||
management-server-tls-keystore-password=
|
||||
max-chained-neighbor-updates=1000000
|
||||
max-players=5
|
||||
max-tick-time=60000
|
||||
max-world-size=29999984
|
||||
motd=Check out my new plugin!
|
||||
network-compression-threshold=256
|
||||
online-mode=false
|
||||
op-permission-level=4
|
||||
pause-when-empty-seconds=-1
|
||||
player-idle-timeout=0
|
||||
prevent-proxy-connections=false
|
||||
query.port=25565
|
||||
rate-limit=0
|
||||
rcon.password=
|
||||
rcon.port=25575
|
||||
region-file-compression=deflate
|
||||
require-resource-pack=false
|
||||
resource-pack=
|
||||
resource-pack-id=
|
||||
resource-pack-prompt=
|
||||
resource-pack-sha1=
|
||||
server-ip=
|
||||
server-port=25565
|
||||
simulation-distance=10
|
||||
spawn-protection=0
|
||||
status-heartbeat-interval=0
|
||||
sync-chunk-writes=true
|
||||
text-filtering-config=
|
||||
text-filtering-version=0
|
||||
use-native-transport=true
|
||||
view-distance=10
|
||||
white-list=false
|
||||
Reference in New Issue
Block a user