Miscellaneous

Your external IP address is:

44.202.90.91

ZeroBin

A self-hosted instance of ZeroBin, an encrypted PasteBin alternative.

XDCC parser

An XDCC parser based on XDCC Parser. More XDCC bots can easily be added to the list of parsed ones. Currently parsing one bot.

SSH tunneling

In PuTTY, Connection -> SSH -> Tunnels. Tick "Local ports accept connections from other hosts" and add a new forwarded source port, Dynamic type. Connect to your target and set SOCKS proxy in your browser to localhost:port.

LibreSonic install tips

Assuming Debian 8 stable.

sudo su
nano /etc/apt/sources.list

Add the following two lines to it:

# jessie backports
deb http://http.debian.net/debian jessie-backports main

Change tomcat8 port if necessary:

nano /var/lib/tomcat8/conf/server.xml

ctrl-w -> 8080 -> change to new port number

More shell pasting:

mkdir /var/libresonic/
apt-get install tomcat8 openjdk-8-jdk ffmpeg flac lame
chown tomcat8:tomcat8 /var/libresonic/
ln -s /usr/bin/ffmpeg /var/libresonic/transcode/ffmpeg
ln -s /usr/bin/flac /var/libresonic/transcode/flac
ln -s /usr/bin/lame /var/libresonic/transcode/lame
wget https://github.com/Libresonic/libresonic/releases/download/v6.1/libresonic-v6.1.war -O /var/lib/tomcat8/webapps/libresonic.war
exit

Access with IP_address:port/libresonic/ (the trailing slash is important)