Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d302060e4b | ||
|
|
ab73eb2ebb | ||
|
|
12823249aa |
@@ -15,11 +15,20 @@
|
|||||||
# removed.
|
# removed.
|
||||||
items: [3333, 3334, 4444, 5555, 5556, 7777, 8888, 9999, 14444]
|
items: [3333, 3334, 4444, 5555, 5556, 7777, 8888, 9999, 14444]
|
||||||
|
|
||||||
|
# Loopback exclusion added 2026-08-25: some unidentified host-level process
|
||||||
|
# connects to ::1:8888 roughly once a day (confirmed 5x over 2026-08-20 to
|
||||||
|
# 2026-08-25, always ~21:3x, always container=host, always failing instantly
|
||||||
|
# since nothing listens on 8888 - falco loses process metadata for it before
|
||||||
|
# it can be identified). A real mining pool is by definition a remote
|
||||||
|
# server, so loopback destinations can never be genuine pool traffic - this
|
||||||
|
# is a false positive in the rule's design (any port 8888 connection, not
|
||||||
|
# just remote ones), not a tuned-out exception for a known process.
|
||||||
- rule: Detect outbound connection to common miner pool port
|
- rule: Detect outbound connection to common miner pool port
|
||||||
desc: Outbound connection to a TCP port commonly used by cryptomining pools.
|
desc: Outbound connection to a TCP port commonly used by cryptomining pools.
|
||||||
condition: >
|
condition: >
|
||||||
outbound and evt.type in (connect, sendto, sendmsg)
|
outbound and evt.type in (connect, sendto, sendmsg)
|
||||||
and fd.rport in (miner_pool_ports)
|
and fd.rport in (miner_pool_ports)
|
||||||
|
and not (fd.rip in ("127.0.0.1", "::1"))
|
||||||
output: >
|
output: >
|
||||||
Outbound connection to common miner-pool port
|
Outbound connection to common miner-pool port
|
||||||
(user=%user.name command=%proc.cmdline connection=%fd.name
|
(user=%user.name command=%proc.cmdline connection=%fd.name
|
||||||
|
|||||||
@@ -66,26 +66,46 @@ services:
|
|||||||
# restart: unless-stopped
|
# restart: unless-stopped
|
||||||
# mem_limit: 2g
|
# mem_limit: 2g
|
||||||
|
|
||||||
create:
|
# create:
|
||||||
|
# image: itzg/minecraft-server:latest
|
||||||
|
# container_name: minecraft-create
|
||||||
|
# ports:
|
||||||
|
# - "55567:25565"
|
||||||
|
# environment:
|
||||||
|
# EULA: "true"
|
||||||
|
# TYPE: "AUTO_CURSEFORGE"
|
||||||
|
# CF_API_KEY: "${CF_API_KEY}"
|
||||||
|
# CF_SLUG: "create-olympicjumperl"
|
||||||
|
# CF_MODPACK_ZIP: "/modpack.zip"
|
||||||
|
# SERVER_NAME: "Create SMP"
|
||||||
|
# SEED: "-1307549829135522678"
|
||||||
|
# MODE: "survival"
|
||||||
|
# OPS: "Jimcognito,OlympicJumperL"
|
||||||
|
# ENFORCE_SECURE_PROFILE: "false"
|
||||||
|
# MEMORY: "4G"
|
||||||
|
# volumes:
|
||||||
|
# - /srv/minecraft-create:/data
|
||||||
|
# - /mnt/nas_projects/Create-OlympicJumperL-2026-08-20.zip:/modpack.zip:ro
|
||||||
|
# stdin_open: true
|
||||||
|
# tty: true
|
||||||
|
# restart: unless-stopped
|
||||||
|
# mem_limit: 6g
|
||||||
|
|
||||||
|
survival:
|
||||||
image: itzg/minecraft-server:latest
|
image: itzg/minecraft-server:latest
|
||||||
container_name: minecraft-create
|
container_name: minecraft-survival
|
||||||
ports:
|
ports:
|
||||||
- "55567:25565"
|
- "55567:25565"
|
||||||
environment:
|
environment:
|
||||||
EULA: "true"
|
EULA: "true"
|
||||||
TYPE: "AUTO_CURSEFORGE"
|
SERVER_NAME: "Survival SMP"
|
||||||
CF_API_KEY: "${CF_API_KEY}"
|
SEED: "-1102400853764765851"
|
||||||
CF_SLUG: "create-olympicjumperl"
|
|
||||||
CF_MODPACK_ZIP: "/modpack.zip"
|
|
||||||
SERVER_NAME: "Create SMP"
|
|
||||||
SEED: "-1307549829135522678"
|
|
||||||
MODE: "survival"
|
MODE: "survival"
|
||||||
OPS: "Jimcognito,OlympicJumperL"
|
OPS: "Jimcognito,OlympicJumperL"
|
||||||
ENFORCE_SECURE_PROFILE: "false"
|
ENFORCE_SECURE_PROFILE: "false"
|
||||||
MEMORY: "4G"
|
MEMORY: "4G"
|
||||||
volumes:
|
volumes:
|
||||||
- /srv/minecraft-create:/data
|
- /srv/minecraft-survival:/data
|
||||||
- /mnt/nas_projects/Create-OlympicJumperL-2026-08-20.zip:/modpack.zip:ro
|
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|||||||
Reference in New Issue
Block a user