# | |
# Protocol options | |
# | |
Protocol 2 | |
Port 22 | |
AddressFamily inet | |
ListenAddress 0.0.0.0 | |
# | |
# Host Keys | |
# |
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 | |
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 |
There are so many times where it's useful to take a peek at a DHCP enabled network, without actually having to apply any of the connection settings offered. You don't need an active ip address for this to work as DHCP uses broadcasts.
$ sudo nmap --script broadcast-dhcp-discover --spoof-mac -n -e eth1
Starting Nmap 6.47 ( http://nmap.org ) at 2018-02-10 08:17 UTC
Spoofing MAC address 00:01:BA:48:7C:24 (IC-Net)
net.ipv4.tcp_syncookies = 1 | |
net.ipv4.tcp_rfc1337 = 1 | |
net.ipv4.conf.default.rp_filter = 1 | |
net.ipv4.conf.all.rp_filter = 1 | |
net.ipv4.icmp_echo_ignore_broadcasts = 1 | |
net.ipv4.icmp_ignore_bogus_error_responses = 1 | |
net.ipv4.conf.all.send_redirects = 0 | |
net.ipv4.conf.default.accept_redirects=0 | |
net.ipv4.conf.all.accept_redirects=0 | |
net.ipv6.conf.default.accept_redirects=0 |
# !/bin/bash | |
function windir() { | |
echo "/mnt/$1" | sed -e 's/\\\\/\//g' -e 's/\b\(.\):/\L\1/g' | |
} |
dig +short `curl --silent ipecho.net/plain | awk -F. '{print $4"."$3"." $2"."$1}'`.origin.asn.cymru.com TXT
rohan@vm01:~$ dig +short `curl --silent ipecho.net/plain | awk -F. '{print $4"."$3"." $2"."$1}'`.origin.asn.cymru.com TXT
"46652 | 67.205.128.0/20 | US | arin | 2016-04-12"
rohan@vm01:~$
Principles of Adult Behavior
- Be patient. No matter what.
- Don’t badmouth: Assign responsibility, not blame. Say nothing of another you wouldn’t say to him.
- Never assume the motives of others are, to them, less noble than yours are to you.
- Expand your sense of the possible.
- Don’t trouble yourself with matters you truly cannot change.
- Expect no more of anyone than you can deliver yourself.
- Tolerate ambiguity.
- Laugh at yourself frequently.