Skip to content

Instantly share code, notes, and snippets.

View nautilus-hime's full-sized avatar

lsly nautilus-hime

View GitHub Profile
####
# much insipiration (and down right copy-paste) from https://github.com/g0tmi1k/os-scripts/blob/master/kali.sh)
####
# Update all the things
apt-get update
apt-get -y upgrade
apt-get -y dist-upgrade
# ssh new keys
@sygo
sygo / kali_setup.sh
Last active November 16, 2016 18:39
quick script that sources all my relevant gists, installs essential tools and configures stuff to look prettier
# Update all the things
apt-get update
apt-get -y upgrade
apt-get -y dist-upgrade
# ssh new keys
rm /etc/ssh/ssh_host_* && dpkg-reconfigure openssh-server
# modules, gems & such
apt-get install python.xlwt
@sygo
sygo / .screenrc
Last active November 16, 2016 18:39
screenrc
# status
hardstatus alwayslastline '%{= M} %H%{= G} %l %= %{= w}%-w%{+b r}%n*%t%{-b r}%{w}%+w %= %{c}%d %D %{B}%c '
hardstatus off
hardstatus alwayslastline
#scrollback goodness
defscrollback 5000
@sygo
sygo / conf.hexdump
Last active August 7, 2023 15:00
additions to the standard grc.conf (check the appropriate conf files for each command)
# offset
regexp=([0-9a-fA-F]{1,7})+
colours=bold red
count=once
======
# Hex Bytes %_p
regexp=\|.+?\|
colours=cyan
count=once
======