Open GoogleCodeExporter opened 9 years ago
I found that I had to manually run some MYSQL statements to get them to show
up. They are at least parsing now, although it looks like there may still be
some errors. I'll update the ticket after I check things out some more.
Original comment by lib...@gmail.com
on 3 Jul 2014 at 9:14
OK, I have made significant progress. Is anyone out there? lol
I rewrote the Barracuda parser from the ground up, based on the excellent
Barracuda Spam & Virus Firewall Version 5.x Syslog Guide, along with real-world
logs. Everything validates properly.
Another problem was that the SQL statements I found from the mailing list to
enable the class in the database had incorrect class IDs:
Bad:
INSERT INTO classes (id, class, parent_id) VALUES(26, "BARRACUDA_SCAN", 0);
INSERT INTO classes (id, class, parent_id) VALUES(27, "BARRACUDA_RECV", 0);
INSERT INTO classes (id, class, parent_id) VALUES(28, "BARRACUDA_SEND", 0);
Good:
INSERT INTO classes (id, class, parent_id) VALUES(27, "BARRACUDA_SCAN", 0);
INSERT INTO classes (id, class, parent_id) VALUES(28, "BARRACUDA_RECV", 0);
INSERT INTO classes (id, class, parent_id) VALUES(29, "BARRACUDA_SEND", 0);
I dropped those rows and fixed that.
I'm going to give it a few days to see what pops in unclassified, then update
the parsers as needed. Of course, if you want them I am happy to share.
Original comment by lib...@gmail.com
on 9 Jul 2014 at 12:12
Original issue reported on code.google.com by
lib...@gmail.com
on 2 Jul 2014 at 4:19