Skip to content

Instantly share code, notes, and snippets.

View rohan-molloy's full-sized avatar

Rohan rohan-molloy

View GitHub Profile
curl --silent https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts | grep '^0\.0\.0\.0' | awk '{print "local-zone: \""$2"\" refuse"}' | sort
SOCKSPort 9050
TransPort 9040
VirtualAddrNetworkIPv4 10.192.0.0/10
AutomapHostsOnResolve 1
DNSPort 5353
printf "{\n\"Total\":\"%s\",\n\"Used\":\"%s\",\n\"Free\":\"%s\",\n\"Shared\":\"%s\",\n\"Buffered\":\"%s\",\n\"Available\":\"%s\"\n}\n" $(free -ht | tail -n+2 | grep Mem: | awk '{print $2,$3,$4,$5,$6,$7}')
k=`for ((i=0; i != ${#key[@]}; i++)); do printf "\t\"${key[$i]}\":\""${value[$i]}"\",\n"; done`; echo "{"; echo "${k::-1}"; echo "}"
sudo tar -cvpz
--exclude=/proc \
--exclude=/tmp \
--exclude=/mnt \
--exclude=/dev \
--exclude=/sys \
--exclude=/run \
--exclude=/media \
--exclude=/var/log \
@rohan-molloy
rohan-molloy / Instance Metadata.md
Last active March 3, 2018 12:37
Instance Metadata

Cloud metadata

Many cloud providers such as Amazon AWS, Digitalocean and Vultr provide an instance metadata service.

Guest instances can discover their own parameters by accessing an API. By convention, this API is accessible from the address 169.254.169.254

To get the value of key 'k', we send an HTTP request to the relative location /$k If the key corresponds to a tuple, the request is rewritten to key/ which is an index. If no value or tuple exists, it simply returns not found

@rohan-molloy
rohan-molloy / dhcp-peek.md
Created February 10, 2018 08:27
take a peek at a DHCP enabled network, without actually having to apply any of the connection settings

Using Nmap to troubleshoot DHCP

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)
@rohan-molloy
rohan-molloy / Full backups with BusyBox Tar.md
Last active February 26, 2018 10:54
Full backups with BusyBox Tar

Full backup using Busybox tar

The version of tar supplied with Busybox has a slightly different syntax to the more familiar GNU tar. Let's look at how we can use BusyBox tar to do a full system backup.

tar cv -C / -X /tmp/exclude.list -f /tmp/backup.tar .

Let's break these options down

  • cv
    Tar is running in create mode, with verbosity enabled
@rohan-molloy
rohan-molloy / add-ssh-client-to-etc-hosts.md
Last active March 27, 2018 04:23
Automatically add connected ssh client to /etc/hosts

Warning: this is intended for WAN hosts who don't usually have concurrent ssh connections

Step one Ensure that an entry for ssh-client.local exists in /etc/hosts:

echo "0.0.0.0 ssh-client.local" >>/etc/hosts

Step two

Add chain named "WIRELESS_PRE" in the "raw" table
This is equivalent to running iptables -t raw -N WIRELESS_PRE

firewall-cmd --permanent --direct --add-chain ipv4 raw WIRELESS_PRE

Insert a rule at position 1 of the above chain
This is equivalent to iptables -t raw -I WIRELESS_PRE