This commit is contained in:
nihilist
2024-03-30 10:51:57 +01:00
parent 094b1be1a7
commit 30bb665f7a
5 changed files with 267 additions and 0 deletions
+74
View File
@@ -0,0 +1,74 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
- -------TRANSPARENCY REPORT---------
I am Nihilist, I am the owner of this private PGP key, of nihilism.network, of datura.network and of all of its subdomains, which are under my sole control.
Today is the Sat Mar 30 09:59:31 AM CET 2024, and the latest Monero block is 7109cdc1194b9e104ac227b49d85adeaf9e8bf52835924e00a6e80f1d0fe1ddd (checked on moneroexplorer.org),
This is the transparency report of the month:
My public PGP key is located at https://nihilism.network/nihilist.pubkey and can be used to verify this message
- --------NEWS OF THE MONTH---------
After recieving donations for my invidious service, i upgraded the datura server to a baremetal one, which costs 50eur monthly. Started installing fediverse services to promote decentralization (peertube, mastodon, and lemmy) will potentially allow invite-only registrations on those instances in the near future. Will see if i install more fediverse software or not. In any case, i plan to finish all of my anonymity tutorials in the upcoming month: https://blog.nihilism.network/servers/anon.html, in any case, good month so far as the only service interruptions were related to the tor node, which has now been degraded to a regular high-speed tor node, rather than an exit one. Server is currently paid up until May of this year thanks to the generous donators, THANKS ALL!
- --------SERVERSIDE REPORT---------
root@Belladona
- --------------
OS: Debian GNU/Linux 12 (bookworm) x86_64
Host: 1.0
Kernel: 6.1.0-18-amd64
Uptime: 16 days, 1 hour, 34 mins
Packages: 734 (dpkg)
Shell: zsh 5.9
Resolution: 1280x1024
CPU: AMD Ryzen 5 3600 (12) @ 3.600GHz
GPU: 2b:00.0 ASPEED Technology, Inc. ASPEED Graphics Family
Memory: 17336MiB / 64218MiB
2024-03-30
Database updated: 2024-03-30 09:55:00
enp41s0 since 2024-03-04
rx: 49.88 TiB tx: 35.54 TiB total: 85.43 TiB
monthly
rx | tx | total | avg. rate
------------------------+-------------+-------------+---------------
2024-03 49.88 TiB | 35.54 TiB | 85.43 TiB | 340.17 Mbit/s
------------------------+-------------+-------------+---------------
estimated 52.98 TiB | 37.75 TiB | 90.73 TiB |
daily
rx | tx | total | avg. rate
------------------------+-------------+-------------+---------------
yesterday 2.77 TiB | 2.27 TiB | 5.04 TiB | 512.74 Mbit/s
today 737.73 GiB | 659.95 GiB | 1.36 TiB | 336.30 Mbit/s
------------------------+-------------+-------------+---------------
estimated 1.74 TiB | 1.56 TiB | 3.30 TiB |
- ----------HOW TO VERIFY-----------
To verify this message, the procedure is as follows:
cd /tmp
wget https://nihilism.network/nihilist.pubkey
gpg --import nihilist.pubkey
wget https://nihilism.network/report.txt.asc -O - 2>/dev/null| gpg --verify
-----BEGIN PGP SIGNATURE-----
iQHOBAEBCgA4FiEEicNZ5BEAUKpb3eo+AoT/wnXQkxsFAmYH1IMaHG5paGlsaXN0
QG5paGlsaXNtLm5ldHdvcmsACgkQAoT/wnXQkxuo3wv+Ittv5HJ7N3Z5ANiN67ks
NZvQjT67XM0f1U3a5FkOy3d+Ylx27YN2VnnHUY7N7kPbmsylT6wdtM8iMHFmqQWZ
5sJo6qr2fM4atU4JNNoOqqxJwiBxelRIqboVaZLLr9KxQx2rKgsobboF28+42FJB
R6AVMRU8kgDa7qYUqV+mFnYeffm5aYOLw1zXQOJrlKtk4LcphTgDX7n1MoDm4rYY
EkU2+9WnZChdlpYDlNKJrIV9JPyWgZ2ZkqXgpPuqgCTfoVptTFR3zfmyGtxWuCDm
OzNqTDo4pFLbVhgA1WskkLCs0zDbrilykByySPp4IAaNbwnfeZULDe1kWK/yWzQB
5z/kQ/7zDr7KiqJFlVhRmUAbBXk6KvWGRgqU4yjQYGIYVhyQ4obsGR/aElnRwwpu
bui9iEMjmJbJaSU5Dg7YYc9x/8Kc54zkf6TG6qmciNvFDuY0OtHuGQPih4k38bZG
d6dortEkYfiX5u/4axA8BvDVNv/D9Cz3f7EF0rN0XOC3
=i63d
-----END PGP SIGNATURE-----
+46
View File
@@ -0,0 +1,46 @@
#!/bin/bash
# custom message
read -p "Enter custom message (latest news of the month, how things are now, and where we're going):" custom_msg
# gpg sign the message
######-----BEGIN PGP SIGNED MESSAGE-----
echo "-------TRANSPARENCY REPORT---------" > report.txt
echo "" >> report.txt
echo "I am Nihilist, I am the owner of this private PGP key, of nihilism.network, of datura.network and of all of its subdomains, which are under my sole control." >> report.txt
echo "Today is the $(date), and the latest Monero block is $(curl https://moneroexplorer.org/ 2>/dev/null | grep /tx/ | head -n1 | sed -E 's/.*\/tx\///gi' | sed -E 's/\">.*//gi') (checked on moneroexplorer.org)," >> report.txt
echo "This is the transparency report of the month:" >> report.txt
echo "My public PGP key is located at https://nihilism.network/nihilist.pubkey and can be used to verify this message" >> report.txt
echo "" >> report.txt
echo "--------NEWS OF THE MONTH---------" >> report.txt
echo "" >> report.txt
echo $custom_msg >> report.txt
echo "" >> report.txt
echo "--------SERVERSIDE REPORT---------" >> report.txt
echo "" >> report.txt
ssh datura /root/transparencyreport.sh >> report.txt
echo "" >> report.txt
echo "----------HOW TO VERIFY-----------" >> report.txt
echo "" >> report.txt
echo "To verify this message, the procedure is as follows:" >> report.txt
echo >> report.txt
echo "cd /tmp" >> report.txt
echo "wget https://nihilism.network/nihilist.pubkey" >> report.txt
echo "gpg --import nihilist.pubkey" >> report.txt
echo "wget https://nihilism.network/monthly_report.txt -O - 2>/dev/null| gpg --verify" >> report.txt
echo "wget https://datura.network/monthly_report.txt -O - 2>/dev/null| gpg --verify" >> report.txt
echo >> report.txt
echo "----------------------------------"
gpg -u nihilist@nihilism.network --clearsign report.txt
cp report.txt.asc $(date --iso-8601=date).txt
cat $(date --iso-8601=date).txt
rsync $(date --iso-8601=date).txt datura:/srv/datura.network/monthly_report.txt
rsync $(date --iso-8601=date).txt datura:/srv/datura.network/transparency/
rsync $(date --iso-8601=date).txt datura:/srv/nihilism.network/monthly_report.txt
rsync $(date --iso-8601=date).txt datura:/srv/nihilism.network/transparency/
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
gpg -u nihilist@nihilism.network --clearsign report.txt
cp report.txt.asc $(date --iso-8601=date).txt
cat $(date --iso-8601=date).txt
rsync $(date --iso-8601=date).txt datura:/srv/datura.network/monthly_report.txt
rsync $(date --iso-8601=date).txt datura:/srv/datura.network/transparency/
rsync $(date --iso-8601=date).txt datura:/srv/nihilism.network/monthly_report.txt
rsync $(date --iso-8601=date).txt datura:/srv/nihilism.network/transparency/
+57
View File
@@ -0,0 +1,57 @@
-------TRANSPARENCY REPORT---------
I am Nihilist, I am the owner of this private PGP key, of nihilism.network, of datura.network and of all of its subdomains, which are under my sole control.
Today is the Sat Mar 30 09:59:31 AM CET 2024, and the latest Monero block is 7109cdc1194b9e104ac227b49d85adeaf9e8bf52835924e00a6e80f1d0fe1ddd (checked on moneroexplorer.org),
This is the transparency report of the month:
My public PGP key is located at https://nihilism.network/nihilist.pubkey and can be used to verify this message
--------NEWS OF THE MONTH---------
After recieving donations for my invidious service, i upgraded the datura server to a baremetal one, which costs 50eur monthly. Started installing fediverse services to promote decentralization (peertube, mastodon, and lemmy) will potentially allow invite-only registrations on those instances in the near future. Will see if i install more fediverse software or not. In any case, i plan to finish all of my anonymity tutorials in the upcoming month: https://blog.nihilism.network/servers/anon.html, in any case, good month so far as the only service interruptions were related to the tor node, which has now been degraded to a regular high-speed tor node, rather than an exit one. Server is currently paid up until May of this year thanks to the generous donators, THANKS ALL!
--------SERVERSIDE REPORT---------
root@Belladona
--------------
OS: Debian GNU/Linux 12 (bookworm) x86_64
Host: 1.0
Kernel: 6.1.0-18-amd64
Uptime: 16 days, 1 hour, 34 mins
Packages: 734 (dpkg)
Shell: zsh 5.9
Resolution: 1280x1024
CPU: AMD Ryzen 5 3600 (12) @ 3.600GHz
GPU: 2b:00.0 ASPEED Technology, Inc. ASPEED Graphics Family
Memory: 17336MiB / 64218MiB
2024-03-30
Database updated: 2024-03-30 09:55:00
enp41s0 since 2024-03-04
rx: 49.88 TiB tx: 35.54 TiB total: 85.43 TiB
monthly
rx | tx | total | avg. rate
------------------------+-------------+-------------+---------------
2024-03 49.88 TiB | 35.54 TiB | 85.43 TiB | 340.17 Mbit/s
------------------------+-------------+-------------+---------------
estimated 52.98 TiB | 37.75 TiB | 90.73 TiB |
daily
rx | tx | total | avg. rate
------------------------+-------------+-------------+---------------
yesterday 2.77 TiB | 2.27 TiB | 5.04 TiB | 512.74 Mbit/s
today 737.73 GiB | 659.95 GiB | 1.36 TiB | 336.30 Mbit/s
------------------------+-------------+-------------+---------------
estimated 1.74 TiB | 1.56 TiB | 3.30 TiB |
----------HOW TO VERIFY-----------
To verify this message, the procedure is as follows:
cd /tmp
wget https://nihilism.network/nihilist.pubkey
gpg --import nihilist.pubkey
wget https://nihilism.network/report.txt.asc -O - 2>/dev/null| gpg --verify
+74
View File
@@ -0,0 +1,74 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
- -------TRANSPARENCY REPORT---------
I am Nihilist, I am the owner of this private PGP key, of nihilism.network, of datura.network and of all of its subdomains, which are under my sole control.
Today is the Sat Mar 30 09:59:31 AM CET 2024, and the latest Monero block is 7109cdc1194b9e104ac227b49d85adeaf9e8bf52835924e00a6e80f1d0fe1ddd (checked on moneroexplorer.org),
This is the transparency report of the month:
My public PGP key is located at https://nihilism.network/nihilist.pubkey and can be used to verify this message
- --------NEWS OF THE MONTH---------
After recieving donations for my invidious service, i upgraded the datura server to a baremetal one, which costs 50eur monthly. Started installing fediverse services to promote decentralization (peertube, mastodon, and lemmy) will potentially allow invite-only registrations on those instances in the near future. Will see if i install more fediverse software or not. In any case, i plan to finish all of my anonymity tutorials in the upcoming month: https://blog.nihilism.network/servers/anon.html, in any case, good month so far as the only service interruptions were related to the tor node, which has now been degraded to a regular high-speed tor node, rather than an exit one. Server is currently paid up until May of this year thanks to the generous donators, THANKS ALL!
- --------SERVERSIDE REPORT---------
root@Belladona
- --------------
OS: Debian GNU/Linux 12 (bookworm) x86_64
Host: 1.0
Kernel: 6.1.0-18-amd64
Uptime: 16 days, 1 hour, 34 mins
Packages: 734 (dpkg)
Shell: zsh 5.9
Resolution: 1280x1024
CPU: AMD Ryzen 5 3600 (12) @ 3.600GHz
GPU: 2b:00.0 ASPEED Technology, Inc. ASPEED Graphics Family
Memory: 17336MiB / 64218MiB
2024-03-30
Database updated: 2024-03-30 09:55:00
enp41s0 since 2024-03-04
rx: 49.88 TiB tx: 35.54 TiB total: 85.43 TiB
monthly
rx | tx | total | avg. rate
------------------------+-------------+-------------+---------------
2024-03 49.88 TiB | 35.54 TiB | 85.43 TiB | 340.17 Mbit/s
------------------------+-------------+-------------+---------------
estimated 52.98 TiB | 37.75 TiB | 90.73 TiB |
daily
rx | tx | total | avg. rate
------------------------+-------------+-------------+---------------
yesterday 2.77 TiB | 2.27 TiB | 5.04 TiB | 512.74 Mbit/s
today 737.73 GiB | 659.95 GiB | 1.36 TiB | 336.30 Mbit/s
------------------------+-------------+-------------+---------------
estimated 1.74 TiB | 1.56 TiB | 3.30 TiB |
- ----------HOW TO VERIFY-----------
To verify this message, the procedure is as follows:
cd /tmp
wget https://nihilism.network/nihilist.pubkey
gpg --import nihilist.pubkey
wget https://nihilism.network/report.txt.asc -O - 2>/dev/null| gpg --verify
-----BEGIN PGP SIGNATURE-----
iQHOBAEBCgA4FiEEicNZ5BEAUKpb3eo+AoT/wnXQkxsFAmYH1IMaHG5paGlsaXN0
QG5paGlsaXNtLm5ldHdvcmsACgkQAoT/wnXQkxuo3wv+Ittv5HJ7N3Z5ANiN67ks
NZvQjT67XM0f1U3a5FkOy3d+Ylx27YN2VnnHUY7N7kPbmsylT6wdtM8iMHFmqQWZ
5sJo6qr2fM4atU4JNNoOqqxJwiBxelRIqboVaZLLr9KxQx2rKgsobboF28+42FJB
R6AVMRU8kgDa7qYUqV+mFnYeffm5aYOLw1zXQOJrlKtk4LcphTgDX7n1MoDm4rYY
EkU2+9WnZChdlpYDlNKJrIV9JPyWgZ2ZkqXgpPuqgCTfoVptTFR3zfmyGtxWuCDm
OzNqTDo4pFLbVhgA1WskkLCs0zDbrilykByySPp4IAaNbwnfeZULDe1kWK/yWzQB
5z/kQ/7zDr7KiqJFlVhRmUAbBXk6KvWGRgqU4yjQYGIYVhyQ4obsGR/aElnRwwpu
bui9iEMjmJbJaSU5Dg7YYc9x/8Kc54zkf6TG6qmciNvFDuY0OtHuGQPih4k38bZG
d6dortEkYfiX5u/4axA8BvDVNv/D9Cz3f7EF0rN0XOC3
=i63d
-----END PGP SIGNATURE-----