I hereby claim:
- I am jsonmaur on github.
- I am jsonmaur (https://keybase.io/jsonmaur) on keybase.
- I have a public key whose fingerprint is 7B7F FA6B 4484 7938 3D38 E482 070B 00B2 5347 5CD6
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # network settings -> wifi -> advanced -> hardware | |
| # change "configure" to "manually". save & apply. | |
| # compare mac address to one you see in settings | |
| ifconfig en0 | grep ether | |
| # generate a new random one | |
| openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//' | |
| # set spoofed address (substitute with generated one from above) |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/.git/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/node_modules/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/_build/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/deps/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> |
| #/bin/bash | |
| URL=$1 | |
| ab -n 10000 -c 15 $URL |
| HOST_NAME="speed" | |
| TTL="300" | |
| CURRENT_IPS=($(cli53 export -f "cdn.test.com" | grep "speed.cdn.test.com" | awk '{print $5}')); | |
| for i in "${CURRENT_IPS[@]}"; do if [ $i != $PUBLIC_IP ]; then echo $i && IPCMD+=("$HOST_NAME $TTL A $i"); fi done | |
| /usr/local/bin/cli53 rrcreate --replace "cdn.test.com" "${IPCMD[@]}" |
| # persistence from usb stick | |
| mkdir -p /mnt/my_usb | |
| mount /dev/sdb3 /mnt/my_usb | |
| echo "/ union" > /mnt/my_usb/persistence.conf | |
| umount /dev/sdb3 && reboot | |
| # get wifi working | |
| apt-get update | |
| apt-get install -y linux-headers-$(uname -r) broadcom-sta-dkms |