Prerequisites
Linux OS –Ubuntu Desktop 12.04 LTS discussed herein
Introduction
I’ve been spending a fair bit of time reading, studying,
writing, and presenting as part of Officer Candidate training in the Washington
State Guard. When I’m pinned I may be one of the oldest 2nd
Lieutenants you’ve ever imagined (most of my contemporaries are Lieutenant
Colonels and Colonels) but I will have learned beyond measure. As much of our
last drill weekend was spent immersed in Army operations I’ve become quite
familiar with Army Field Manuals 5-0 The Operations Process and 1-02
Operational Terms and Graphics. Chapter 2 of FM 1-02, Section 1 includes
acronyms and abbreviations and it was there I spotted it, the acronym for command,
control, and communications countermeasures: C3CM. This gem is just ripe for
use in the cyber security realm and I intend to be the first to do so at length.
C2 analysis may be good enough for most
but I say let’s go next level. ;-) Initially, C3CM was most often intended to
wreck the command and control of enemy air defense networks, a very specific
Air Force mission. Apply that mindset in the context of combating bots and APTs
and you’re onboard. Our version of C3CM
therefore is to identify, interrupt, and counter the command, control, and
communications capabilities of our digital assailants.
Part one of our three part series on C3CM will utilize Nfsight
with Nfdump, Nfsen, and fprobe to conduct our identification phase. These NetFlow
tools make much sense when attempting to identify the behavior of your opponent
on high volume networks that don’t favor full packet capture or inspection.
A few definitions and descriptions to clarify our intent:
1) NetFlow
is Cisco’s protocol for collecting IP traffic information and is an industry
standard for traffic monitoring
2) Fprobe is a libpcap-based
tool that collects network traffic data and emits it as NetFlow flows towards
the specified collector and is very useful for collecting NetFlow from Linux
interfaces
3) Nfdump tools
collect and process NetFlow data on the command line and are part of the Nfsen
project
5) Nfsight, our
primary focus, as detailed on its Sourceforge page, is a NetFlow processing and
visualization application designed to offer a comprehensive network awareness. Developed
as a Nfsen plugin to construct bidirectional flows out of the unidirectional NetFlow
flows, Nfsight leverages these bidirectional flows to provide client/server
identification and intrusion detection capabilities.
Nfdump and Nfsen are developed by Peter Haag while Nfsight
is developed by Robin Berthier. Robin provided extensive details regarding his
project. He indicated that Nfsight was born from the need to easily retrieve a
list of all the active servers in a given network. Network operators and
security administrators are always looking for this information in order to
maintain up-to-date documentation of their assets and to rapidly detect rogue
hosts. As mentioned above, it made sense to extract this information from NetFlow
data for practicality and scalability. Robin pointed out that NetFlow is
already deployed in most networks and offers a passive and automated way to
explore active hosts even in extremely large networks (such as the
spectacularly massive Microsoft datacenter environment I work in). The primary
challenge in designing and implementing Nfsight lay in accurately identifying
clients and servers from omnidirectional NetFlow records given that NetFlow
doesn't keep track of client/server sessions; a given interaction between two
hosts will lead to two separate NetFlow records. Nfsight is designed to pair
the right records and to identify which host initiated the connection and does
so through a set of heuristics that are combined with a Bayesian inference
algorithm. Robin pointed out that timing (which host started the connection)
and port numbers (which host has a higher port number) are two examples of
heuristics used to differentiate client from server in bidirectional flows. He
also stated that the advantage of Bayesian inference is to converge towards a
more accurate identification as evidence is collected over time from the
different heuristics. As a result, Nfsight gains a comprehensive understanding
of active servers in a network after only few hours.
Another important Nfsight feature is the visual interface
that allows operators to query and immediately display the results through any
Web browser. One can, as an example, query for all the SSH servers.
“The tool will show a matrix where each row is a server
(IP address and port/service) and each column is a timeslot. The granularity of
the timeslot can be configured to represent a few minutes, an hour, or a day.
Each cell in the matrix shows the activity of the server for the specific time
period. Operators instantly assess the nature and volume of client/server
activity through the color and the brightness of the colored cell. Those cells
can even show the ratio of successful to unsuccessful network sessions through
the red color. This enables operators to identify scanning behavior or
misconfiguration right away. This feature was particularly useful during an
attack against SSH servers recorded in a large academic network. As shown on
the screenshot below, the green cells represent normal SSH server activity and
suddenly, red/blue SSH client activity starts, indicating a coordinated scan.”
FIGURE 1: Nfsight encapsulates attack against SSH servers |
Robin described the investigation of the operating
systems on those SSH servers where the sysadmins found that they were using a
shared password database that an attacker was able to compromise. The attacker
then installed a bot in each of the server, and launched a scanning campaign
from each compromised server. Without the visual representation provided by Nfsight,
it would have taken much longer to achieve situational awareness, or worse, the
attack could have gone undetected for days.
I am here to tell you, dear reader, with absolute
experiential certainty, that this methodology works at scale for identifying
malicious or problematic traffic, particularly when compared against threat
feeds such as those provided by Collective Intelligence Framework. Think about
it from the perspective of detecting evil for cloud services operators and how
to do so effectively at scale. Tools such as Nfdump, Nfsen, and Nfsight start
to really make sense.
Preparing your system for Nfsight
Now that you’re all excited, I will spend a good bit of time on
installation as I drew from a number of sources to achieve an effective working
base for part one of our three part series of C3CM. This is laborious and
detailed so pay close attention. I started working from an Ubuntu Desktop 12.04
LTS virtual machine I keep in my collection, already configure with Apache and
MySQL. One important distinction here. I opted to not spin up my old Cisco
Catalyst 3500XL in my lab as it does not support NetFlow and instead opted to
use fprobe to generate flows right on my Ubuntu instance being configured as an
Nfsen/Nfsight collector. This is acceptable in a low volume lab like mine but
won’t be effective in any production environment. You’ll be sending flows from
supported devices to your Nfsen/Nfsight collector(s) and defining them
explicitly in your Nfsen configuration as we’ll discuss shortly. Keep in mind
that preconfigured distributions such as Network Security Toolkit come with the like of Nfdump
and Nfsen already available but I wanted to start from scratch with a clean OS
so we can build our own C3CM host during this three part series.
From your pristine Ubuntu instance, begin with a system update to
ensure all packages are current: sudo
apt-get update && sudo apt-get upgrade.
You can configure the LAMP server during VM creation from the
ISO or do so after the fact with sudo
apt-get install tasksel
then sudo tasksel and select LAMP server.
Install the dependencies necessary for Nfsen and Nfsight:
sudo apt-get install rrdtool mrtg librrds-perl librrdp-perl librrd-dev nfdump libmailtools-perl php5 bison flex librrds-perl libpcap-dev libdbi-perl picviz fprobe
You’ll be asked two question during this stage of the install. The fprobe install will ask which interface to capture from; typically the default is eth0. For Collector address, respond with localhost:9001. You can opt for a different port but we’ll use 9001 later when configuring the listening component of Nfsen. During the mrtg install, when prompted to answer “Make /etc/mrtg.cfg owned by and readable only by root?" answer Yes.
sudo apt-get install rrdtool mrtg librrds-perl librrdp-perl librrd-dev nfdump libmailtools-perl php5 bison flex librrds-perl libpcap-dev libdbi-perl picviz fprobe
You’ll be asked two question during this stage of the install. The fprobe install will ask which interface to capture from; typically the default is eth0. For Collector address, respond with localhost:9001. You can opt for a different port but we’ll use 9001 later when configuring the listening component of Nfsen. During the mrtg install, when prompted to answer “Make /etc/mrtg.cfg owned by and readable only by root?" answer Yes.
The Network Startup Resource Center (NSRC) conducts annual workshops;
in 2012 during their Network Monitoring and Managements event Nfsen
installation was discussed at length. Following their
guidance:
Install and configure Nfsen:
cd /usr/local/src
sudo wget "http://sourceforge.net/projects/nfsen/files/latest/download
" -O nfsen.tar.gz
sudo tar xvzf nfsen.tar.gz
cd nfsen-1.3.6p1
cd etc
sudo cp nfsen-dist.conf nfsen.conf
sudo gedit nfsen.conf
Set the $BASEDIR variable: $BASEDIR="/var/nfsen";
Adjust the tools path to where items actually reside:
# Nfdump tools path
$PREFIX = '/usr/bin';
Define users for Apache access:
$WWWUSER = 'www-data';
$WWWGROUP = 'www-data';
Set small buffer size for quick data rendering:
# Receive buffer size for nfcapd
$BUFFLEN = 2000;
Find the %sources definition, and modify as follows (same port number
as set in fprobe install):
%sources=(
'eth0' => {'port'=>'9001','col'=>'#0000ff','type'=>'netflow'},
);
Save and exit gedit.
Create the NetFlow user on
the system:
sudo useradd -d /var/netflow -G www-data -m -s /bin/false
netflow
Initialize Nfsen:
cd /usr/local/src/nfsen-1.3.6p1
sudo ./install.pl etc/nfsen.conf
sudo /var/nfsen/bin/nfsen start
You may notice errors that include pack_sockaddr_in6 and unpack_sockaddr_in6;
these can be ignored.
Run sudo
/var/nfsen/bin/nfsen status to
ensure that Nfsen is running properly.
Install the Nfsen init
script:
sudo ln -s /var/nfsen/bin/nfsen /etc/init.d/nfsen
sudo update-rc.d nfsen defaults 20
You’re halfway there now. Check your Nfsen installation via your
browser.
The URL is http://192.168.42.131/nfsen/nfsen.php?tab=0
on my server.
Note: if you see a backend version mismatch
message, incorporate the changes into nfsen.php as noted in this diff file. As data starts coming
in (you can force this with a ping –t (Windows) of your Nfsen collector IP
and/or an extensive Nmap scan) you should see results similar to those seen
from the Details tab in Figure 2 (allow it time to populate).
FIGURE 2: Nfsen beginning to render data |
cd /usr/local/src
sudo wget "http://sourceforge.net/projects/nfsight/files/latest/download"
-O nfsight.tar.gz
sudo tar xvzf nfsight.tar.gz
cd nfsight-beta-20130323
sudo cp backend/nfsight.pm /var/nfsen/plugins/
sudo mkdir /var/www/nfsen/plugins/nfsight
sudo chgrp -R www-data /var/www/nfsen/plugins/nfsight
sudo mkdir /var/www/nfsen/nfsight
sudo cp -R frontend/* /var/www/nfsen/nfsight/
sudo chgrp -R www-data /var/www/nfsen/nfsight/
sudo chmod g+w /var/www/nfsen/nfsight/
sudo chmod g+w /var/www/nfsen/plugins/nfsight/
sudo chmod g+w /var/www/nfsen/nfsight/cache
sudo chmod g+x /var/www/nfsen/nfsight/bin/biflow2picviz.pl
Create Nfsight database:
Interchange
the root user with an Nfsight database user if you’re worried about running the
Nfsight db with root.
mysql -u root –p
and enter your MySql root password
mysql> CREATE DATABASE nfsight
mysql> GRANT ALL PRIVILEGES ON nfsight.* TO root@'%'
IDENTIFIED BY '';
mysql> grant all privileges on nfsight.* TO root@localhost
IDENTIFIED BY '';
mysql> GRANT ALL PRIVILEGES ON nfsight.* TO 'root'@'%' WITH
GRANT OPTION;
mysql> FLUSH PRIVILEGES;
mysql> quit
Launch the Nfsight web installer; on my server the path is:
http://192.168.42.131/nfsen/nfsight/installer.php
The proper paths for our installation are:
URL = /nfsen/nfsight/
Path to data files = /var/www/nfsen/plugins/nfsight
You may need to edit detail.php to ensure proper paths for grep, cat,
and pcv. They should read as follows:
/bin/grep
/bin/cat
/usr/bin/pcv
Edit /var/nfsen/etc/nfsen.conf with settings from the Nfsight
installer.php output as seen in Figure 3.
FIGURE 3: Configure nfsen.conf for Nfsight |
Restart Nfsen:
/var/nfsen/bin/nfsen stop
/var/nfsen/bin/nfsen start
Check status: /var/nfsen/bin/nfsen
status
Last step! Install the hourly cronjob required by Nfsight to
periodically update the database:
crontab -e
06 * * * * /usr/bin/wget
--no-check-certificate -q -O - http://management:aggregate@127.0.0.1/nfsen/nfsight/aggregate.php
Congratulations, you should now be able to login to Nfsight! The
credentials to login to Nfsight are those you defined when running the Nfsight
installer script (installer.php). On my server, I do so at http://192.168.42.131/nfsen/nfsight/index.php.
Nfsight in flight
After all that, you’re
probably ready to flame me with a “WTF did you just make me do, Russ!” email. I
have to live up to being the tool in toolsmith, right? I’m with you, but it
will have been worth it, I promise. As flows begin to populate data you’ll have
the ability to drill into specific servers, clients, and services. I generated
some noisy traffic against some Microsoft IP ranges that I was already interested
in validating which in turn gave the impression of a host on my network
scanning for DNS servers. Figure 4 show an initial view where my rogue DNS
scanner shows up under Top 20 active internal servers.
FIGURE 4: Nfsight’s Top 20 |
You can imagine how, on a
busy network, these Top 20 views could be immediately helpful in identifying
evil egress traffic. If you click on a particular IP in a Top 20 view you’ll be
treated to service activity in a given period (adjustable in three hour
increments). You can then drill in further by 5 minute increments as seen in
Figure 5 where you’ll note all the IPs my internal hosts was scanning on port
53. You can also render a parallel plot (courtesy of PicViz installed earlier).
Every IPv4 octet, port number, and service are hyperlinks to more flow data, so
just keep on clicking. When you click a service port number and it offers you
information about a given port, thanks to the SANS Internet Storm Center as you
are directed to the ISC Port Report for that particular service when you click
the resulting graph.
See? I told you it would be
worth it.
FIGURE 5: Nfsight Activity Overview |
All functionality references
are available on the Wiki, must importantly recognize that the color codes are
red for unanswered scanner activity, blue for client activity, and green for
server activity.
You can select save this view and create what will
then be available as an event in the Nfsight database. I saved one from what
you see in Figure 5 and called it Evil DNS Egress. These can then be reloaded
by clicking Events from the upper right-hand corner of the Nfsight UI.
Nfsight also includes a
flow-based intrusion detection system called Nfids, still considered a work in
progress. Nfids will generate alerts that are stored in a database and
aggregated over time, and alerts that are recorded more than a given number of
time are reported to the frontend. These alerts are generated based on five
heuristic categories including: malformed, one-to-many IP, one-to-many port,
many-to-one IP, and many-to-one port.
You can also manage your Nfsight
settings from this region of the application, including Status, Accounts,
Preferences, Configuration, and Logs. You can always get back to the home page
by simply clicking Nfsight in the upper-left corner of the UI.
As the feedback on the Nfsight
SourceForge site says, “small and efficient and gets the job done.”
In Conclusion
Recall from the beginning of this discussion that I’ve
defined C3CM as methods by which to identify,
interrupt, and counter the command, control, and communications capabilities of
our digital assailants
Nfsight, as part of our C3CM concept, represents the
first step (and does a heck of a good job doing it) of my C3CM process:
identify. Next month we’ll discuss the interrupt phase of C3CM using BroIDS and
Logstash.
Ping me via email if you have questions (russ at
holisticinfosec dot org).
Cheers…until next month.
Acknowledgements
Robin Berthier, Nfsight
developer
16 comments:
Never get to this output:
"Edit /var/nfsen/etc/nfsen.conf with settings from the Nfsight installer.php output as seen in Figure 3."
http:///nfsen/nfsight/installer.php
is not giving any output after MySQL settings...
Ever happened to you?
Thanks!
http://IP/nfsen/nfsight/installer.php
get stuck, never passed the MySQL settings step...
Ever happened to you?
Thanks!
Call me dear reader again - I dare you.
Tool.
Dear reader :-)
Hi Russ. Looks like you might have missed a step.
### copy frontend to nfsight website directory
cp -R ~/nfsight-beta-20130323/frontend/* /var/www/nfsen/nfsight/ is in Steronius site but not in your list of instructions.
thanks
jeff
the problem with mysql is obvious, check if you have php-mysql installed for your distro.
Hi all,
I am getting the following error when i run the command
GRANT ALL PRIVILEGES ON nfsight.* TO root@'%' IDENTIFIED BY '';
Can anyone please help me to resolv this issue.
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GRANT ALL PRIVILEGES ON nfsight.* TO root@'%' IDENTIFIED BY ''' at line 2
Thanks
GREAT Writeup! I'm proud that I had some influence. In fact I see you found something that i did not mention (restarting nfsen and adding a cronjob). I'll probably refer to YOUR writeup when I have to do this again. Thank you!
Hello, random network admin here... just wanted to say thanks for this article, it definitely helped in the installation and understanding of nfsight and how it works with nfsen.
Kudos!
Hi,
great tutorial. But obviously I did something wrong, i.e. after nfsight setup I tried to Login with admin name and Password but it told me this was wrong. So I deleted the database, deleted the config php file of nfsight and started over. But still no luck.
Perhaps anyone knows what could be the problem?
Regards,
Chris
Maybe of interest to you:
Automatic Malware IP Filters for NfSen:
http://steronius.blogspot.com/2015/04/automatic-malware-filters-for-nfsen.html
Hi,
I manage to install this. But as soon as i run nfsen with nfsight plugin my box CPU goes 100% and ad it stop process the flow. I have 16 GB RAM with 2,4 Ghz 6 core box Dell box. Any help?
Zafar, would need a lot more information to help. OS, app, distro versions, logs, etc. What troubleshooting have you already done? Are either nfsen or nfsight actually consuming all CPU or is it another process after you start them up?
i have same problem that Eugen chirila, never passed the MySQL settings step...
regards.
Ubuntu 16.04 - Server
NFdump-1.6.13
NFSen -1.3.8 - Works great and I'm collecting Netflow9 from ASA
NFsight-beta-20140905
My observations:
1)Installation instructions - no problem.
2)When I run the http://serverip/nfsight/installer.php it collects the information, when I hit the submit button the screen is blank, no information provided.
3)No config.conf is ever created with parameters collected from installer.php.
4)Mysql shows that no tables were ever created in the nfsight database.
5)Any suggestions on how move forward?
For all of you trying to work with the NF tools, I wish I could help you, but they're entirely unsupported at this time, and not likely to see any more development love.
May I suggest that you all move to SOF-ELK which is very powerful and fully supported, it's definitely my favorite: https://holisticinfosec.blogspot.com/2017/07/toolsmith-126-adversary-hunting-with.html
Post a Comment