This commit is contained in:
LordMZTE 2020-11-16 22:05:15 +01:00
commit 28f07b9e2e
3 changed files with 1824 additions and 0 deletions

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# grief
this repository contains a list of port scanned griefable minecraft servers. use `./next_serv.sh` in order to pop the next server of the list and ping it in order to get some information. the script requires [mcstat](https://github.com/LordMZTE/utils/tree/master/mcstat) to work.
feel free to create a PR removing servers that have been griefed

1813
grief_servers.txt Normal file

File diff suppressed because it is too large Load Diff

7
next_serv.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
SERV=$(head -n 1 grief_servers.txt)
echo $SERV
echo $SERV | clip
mcstat $SERV
sed -i '1d' grief_servers.txt
echo "$(cat grief_servers.txt | wc -l) servers left"