You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Alert uniqueid issued by Centos are 27 chars long instead of 24; throwing error
IPV6 not supported by now, sorry
Actions taken to fix:
updated DB events.a_uniqid to support 27 chars
modified /controller/index.php regex in phaseA from {24} to {27}
Solution suggested:
modify waffle.sql definition for events.a_uniqid to CHAR(27) NOT NULL
modify controller regex to either match 27 chars or to relax to any number of chars for compatibility with other OS (not sure on other types of systems what the length of the unique alert ID will be)
2. Missing default values for events.preserve and events.false_positive
Actions taken to fix:
Alter DB fields to have default value 0
Solution suggested:
modify waffle.sql to include DEFAULT '0' for the two fields under events table definition
3. For alerts which have no scoring (i.e. 400 Bad Request) the controller throws error that h_score_total, h_score_SQLi and h_score_XSS cannot be set to ""
Actions taken to fix:
modify controller/index.php (around line 568) to set score to 0 instead of ""
modify /controller/index.php to have defaults set to 0 instead of ""
After making the above changes the sensors started to correctly upload data to the Server.
Still getting some more 500 Internal Server Error messages but I did not identify what the reasons are.
In general, after probing with some sql injection, xss, etc, I am satisfied that I see the events in the waffle dashboard.
The text was updated successfully, but these errors were encountered:
Issues identified:
1. Alert uniqueid issued by Centos are 27 chars long instead of 24; throwing error
Actions taken to fix:
Solution suggested:
2. Missing default values for events.preserve and events.false_positive
Actions taken to fix:
Solution suggested:
3. For alerts which have no scoring (i.e. 400 Bad Request) the controller throws error that h_score_total, h_score_SQLi and h_score_XSS cannot be set to ""
Actions taken to fix:
Solution suggested:
After making the above changes the sensors started to correctly upload data to the Server.
Still getting some more 500 Internal Server Error messages but I did not identify what the reasons are.
In general, after probing with some sql injection, xss, etc, I am satisfied that I see the events in the waffle dashboard.
The text was updated successfully, but these errors were encountered: