By state:
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 | |
port=$1 | |
ipv4=$2 | |
if [ $# -eq 2 ] | |
then | |
echo "sh tunneling.sh <port> <ipv4 address>" | |
fi |
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 | |
find . -mindepth 2 -type f -print -exec mv {} . \; |
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/sh | |
if [ $# -eq 0 ] | |
then | |
echo usage $0 files ... | |
exit 1 | |
fi | |
for file in "$@" | |
do |
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 | |
git clone https://github.com/inAudible-NG/tables.git | |
git clone https://github.com/KrumpetPirate/AAXtoMP3.git | |
wget http://project-rainbowcrack.com/rainbowcrack-1.7-linux64.zip | |
unzip rainbowcrack-1.7-linux64.zip | |
mv AAXtoMP3/* tables/ | |
mv rainbowcrack-1.7-linux64/* tables/ | |
mv <your_aax_file_name>.aax tables/ | |
cd tables |
NolaCon 2017 GBC04 EDNS Client Subnet ECS DNS CDN Magic or Secur Jim Nitterauer
archive.is not resolving under 1.1.1.1 Cloudflare DNS resolver
Resolving Google using two different IP address will provide two different results.
- dig +short @8.8.8.8 google.com +subnet=120.5.5.6
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 | |
# Find text in file | |
DIRECTORY=$1 | |
TXT=$2 | |
grep -rnw "$1" -e "$2" |
- SVM must be turned on in the BIOS.
On modern Linux distributions using systemd, you can go straight to the Firmware setup menu using:
systemctl reboot --firmware-setup
Documentation: https://www.freedesktop.org/software/systemd/man/systemctl.html#--firmware-setup
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 | |
set -eu | |
if [ $# -ne 1 ]; then | |
echo "Usage: $0 <password>" | |
exit 1 | |
fi | |
if command -v curl > /dev/null 2>&1 ; then |
OlderNewer