Author Archives: Nick

Some ‘security people are f*cking morons’ says Linus Torvalds
avatar

Posted in News, Security | Leave a comment

Count Number of Lines in a Visual Studio Project
avatar

This is a trick to count the number of lines of code written in a Visual Studio Project.  From a command prompt type the following command in the root of the directory: (dir -include *.cs,*.cpp,*.h,*.idl,*.asmx -recurse | select-string .).Count

Posted in News | Leave a comment

DUHK Crypto Attack Recovers Encryption Keys, Exposes VPN Connections, More
avatar

Posted in News, Security | Leave a comment

Project Fi Dialer Codes
avatar

Project Fi has some great features making it a good choice for use as you cellular provider. The only downside I have run into is sometimes the carrier switching doesn’t go as smoothly as you would like. That is where … Continue reading

Posted in News | Leave a comment

Using iptables to route OpenVPN traffic
avatar

To have your vpn traffic be able to reach the internet you just need to add the following iptable rules: iptables -A FORWARD -i tun0 -j ACCEPT iptables -A FORWARD -i tun0 -o eth0 -m state –state RELATED,ESTABLISHED -j ACCEPT iptables -A FORWARD … Continue reading

Posted in Arch, CentOS, Fedora, Guides, Linux, Networking | Tagged , | Leave a comment