Using tinc with iproute2

I’ve been running a TINC VPN for about 3 years now and lately came to the decision to improve my setup. One thing I came across was that all my scripts were using net-tools in their tinc-up and tinc-down scripts, meaning commands such as ifconfig etc.. As I enjoy working with iproute2 it was time for me to make the switch. #!/bin/sh # tinc-up ip tuntap add dev $INTERFACE mode tun ip addr add 10.0.0.1/24 dev $INTERFACE ip link set $INTERFACE up And of course: ...

October 17, 2015 · 1 min · Moritz Frenzel

A small writeup on CVE-2013-3572

Quite a while ago I got to toy around with some ubiquiti UAP Pros, awesome, cheap, performant WiFi Access Points. As I missed the last train home from my hackerspace I began to toy around, always on the hunt for a little exploit. Webinterface Exploits(XSS, SQL Injections or what so ever) were easily found, but that’s not what I was looking for. Everyone can do that. The goal was to find something nobody has done before. So, as I came across the users tab, I noticed the following: ...

February 26, 2014 · 2 min · Moritz Frenzel