2022-07-16 19:40:48 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-17 02:28:10 -04:00
|
|
|
#Docker and OCI Hardening
|
2022-07-17 20:25:06 -04:00
|
|
|
echo "Fetching and Modifying the Docker and OCI Hardening post"
|
2022-10-17 05:30:43 -04:00
|
|
|
rm -rf './content/posts/linux/Docker and OCI Hardening.md'
|
|
|
|
curl https://raw.githubusercontent.com/Wonderfall/wonderfall.github.io/main/content/posts/docker-hardening.md -o './content/posts/linux/Docker and OCI Hardening.md'
|
|
|
|
sed -i 's/title:.*/title: "Docker and OCI Hardening"/' './content/posts/linux/Docker and OCI Hardening.md'
|
|
|
|
sed -i '/draft:.*/d' './content/posts/linux/Docker and OCI Hardening.md'
|
2022-10-17 19:21:25 -04:00
|
|
|
sed -i "s/tags:.*/tags: ['Applications', 'Linux', 'Containers', 'Security']/" './content/posts/linux/Docker and OCI Hardening.md'
|
2022-10-17 05:30:43 -04:00
|
|
|
sed -i '/^tags:.*/a ShowCanonicalLink: true' './content/posts/linux/Docker and OCI Hardening.md'
|
|
|
|
sed -i '/^tags:.*/a canonicalURL: https://wonderfall.dev/docker-hardening/' './content/posts/linux/Docker and OCI Hardening.md'
|
|
|
|
sed -i '/^tags:.*/a author: Wonderfall' './content/posts/linux/Docker and OCI Hardening.md'
|
2022-07-17 03:04:46 -04:00
|
|
|
|
|
|
|
#Securing OpenSSH with FIDO2
|
2022-07-17 20:25:06 -04:00
|
|
|
echo "Fetching and Modifying the OpenSSH with FIDO2 Hardening post"
|
2022-10-17 14:47:02 -04:00
|
|
|
rm -rf './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
2022-10-17 05:30:43 -04:00
|
|
|
curl https://raw.githubusercontent.com/Wonderfall/wonderfall.github.io/main/content/posts/openssh-fido2.md -o './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
|
|
|
sed -i 's/title:.*/title: "Securing OpenSSH with FIDO2"/' './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
|
|
|
sed -i '/draft:.*/d' './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
|
|
|
sed -i "s/tags:.*/tags: ['Operating Systems', 'Linux', 'Security']/" './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
|
|
|
sed -i '/^tags:.*/a ShowCanonicalLink: true' './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
|
|
|
sed -i '/^tags:.*/a canonicalURL: https://wonderfall.dev/openssh-fido2/' './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
|
|
|
sed -i '/^tags:.*/a author: Wonderfall' './content/posts/linux/Securing OpenSSH with FIDO2.md'
|
2022-07-23 04:54:52 -04:00
|
|
|
|
|
|
|
# Blogs by Rohan Kumar (a.k.a Seirdy) currently need to be manually ported, as he uses a lot of HTML inside of the source instead of just markdown.
|
2022-08-16 01:40:27 -04:00
|
|
|
# His GitHub repo: https://github.com/Seirdy/seirdy.one
|
|
|
|
|
2022-09-09 03:04:50 -04:00
|
|
|
# Blogs by WfKe9vLwSvv7rN currently need to be manually ported, as he uses a lot of HTML inside of the source instead of just markdown.
|
2023-07-27 09:46:48 -04:00
|
|
|
# His GitLab repo: https://gitlab.com/WanderingComputerer/WanderingComputerer.gitlab.io/
|