This is a discussion on [Snort-users] ACID modification within the Snort forums, part of the System Security and Security Related category; Hi, I'm using ACID 0.9.23 which seems to be the latest version out there. Recently, after upgrading ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I'm using ACID 0.9.23 which seems to be the latest version out there. Recently, after upgrading to PHP5.0.0b1, I haven't been having a good deal of success with ACID. I made a modification to the ACID source that fixes the following error (as dumped by the PHP LOG file): [01-Mar-2004 16:51:01] PHP Notice: Undefined property: acidCon::$acidErrorMessage in /var/www2/htdocs/acid/acid_db.inc on line 87 In line 87, I have: if ( $this->acidErrorMessage != "" ) After briefly looking at the code, I found that acidErrorMessage was not a variable, but a method. I added () after it and now the error is gone: ie. if ( $this->acidErrorMessage() != "" ) I don't know how to use diff that well, so I just used the command 'diff -i <old filename> <new version> > diff.lst'. Here's the diff: 87c87 < if ( $this->acidErrorMessage() != "" ) --- > if ( $this->acidErrorMessage != "" ) Now I'm trying to figure out the following error: [01-Mar-2004 16:51:16] PHP Fatal error: Call to undefined method ProtocolFieldCriteria::protocolfieldcriteria() in /var/www2/htdocs/acid/acid_state_citems.inc on line 979 AFAIK, it's trying to call the constructor for the ProtocolFieldCriteria class, but I cannot find the constructor mentioned in the source. Am I missing something? Thanks Edmund ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click _______________________________________________ Snort-users mailing list Snort-users@lists.sourceforge.net Go to this URL to change user options or unsubscribe: https://lists.sourceforge.net/lists/...fo/snort-users Snort-users list archive: http://www.geocrawler.com/redir-sf.p...st=snort-users |