aboutsummaryrefslogtreecommitdiff
path: root/pasad_bro.bro
diff options
context:
space:
mode:
authorRobert Gustafsson <robg@student.chalmers.se>2017-09-26 09:10:55 +0200
committerRobert Gustafsson <robg@student.chalmers.se>2017-09-26 09:10:55 +0200
commit24145fa0d3f33141ac074d022891b07e249f4582 (patch)
treea1ee8889e3b42cae4d7e3f27337493868f162efb /pasad_bro.bro
parent46f518825c4e934b950c1ce0c9936fd106798408 (diff)
downloadmidbro-24145fa0d3f33141ac074d022891b07e249f4582.tar.gz
midbro-24145fa0d3f33141ac074d022891b07e249f4582.tar.bz2
Add first test of broccoli
Diffstat (limited to 'pasad_bro.bro')
-rw-r--r--pasad_bro.bro26
1 files changed, 26 insertions, 0 deletions
diff --git a/pasad_bro.bro b/pasad_bro.bro
new file mode 100644
index 0000000..c324856
--- /dev/null
+++ b/pasad_bro.bro
@@ -0,0 +1,26 @@
+@load frameworks/communication/listen
+module Pasad;
+
+redef Communication::listen_port = 47760/tcp;
+
+redef Communication::listen_ssl = F;
+
+global response: event(register: count, uid: count);
+
+redef Communication::nodes += {
+ ["pasad"] = [$host = 127.0.0.1, $events = /pasad/, $connect=F, $ssl=F]
+};
+
+event modbus_read_holding_registers_request(c: connection, headers: ModbusHeaders, start_adress: count, quantity: count)
+
+{
+ print fmt("Request: %d", quantity);
+}
+
+event modbus_read_holding_registers_response(c: connection, headers: ModbusHeaders, registers: ModbusRegisters)
+
+{
+ print fmt("Response: %d", registers[0]);
+ event response(registers[0],headers$uid);
+}
+