| Knock, Knock, Knockin' on EnGarde's Door (with FWKNOP) |
| Source: Linux Security.com - Posted by Eckie Silapaswang | |||
|
With this guide on FWKNOP by Eckie S. (one of our own), you are taken on an easy-to-follow process of securing your platform with your own client and server port knocking set-up. Installation, iptable Rules setup, configuring access for the client and server, and everything in between. Check it out!
The FireWall KNock Operator (fwknop) is an excellent port knocking implementation that combines encrypted port knocking with passive OS finger- printing. This makes it possible to define specifically which Linux systems are allowed access to your SSH server. fwknop combines its functionality with iptables rules and log messages to grant or deny access to the SSH daemon. This article will walk the reader through an EnGarde Secure Linux implementation of fwknop, from the initial iptables rules setup to the deployment of fwknop on both the server and client side. By the end of the article, the user will be able to explicitly shutdown all access to the EnGarde Secure Linux SSH daemon to only those with fwknop credentials. Prerequisites You will need:
Once you have all the above you may log in as root, transition over to sysadm_r, and disable SELinux: [spa_server]# newrole -r sysadm_rThroughout the HowTo, the server will be referred to as spa_server and the client as spa_client. Install fwknop EnGarde Secure Linux makes the installation of fwknop a breeze due to its Guardian Digital Secure Network (GDSN). You can install the package through the command line: [spa_server]# apt-get install fwknop...or login to WebTool and install the package from the WebTool GDSN interface. This should be repeated on the spa_client machine as well. We shall get around to the setup of fwknop after we configure our iptables policy... iptables Rules Setup Since iptables is installed out of the box on EnGarde Secure Linux, we will provide you a simple shell script to execute to turn on your firewall. Keep in mind that this script will shut down access to your SSH daemon. [spa_server]# cat firewall.shBe sure to change the addresses to those of your public network interface. Before running this script, be sure you make it executable: [spa_server]# chmod +x firewall.shWe can then run an Nmap scan on the server to see what we have open on the system: [spa_client]# nmapAs you can see, there will be a set amount of open ports by default including the SSH port. Run the firewall script on the spa_server... [spa_server]# ./firewall.shFrom your client, you can run an Nmap scan and now see that all ports are closed: [spa_client]# nmapAt this point you have configured your firewalls to block all access to your SSH daemon. We can now set up fwknop to allow you access through port knocking in the next section. Sssh, I want to tell you a secret... (setup fwknop and access) Back on the server side, use your favorite editor to modify the /etc/fwknop/fwknop.conf file. We're interested in the following tunables: EMAIL_ADDRESSESThe EMAIL_ADDRESSES should be whichever email addresses you wish to have the fwknop server send feedback to. This feedback includes error messages and other logging variables that can be specified elsewhere in the configuration file. The HOSTNAME variable would be the hostname of the spa_server machine. Next, we edit the /etc/fwknop/access.conf file and change the KEY variable: KEY:This is the key you will be prompted for when attempting to access the fwknop server from the client. For security purposes, this key should be at least 8 characters long and be a combination of alphanumberic characters, no spaces. Examples of such keys include: fBs1(q^rV%)*You can now start up the fwknop server: [spa_server]# /etc/init.d/fwknop startKnock knock...who's there??? (spa client) Now, from the client server, we can attempt to access the fwknop server. In the example below, replace 1.2.3.4 with the address of your spa_client machine, and the 5.6.7.8 with the address of your spa_server machine: [spa_client]# fwknop -A tcp/22 -a 1.2.3.4 -k 5.6.7.8...at this point enter the key you had specified in the /etc/fwknop/access.conf file on the spa_server machine. [+] Building encrypted single-packet authorization (SPA) message... Random data: 9469687736864299[+] Sending 171 byte message to 1.2.3.4 over udp/62201... You now have only a 30 second window to connect via SSH to the server: [spa_client]# ssh root@spa_server root@spa_server's password: Last login: Fri Nov 30 15:38:12 2007 from spa_client [root@spa_server ~]# Congratulations! You've successfully implemented fwknop on both the server and client side! Keep in mind this is one of the more basic setups for fwknop. You can go even further and implement GPG keys, change port settings, etc. by modifying the /etc/fwknop/fwknop.conf. A great resource for fwknop research is 'Linux Firewalls' by Michael Rash. Rash includes several chapters on fwknop covering theory and implementation. He even includes advanced setups for anyone looking to truly fine-tune their port knocking implementation! Have fun in implementing a new secure layer for your SSH daemon! Next time we will go over the EnGarde Secure Linux implementation of psad - here we will give you an inside look at how you can use psad to detect port scans against your server!
high misc port you choose - autorooters are up to 90% of the garbage we see in our logs. Unless your a really important target, that high port isn't gonna be found by a script kiddie or automated 0day. So the worry at this point is a 0dayexploit - but doesn't this exist with all internet facing services...Honestly, this is a great idear I first started playing with in sadoor, I loveit, but it does seem a little over kill for most people to implement when other less complex, native methods exist in sshd to give the same fuzzy feeling. Super coolprogram, high on geek points for sure, but until it's native to ssh, it's kinda overkill compared to alternatives. Tell ya what, I'll give ya my key password, my ip address and my high as all high port number, and lets see if ya can find that 0day? Oh just thought of something else, stack protection :) | |||
| Written by Michael Rash on 2007-12-06 22:47:28 | |||
Only registered users can write comments.
Please login or register.
Powered by AkoComment!