First of all: Sorry if this is the wrong section. Also hi.
I am currently writing some forensic(saved passes, history, downloads, ...) script for firefox (so far), and can't find the downloads.sqlite on my win7 machine with ff 29.
It exists on an debian install with an older ff version.
The list with the downloads via the ff GUI is working, so these data need to be somewhere.
So, does anyone know if the data is now in another file, or do i need to dig through the ff code ?
EDIT: Firefox from version 21 upwards (?) saves this data in the places.sqlite now. This is one way how to get that info:
SELECT a.content, b.content, c.content from moz_annos a, moz_annos b, moz_annos c
where a.place_id = b.place_id and b.place_id = c.place_id
and a.anno_attribute_id = 17
and b.anno_attribute_id = 18
and c.anno_attribute_id = 19;
*BTW: if there is interest i'll post the script here, when it is done.*