项目作者: jodevsa

项目描述 :
a bro client library for NodeJS
高级语言: JavaScript
项目地址: git://github.com/jodevsa/BroJS.git
创建时间: 2017-08-12T00:59:09Z
项目社区:https://github.com/jodevsa/BroJS

开源协议:

下载


Bro IDS Nodejs Library

Why i did it! :

I’m doing a project that involves analyzing many pcap’s using the great Bro IDS with aid of ElasticSearch

Problems encountered using BRO in my poject:

  • BRO does not have any programmable interface that i can make use of.
  • all output from Bro is saved to files. ex:”conn.log”,”http.log”, etc…

Why not just use LogStash ?

At First glance logstash appeared to be the soloution to my problem, after tinkering with it i knew i was wrong.
Indeed logstash provide’s great config utilities that customize’s the way it eat’s logs’s, i needed more control ! ; to me it i felt like it was built for system administrator’s use only .

  • logstash config language is custom tailered; you can’t parse the config and dynamically change it
  • don’t have any programmable interface (as far as i know )

Features:

  • Ability to consume realtime data from bro
  • Ability to consume data on batch bases from bro
  • control bro process from NodeJS

Examples:

Example 1: listening on a network interface and consuming real-time data ( as soon as bro write’s it to disk)

  1. const BroClient = require('../lib/BroClient');
  2. const _ = require('lodash');
  3. // By default bro always spawn the /usr/bin/bro process, if you have bro installed else-where //change "bro" attribute .
  4. //By default all logs are written to /tmp library , change it with the "tmp" attribute.
  5. let bro = new BroClient({
  6. "bro": "/usr/bin/bro",
  7. "tmp": "/home/jodevsa/broo/"
  8. });
  9. // listen on 'wlp3s0' interface
  10. bro.capture("wlp3s0",()=>{
  11. console.log("started capturing on interface wlp3s0");
  12. }).on("*",function(type,line){
  13. // for example "conn"
  14. console.log("log Type",type);
  15. console.log(line);
  16. /*{"ts":1133502567.143497,"uid":"CWKgyN4kUBiM0FRbFd","id.orig_h":"192.168.0.112","id.orig_p":12345,"id.resp_h":"178.20.343.5","id.resp_p":443,"proto":"tcp","conn_state":"OTH","missed_bytes":0,"history":"C","orig_pkts":0,"orig_ip_bytes":0,"resp_pkts":0,"resp_ip_bytes":0,"tunnel_parents":[]}
  17. */
  18. }).on("http",(line)=>{
  19. //or if we are only interested in http logs
  20. console.log(line);
  21. });

Example 2: Analyzing an already capture pcap and consuming logs on batches:

  1. const BroClient = require('../lib/BroClient');
  2. const _ = require('lodash');
  3. let bro = new BroClient({
  4. "bro": "/usr/bin/bro",
  5. "tmp": "/home/jodevsa/broo/"
  6. });
  7. // listen on 'wlp3s0' interface
  8. bro.analyze("/home/broworkstation/Desktop/mynetwork.pcap",()=>{
  9. console.log("started analyzing mynetwork.pcap");
  10. })
  11. bro.onBatches(20, {
  12. // * handler for all event's
  13. // customize event's before emitting to the main listener "*"
  14. // inspired from logstash config language
  15. "*": function(event) {
  16. //transform id to broid
  17. ///////////////////////////////////////////////////////////////////
  18. let keys = Object.keys(event);
  19. for (let i = 0; i < keys.length; i++) {
  20. if (keys[i].indexOf("id.") === 0) {
  21. event[keys[i].replace("id.", "broid.")] = event[keys[i]];
  22. delete event[keys[i]];
  23. }
  24. }
  25. // convert event.ts to date object
  26. event.ts = new Date(event.ts * 1000);
  27. },
  28. //connection event handler
  29. "conn": function(event) {
  30. event.destIP = event["broid.resp_h"];
  31. event.destPort = event["broid.resp_p"];
  32. delete event["broid.resp_p"];
  33. event.sourceIP = event['broid.orig_h'];
  34. delete event['broid.orig_h'];
  35. event.sourcePort = event['broid.orig_p'];
  36. event.id = event.uid;
  37. delete event.uid;
  38. }
  39. /// next:is a function that calls for the next batch !
  40. /// be aware if next isn't invoked , you'll never get the next batch !!
  41. }).on("*", function(batch, next) {
  42. console.log("next batch is ready!");
  43. /// consume batch
  44. let body = [];
  45. _.forEach(batch, (item, e) => {
  46. console.log(item.type);
  47. //contains all lines of the same item.type
  48. console.log(item.data);
  49. // ok 20 was alot , give me 1 line at a time now next(1)
  50. next(1);
  51. });
  52. }).on("end", function() {
  53. /// done /////
  54. })

to be continued !!!