This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hier findest du eine Auflistung von den Gutscheinen von ZapHosting Helloween 2020. | |
Diese Auflistung wird aktualisiert wenn neue gefunden werden. | |
https://zap-hosting.com/de/kuerbis-gefunden-4ebxbz/ | |
https://zap-hosting.com/en/pumpkin-found-gumnfj/ | |
https://zap-hosting.com/de/kuerbis-gefunden-n5vk50/ | |
https://zap-hosting.com/de/kuerbis-gefunden-rhaifd/ | |
https://zap-hosting.com/de/kuerbis-gefunden-g6pqwm/ | |
https://zap-hosting.com/de/kuerbis-gefunden-hqkvld/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$methods = ['retrieved', 'creating', 'created', 'updating', 'updated', | |
'saving', 'saved', 'restoring', 'restored', 'replicating', | |
'deleting', 'deleted', 'forceDeleted'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["0-mail.com","001.igg.biz","027168.com","0815.ru","0815.ru0clickemail.com","0815.ry","0815.su","0845.ru","0box.eu","0clickemail.com","0n0ff.net","0nelce.com","0sg.net","0v.ro","0w.ro","0wnd.net","0wnd.org","0x207.info","1-8.biz","10-minuten-mail.de","10.dns-cloud.net","1000rebates.stream","100likers.com","105kg.ru","10host.top","10mail.com","10mail.org","10minut.com.pl","10minut.xyz","10minutemail.be","10minutemail.cf","10minutemail.co.uk","10minutemail.co.za","10minutemail.com","10minutemail.de","10minutemail.eu","10minutemail.ga","10minutemail.gq","10minutemail.info","10minutemail.ml","10minutemail.net","10minutemail.nl","10minutemail.org","10minutemail.pro","10minutemail.ru","10minutemail.us","10minutemailbox.com","10minutemails.in","10minutenemail.de","10minutesmail.co.uk","10minutesmail.com","10minutesmail.eu","10minutesmail.fr","10minutesmail.net","10minutesmail.org","10minutesmail.ru","10minutesmail.us","10minutmail.pl","10x9.com","11163.com","117.yyolf.net","123-m.com","123.dns-cloud.net","126.com"," |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
r="\033[31m" | |
gr="\033[32m" | |
w="\033[37m" | |
echo "" | |
echo -e "\e[1mScript coded by server-installer.de - \e[93mSaveCode \e[0m" | |
sleep 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HOW TO RESIZE DISK IF U STUPID AND INSTALL LINUX BY HAND | |
- swapoff -a | |
- /etc/fstab > comment the uuid with swap | |
- /etc/initramfs-tools/conf.d/resume > RESUME=none | |
- delete swap partitions with parted | |
- update-initramfs -u -k all | |
- update-grub | |
- resize2fs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt install apt-transport-https ca-certificates wget dirmngr gnupg software-properties-common -y | |
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - | |
add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ | |
apt update -y | |
apt install adoptopenjdk-8-hotspot -y | |
clear | |
java -version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -z "$1" ] || [ -z "$2" ] | |
then | |
echo "workupload_download.sh <workupload id> <output file name>" | |
exit 1 | |
fi | |
echo "Getting download url from workupload servers" | |
URL="$(curl -s "https://workupload.com/api/file/getDownloadServer/$1" | \python -c "import sys, json; print(json.load(sys.stdin)['data']['url'])")" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
exec("cd ../.. && ls", $output); | |
foreach(json_decode(json_encode($output)) as $dir){ | |
echo '<a href="http://'.$dir.'">'.$dir.'</a><br>'; | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt install sudo -y | |
sudo apt install apt-transport-https dirmngr gnupg ca-certificates -y | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list | |
sudo apt update | |
sudo apt install mono-complete -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Secure OpenVPN server installer for Debian, Ubuntu, CentOS and Arch Linux | |
# https://github.com/Angristan/OpenVPN-install | |
if [[ "$EUID" -ne 0 ]]; then | |
echo "Sorry, you need to run this as root" | |
exit 1 | |
fi |