Sponsored Links

Rabu, 30 Mei 2018

Sponsored Links

Threat Hunting Using Open Source Software Bro Part 1 - YouTube
src: i.ytimg.com

Originally written by Vern Paxson, Bro is an open source Unix based network monitoring framework. Often compared to a network intrusion detection system (NIDS), Bro can be used to build a NIDS but is much more. Bro can also be used for collecting network measurements, conducting forensic investigations, traffic baselining and more. Bro has been compared to tcpdump, Snort, netflow, and Perl (or any other scripting language) all in one. It is released under the BSD license.


Video Bro (software)



Bro internals

Bro can be conceptualized in two layers

  1. Bro event engine, which analyzes live or recorded network traffic or trace files to generate neutral events.
    Bro uses an engine (written in C++) to generate events when "something" happens. This can be triggered by the Bro process, such as just after initialization or just before termination of the Bro process, as well as by something taking place on the network (or trace file) being analyzed, such as Bro witnessing an HTTP request or a new TCP connection. Bro uses common ports and dynamic protocol detection (involving signatures as well as behavioral analysis) to make a best guess at interpreting network protocols. Events are policy neutral in that they are not good or bad but simply signals to script land that something happened.
  2. Bro policy scripts, which analyze events to create action policies.
    Events are handled from within Bro policy scripts (written in the Turing complete Bro scripting language). By default Bro simply logs information about events to files (Bro also supports logging events in binary output), however it can be configured to take other actions such as sending an email, raising an alert, executing a system command, updating an internal metric and even calling another Bro script. The default behavior produces NetFlow-like output (conn log) as well as application event information. Bro scripts are able to read in data from external files, such as blacklists, for use within Bro policy scripts.

Bro analyzers

Most Bro analyzers are located in Bro's event engine with an accompanying policy script. The policy script can be customized by the user. The analyzers perform application layer decoding, anomaly detection, signature matching and connection analysis. Bro has been designed so that it is easy to add additional analyzers. Some application layer analyzers included with Bro are HTTP, FTP, SMTP and DNS amongst others. Other non-application layer analyzers include analyzers that detect host or port scans, intermediary hosts and syn-floods. Bro also includes signature detection and allows the import of Snort signatures.


Maps Bro (software)



References


Security Onion Searching DNS Traffic using Bro and ELSA | Avalom ...
src: s-media-cache-ak0.pinimg.com


External links

  • The Bro Network Security Monitor
  • Bro: A System for Detecting Network Intruders in Real-Time - Vern Paxson
  • The NSA is Not Made Of Magic - Bruce Schneier


Source of the article : Wikipedia

Comments
0 Comments