Skip to content

Instantly share code, notes, and snippets.

View rohan-molloy's full-sized avatar

Rohan rohan-molloy

View GitHub Profile
#! /bin/bash
primary="badnets"
ipset create $primary hash:net &>/dev/null
if [[ -z "$sets" ]]; then
sets=( firehol_level3 firehol_level2 firehol_level1 firehol_webclient );
fi
for s in "${sets[@]}"; do

Many-to-one Outbound Source NAT (IP Masquerade)

Allows a single globally routable address to be shared between multiple hosts on a network

This is one of the most frequently encountered type of NAT and is probably implemented on your home router.

When it sends out traffic, the router needs to change the source address from 192.168.1.x to whatever globally routable address is assigned on the "outside" interface. It needs to keep track of these egress translations so that it can direct the replies to the appropriate inside address.

1. Configure LAN interface

#! /bin/bash
ipset create badnets hash:net &>/dev/null
[[ -z "$sets" ]] && \
sets=( firehol_level3 firehol_level2 firehol_level1 firehol_webclient );
for s in "${sets[@]}"; do
wget -qO- "https://iplists.firehol.org/files/"$s".netset" | grep -v "^#" |\
while read entry; do

Generating a Self Signed Ceritifcate, key, and certificate signining requests all in one cmd

openssl req -new \
-sha256 -nodes \
-newkey rsa:4096 \
-keyout server.key \
-subj /CN=$(hostname)/ \

-x509 -days 365 \

#
# Protocol options
#
Protocol 2
Port 22
AddressFamily inet
ListenAddress 0.0.0.0
#
# Host Keys
#
(for ip in $(grep -E 'sshd.*Invalid' /var/log/auth.log |awk '{print $NF}');do
dig $(tac -s.<<<"$ip.")origin.asn.cymru.com +noedns +short txt|tr -d \";done)|sort -s -n -k 1,1
### Remove the last nchars from each line
truncateLines(){
d=`for ((i=1; i<=$nchars; i++)); do echo -n .; done`
sed 's/'$d'$//'
}

Basic

    Port 22
    AddressFamily inet

Host keys

    HostKey /etc/ssh/ssh_host_rsa_key
    HostKey /etc/ssh/ssh_host_ecdsa_key
    HostKey /etc/ssh/ssh_host_ed25519_key

Crypto

    Ciphers aes128-ctr,aes192-ctr,aes256-ctr

KexAlgorithms [email protected],diffie-hellman-group-exchange-sha256