Re: Hui Lin_DNP3 analyzer not working in current version of zeek
Jon Siwek <[email protected]>
| Newsgroups | gmane.comp.security.detection.bro |
|---|---|
| Message-ID | <CAMzgZ0+RHVhvSv5UHVhOz-4cgEg3_km4eDd+NcCic9SR8eEuXg@mail.gmail.com> |
Found the difference: This behavior changed in Bro 2.5.4 (really what changed is in BinPAC 0.49, not Bro), but the new parsing behavior is legitimate. The old behavior just caused broken protocol grammars to possibly parse more things than they should have, such as in cases where there wasn't enough data to fill an array. So it appeared to be working for you, but it was not. In this case, the DNP3 protocol grammar we use is either incomplete or needs a further fix. With some debugging for this example pcap, you can see where the parsing is failing: protocol violation, [orig_h=10.0.0.3, orig_p=37147/tcp, resp_h=10.0.0.1, resp_p=20000/tcp], Analyzer::ANALYZER_DNP3_TCP, Binpac exception: binpac exception: out_of_bound: Request_Objects:ojbects: 8 > 0 protocol violation, [orig_h=10.0.0.3, orig_p=55021/tcp, resp_h=10.0.0.2, resp_p=20000/tcp], Analyzer::ANALYZER_DNP3_TCP, Binpac exception: binpac exception: out_of_bound: Request_Objects:ojbects: 8 > 0 That's here: https://github.com/zeek/zeek/blob/e2dc0092f3a1caea1ebc71e347663e723298fb6b/src/analyzer/protocol/dnp3/dnp3-protocol.pac#L97 You can look in the pcap (e.g. Wireshark) and see in the first READ request that there's no objects being sent for us to parse even though our protocol definition is written to expect that. So that protocol violation is legit in the sense that we've defined the protocol in a way that differs from what's being sent on the wire. And a protocol violation in the case of DNP3 disables all further analysis. You maybe understand DNP3 better than me, so please create an issue or pull request if you come up with a fix that improves the DNP3 parser. Attached is a naive patch that seems to generate the same number of requests/responses as before Bro 2.5.4; maybe it helps as a starting point or reference. - Jon On Mon, Jun 17, 2019 at 11:53 AM Hui Lin (Hugo) <[email protected]> wrote: > > Thanks Jon, > > The version that is working is version 2.5-457. I have attached the sample pcap here. > > Best, > > Hui Lin > > On Mon, Jun 17, 2019 at 10:32 AM Jon Siwek <[email protected]> wrote: >> >> On Sun, Jun 16, 2019 at 3:17 PM Hui Lin (Hugo) <[email protected]> wrote: >> > Actually for the same pcap, in a version that I git last year, bro works fine by printing all messages. Any idea what happens? If needed, I can provide the pcap for the testing. >> >> Not sure, please either try to debug / explore the diffs, or provide a >> pcap and say which was the last known working version. >> >> - Jon > > > > -- > Hui Lin > Ph.D. Candidate (http://hlin33.web.engr.illinois.edu/) > DEPEND (http://depend.csl.illinois.edu/) > ECE, Uni. of Illinois at Urbana-Champaign > _______________________________________________ Zeek mailing list [email protected] http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/zeek
dnp3-naive.patch
(application/octet-stream, 1.2 KB)
diff --git a/src/analyzer/protocol/dnp3/dnp3-protocol.pac b/src/analyzer/protocol/dnp3/dnp3-protocol.pac
index 154fdc8be..04362b24a 100644
--- a/src/analyzer/protocol/dnp3/dnp3-protocol.pac
+++ b/src/analyzer/protocol/dnp3/dnp3-protocol.pac
@@ -92,6 +92,7 @@ type Request_Objects(function_code: uint8) = record {
object_header: Object_Header(function_code);
data: case (object_header.object_type_field) of {
0x0c03 -> bocmd_PM: Request_Data_Object(function_code, object_header.qualifier_field, object_header.object_type_field )[ ( object_header.number_of_item / 8 ) + 1*( object_header.number_of_item > ( (object_header.number_of_item / 8)*8 ) ) ];
+ 0x1e01 -> analog_input_32_bit_no_objs: empty;
0x3202 -> time_interval_ojbects: Request_Data_Object(function_code, object_header.qualifier_field, object_header.object_type_field )[ object_header.number_of_item];
# &check( object_header.qualifier_field == 0x0f && object_header.number_of_item == 0x01);
default -> ojbects: Request_Data_Object(function_code, object_header.qualifier_field, object_header.object_type_field )[ object_header.number_of_item];