From noreply at bro.org Mon Dec 1 00:00:29 2014 From: noreply at bro.org (Merge Tracker) Date: Mon, 1 Dec 2014 00:00:29 -0800 Subject: [Bro-Dev] [Auto] Merge Status Message-ID: <201412010800.sB180TaH003577@bro-ids.icir.org> Open Merge Requests =================== ID Component Reporter Assignee Updated For Version Priority Summary ------------ ----------- ------------- ------------- ---------- ------------- ---------- --------------------------------------------------- BIT-1294 [1] Bro Wouter Clarie Johanna Amann 2014-11-27 2.4 Normal Input framework: table name truncated at underscore BIT-856 [2] bro-aux Vern Paxson Daniel Thayer 2014-11-24 2.4 Normal more documentation for utilities would be cool Open GitHub Pull Requests ========================= Issue Component User Updated Title ------- ----------- -------------- ---------- ---------------------------------------------------------------- #19 [3] bro mpurzynski [4] 2014-11-27 Update windows-version-detection.bro [5] #18 [6] bro hillu [7] 2014-11-26 BIFScanner: Make filename->symbol transformation more robust [8] [1] BIT-1294 https://bro-tracker.atlassian.net/browse/BIT-1294 [2] BIT-856 https://bro-tracker.atlassian.net/browse/BIT-856 [3] Pull Request #19 https://github.com/bro/bro/pull/19 [4] mpurzynski https://github.com/mpurzynski [5] Merge Pull Request #19 with git pull --no-ff --no-commit https://github.com/mpurzynski/bro.git patch-1 [6] Pull Request #18 https://github.com/bro/bro/pull/18 [7] hillu https://github.com/hillu [8] Merge Pull Request #18 with git pull --no-ff --no-commit https://github.com/hillu/bro.git master From jira at bro-tracker.atlassian.net Mon Dec 1 08:15:01 2014 From: jira at bro-tracker.atlassian.net (Jon Siwek (JIRA)) Date: Mon, 1 Dec 2014 10:15:01 -0600 (CST) Subject: [Bro-Dev] [JIRA] (BIT-1290) Permissions of some helpers scripts In-Reply-To: References: Message-ID: [ https://bro-tracker.atlassian.net/browse/BIT-1290?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jon Siwek reassigned BIT-1290: ------------------------------ Assignee: Jon Siwek > Permissions of some helpers scripts > ----------------------------------- > > Key: BIT-1290 > URL: https://bro-tracker.atlassian.net/browse/BIT-1290 > Project: Bro Issue Tracker > Issue Type: Improvement > Components: BroControl > Affects Versions: 2.3 > Reporter: Ra?l Benencia > Assignee: Jon Siwek > Labels: broctl > Attachments: 01-properly-install-script-helpers.patch > > > Hi, > Some broctl helpers are incorrectly installed with +x permissions. The affected files are {{aux/broctl/bin/helpers/to-bytes.awk}} and {{/aux/broctl/bin/set-bro-path}}. > I'm attaching a patch I've used for the Debian package in order to solve this issue. > Thanks. -- This message was sent by Atlassian JIRA (v6.4-OD-11-012#64007) From jira at bro-tracker.atlassian.net Mon Dec 1 08:15:01 2014 From: jira at bro-tracker.atlassian.net (Jon Siwek (JIRA)) Date: Mon, 1 Dec 2014 10:15:01 -0600 (CST) Subject: [Bro-Dev] [JIRA] (BIT-1294) Input framework: table name truncated at underscore In-Reply-To: References: Message-ID: [ https://bro-tracker.atlassian.net/browse/BIT-1294?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jon Siwek reassigned BIT-1294: ------------------------------ Assignee: Jon Siwek (was: Johanna Amann) > Input framework: table name truncated at underscore > --------------------------------------------------- > > Key: BIT-1294 > URL: https://bro-tracker.atlassian.net/browse/BIT-1294 > Project: Bro Issue Tracker > Issue Type: Problem > Components: Bro > Affects Versions: git/master > Reporter: Wouter Clarie > Assignee: Jon Siwek > Fix For: 2.4 > > > When loading a table in the input framework, e.g.: > Input::add_table([ $source="/tmp/sdb_servers", > $name="sdb_servers", > $idx=sdb_servers_idx, > $val=sdb_servers_val, > $destination=sdb_servers, > $mode=Input::REREAD > ]); > And later on reporting when the input has been fully read: > event Input::end_of_data(name: string, source: string) > { > Reporter::info(fmt("Input stream name %s source %s ready", name, source)); > } > This is what ends up in the reporter log: > 0.000000 Reporter::INFO Input stream name sdb source /tmp/sdb_servers ready