diff --git a/Dark Web Hosting/deep_web_init.txt b/Dark_Web_Hosting/deep_web_init.txt similarity index 100% rename from Dark Web Hosting/deep_web_init.txt rename to Dark_Web_Hosting/deep_web_init.txt diff --git a/Dark Web Hosting/deep_web_init2.txt b/Dark_Web_Hosting/deep_web_init2.txt similarity index 100% rename from Dark Web Hosting/deep_web_init2.txt rename to Dark_Web_Hosting/deep_web_init2.txt diff --git a/Linux Servers/anti-ddos-rules.txt b/Linux-Servers/anti-ddos-rules.txt similarity index 100% rename from Linux Servers/anti-ddos-rules.txt rename to Linux-Servers/anti-ddos-rules.txt diff --git a/Linux Servers/apache_site_template.conf.txt b/Linux-Servers/apache_site_template.conf.txt similarity index 100% rename from Linux Servers/apache_site_template.conf.txt rename to Linux-Servers/apache_site_template.conf.txt diff --git a/Linux Servers/crontab.txt b/Linux-Servers/crontab.txt similarity index 100% rename from Linux Servers/crontab.txt rename to Linux-Servers/crontab.txt diff --git a/Linux Servers/init.txt b/Linux-Servers/init.txt similarity index 100% rename from Linux Servers/init.txt rename to Linux-Servers/init.txt diff --git a/Quick and Dirty Methods (Bash).md b/Quick-and-Dirty-Methods-Bash.md similarity index 100% rename from Quick and Dirty Methods (Bash).md rename to Quick-and-Dirty-Methods-Bash.md diff --git a/customscripts/NUKE_DOCKER_FROM_ORBIT.sh b/customscripts/NUKE_DOCKER_FROM_ORBIT.sh new file mode 100644 index 0000000..8226b7d --- /dev/null +++ b/customscripts/NUKE_DOCKER_FROM_ORBIT.sh @@ -0,0 +1,56 @@ +#!/bin/bash +checkcode () { + if [ -z "$1" ]; then + echo "Error! Use Checkcode like checkcode \$?" >&2 + exit 1 + fi + + retcode=$1 + + if [ ! $retcode -eq 0 ]; then + printf " \033[0;31mError Code: $retcode\033[0m\n" + else + printf " \033[0;32mOK!\033[0m\n" + fi + +} + +echo -e "\n\033[0;31mCRASHING DOCKER AND EVERYTHING IN IT WITH NO SURVIVORS\033[0m\n" + +echo -n "1/9: Stopping Docker... " +sudo docker stop $(sudo docker ps -a -q) >/dev/null 2>&1 +checkcode $? + +echo -n "2/9 Removing Docker Containers..." +sudo docker rm -v $(sudo docker ps -a -q) >/dev/null 2>&1 +checkcode $? + +echo -n "3/9 Removing Docker Images..." +sudo docker rmi $(sudo docker images -a -q) >/dev/null 2>&1 +checkcode $? + +echo -n "4/9 Removing Docker Volumes..." +sudo docker volume rm $(sudo docker volume ls -q) >/dev/null 2>&1 +checkcode $? + +echo -n "5/9 Removing Docker Networks..." +sudo docker network rm $(sudo docker network ls -q) >/dev/null 2>&1 +checkcode $? + +echo -n "6/9 Stopping Docker Daemon..." +sudo systemctl stop docker >/dev/null 2>&1 +checkcode $? + +echo -n "7/9 Disabling Docker Daemon Start At Boot..." +sudo systemctl disable docker >/dev/null 2>&1 +checkcode $? + +echo -n "8/9 Updating Package Repos..." +sudo apt update >/dev/null 2>&1 +checkcode $? + +echo -n "9/9 Removing and Purging docker.io and docker-compose" +sudo apt purge docker.io docker-compose -y >/dev/null 2>&1 +checkcode $? + +echo -e "\n\n\033[0;32mdonesies docker gone and purged\033[0m\n\n" \ No newline at end of file diff --git a/How to Secure Your Life (old)/How to Secure Your Life.docx b/old/How to Secure Your Life (old)/How to Secure Your Life.docx similarity index 100% rename from How to Secure Your Life (old)/How to Secure Your Life.docx rename to old/How to Secure Your Life (old)/How to Secure Your Life.docx diff --git a/How to Secure Your Life (old)/How to Secure Your Life.pdf b/old/How to Secure Your Life (old)/How to Secure Your Life.pdf similarity index 100% rename from How to Secure Your Life (old)/How to Secure Your Life.pdf rename to old/How to Secure Your Life (old)/How to Secure Your Life.pdf diff --git a/How to Secure Your Life (old)/How-to-Secure-Your-Life-Wiki.docx b/old/How to Secure Your Life (old)/How-to-Secure-Your-Life-Wiki.docx similarity index 100% rename from How to Secure Your Life (old)/How-to-Secure-Your-Life-Wiki.docx rename to old/How to Secure Your Life (old)/How-to-Secure-Your-Life-Wiki.docx diff --git a/New folder/file-to-base64-data-url.html b/old/New folder/file-to-base64-data-url.html similarity index 100% rename from New folder/file-to-base64-data-url.html rename to old/New folder/file-to-base64-data-url.html