Closed
Bug 958198
Opened 12 years ago
Closed 12 years ago
Exploitability matview only saves ratings for topcrashes
Categories
(Socorro Graveyard :: Middleware, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
72
People
(Reporter: benjamin, Assigned: benjamin)
Details
Currently the exploitability matview only saves ratings for signatures which are in the TCBS table. This defeats part of the point of the exploitability report, which is to find crashes which may not be high volume but may indicate a potential security issue.
I think I can write this patch.
| Assignee | ||
Comment 1•12 years ago
|
||
| Assignee | ||
Comment 2•12 years ago
|
||
Merged.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
| Assignee | ||
Updated•12 years ago
|
Target Milestone: --- → 72
Comment 3•12 years ago
|
||
Commit pushed to master at https://github.com/mozilla/socorro
https://github.com/mozilla/socorro/commit/d95735967402c14f3c09591f123b49ce980739d5
Fixes bug 958198 - migration for exploitability matview change to process all signatures
Comment 4•12 years ago
|
||
Applied the change to the stage DB and change took effect for 1/12 report run.
breakpad=# select count(*) from exploitability_reports where signature_id NOT IN ( select signature_id from tcbs where report_date = '2014-01-11' ) and report_date = '2014-01-11';
count
-------
0
(1 row)
breakpad=# select count(*) from exploitability_reports where signature_id NOT IN ( select signature_id from tcbs where report_date = '2014-01-12' ) and report_date = '2014-01-12';
count
-------
8578
(1 row)
breakpad=#
Comment 5•12 years ago
|
||
Thank you Selena! Bumping to verified per comment 4.
Status: RESOLVED → VERIFIED
Updated•10 years ago
|
Product: Socorro → Socorro Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•