This file contains hidden or 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
#!/usr/bin/env bash | |
# execute testdns.sh | |
command -v bc > /dev/null || { echo "bc was not found. Please install bc."; exit 1; } | |
{ command -v drill > /dev/null && dig=drill; } || { command -v dig > /dev/null && dig=dig; } || { echo "dig was not found. Please install dnsutils."; exit 1; } | |
NAMESERVERS=`cat /etc/resolv.conf | grep ^nameserver | cut -d " " -f 2 | sed 's/\(.*\)/&#&/'` | |
PROVIDERS=" | |
1.1.1.1#cloudflare | |
4.2.2.1#level3 | |
8.8.8.8#google | |
9.9.9.9#quad9 |
This file contains hidden or 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 | |
## Guacamole v1.1.0 (Debian Burst) | |
# CS3 Group by Pedro C. aka s4ur0n | |
# @NN2ed_s4ur0n | |
# [email protected] | |
# | |
# | |
# Favorite tools | |
# |
This file contains hidden or 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 | |
/*************************************************************************/ | |
/* Copyright (c) 2020 by Alfonso Vivancos */ | |
/* Based on the work by Giovanni Derks (http://derks.me.uk/) */ | |
/* https://vivancos.eu */ | |
/* */ | |
/* This program is free software. You can redistribute it and/or modify */ | |
/* it under the terms of the GNU General Public License as published by */ | |
/* the Free Software Foundation; either version 2 of the License. */ | |
/*************************************************************************/ |