diff --git a/README.md b/README.md index 8c92bcd..58691b4 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,27 @@ # Infosec-Cheatsheets -If you want to data horde the rabbit hole of knowledge this provides then `git clone --recursive --jobs 8 https://github.com/FalsePhilosopher/Infosec-Cheatsheets` it's about 12GB.
-To update them all `git submodule update --init --recursive --remote --rebase` +If you want to data horde the rabbit hole of knowledge this provides then +``` +git clone --recursive --jobs 8 https://github.com/FalsePhilosopher/Infosec-Cheatsheets +``` +it's about 12GB in total. -Alternatively for those on restricted data bandwidth and/or data limits, I have provided snapshot releases with a spilt zstd compressed archive that can be downloaded and extracted quickly on all cores providing a significant reduction in bandwidth(12GB with the .get folder, stripped/compressed to 2.4GB). It temporarily requires 9.5GB HD space for the archive+files ending with 6.9GB in total. The split archives can be pulled, reconstructed, extracted, and BLAKE2 checked with this one liner. +To update them all. +``` +git submodule update --init --recursive --remote --rebase` +``` +Alternatively for those on restricted data bandwidth and/or data limits, I have provided snapshot releases with a spilt zstd compressed archive that can be downloaded and extracted quickly on all cores providing a significant reduction in bandwidth(12GB with the .get folder, stripped/compressed to 2.4GB). It temporarily requires 9.5GB HD space for the archive+files ending with 6.9GB in total. The split archives can be pulled, reconstructed, extracted, and BLAKE2 checked with +``` +cd /tmp/ +gh release download -p 'Infosec-Cheatsheets.tar.zst*' -R FalsePhilosopher/Infosec-Cheatsheets +cat /tmp/Infosec-Cheatsheets.tar.zst* > /tmp/Infosec-Cheatsheets.tar.zst +rm Infosec-Cheatsheets.tar.zsta* +tar --use-compress-program "zstd -d -T0" -xvf "Infosec-Cheatsheets.tar.zst" --directory $HOME/Downloads +rm Infosec-Cheatsheets.tar.zst +cd $HOME/Downloads/Infosec-Cheatsheets/ +b2sum -oRESULTS -c $HOME/Downloads/Infosec-Cheatsheets/BLAKE2SUMS && echo "ALL OK" || echo "WOW! Something fishy's going on" +``` +Or use this one liner. ``` wget -q -O - https://raw.githubusercontent.com/FalsePhilosopher/Infosec-Cheatsheets/refs/heads/main/zst.sh | bash ```