Difference between pages "Box.com" and "Fast Thunder"
From Forensics Wiki
(Difference between pages)
Speculatrix (Talk | contribs) (Created page with " Another online file storage service. ==External Links== * [http://www.box.com Box] Category:Online File Storage") |
Joachim Metz (Talk | contribs) |
||
| Line 1: | Line 1: | ||
| + | '''Fast Thunder''' (aka Xunlei) is a [[Download manager|download manager]] developed by Thunder Networking Technologies. | ||
| − | |||
| − | == | + | == SuperDownload database == |
| − | + | The '''SuperDownload database''' can be found at: | |
| + | On Windows | ||
| + | <pre> | ||
| + | C:\Program Files\Thunder Network\Thunder\data\SdInfoDb.dat | ||
| + | </pre> | ||
| − | [[Category: | + | This file uses the [[SQLite database format]]. |
| + | |||
| + | The timestamp: | ||
| + | * SuperDownloadInfo.ContentDownloadTime is stored as BIGINT and contains a POSIX timestamp | ||
| + | * SuperDownloadResource.DownloadTime is stored as BIGINT and contains '''presumably''' a POSIX timestamp | ||
| + | |||
| + | == Task database == | ||
| + | The '''Task database''' can be found at: | ||
| + | |||
| + | On Windows | ||
| + | <pre> | ||
| + | C:\Program Files\Thunder Network\Thunder\Profiles\TaskDb.dat | ||
| + | </pre> | ||
| + | |||
| + | The timestamp: | ||
| + | * TaskBase.CreationTime is stored as BIGINT and contains a POSIX timestamp shifted 24-bits to the left, e.g. | ||
| + | <pre> | ||
| + | printf "0x%x\n" 22090158425767936 | ||
| + | 0x4e7ae1ce000000 | ||
| + | |||
| + | date -d @$(( 22029112998625280 >> 24 )) | ||
| + | Thu Aug 11 06:37:35 CEST 2011 | ||
| + | </pre> | ||
| + | |||
| + | == See Also == | ||
| + | |||
| + | * [[SQLite database format]] | ||
| + | |||
| + | == External Links == | ||
| + | * [http://en.wikipedia.org/wiki/Xunlei Wikipedia article on Fast Thunder (Xunlei)] | ||
| + | |||
| + | [[Category:Applications]] | ||
| + | [[Category:Download Managers]] | ||
Revision as of 05:24, 21 February 2012
Fast Thunder (aka Xunlei) is a download manager developed by Thunder Networking Technologies.
Contents |
SuperDownload database
The SuperDownload database can be found at:
On Windows
C:\Program Files\Thunder Network\Thunder\data\SdInfoDb.dat
This file uses the SQLite database format.
The timestamp:
- SuperDownloadInfo.ContentDownloadTime is stored as BIGINT and contains a POSIX timestamp
- SuperDownloadResource.DownloadTime is stored as BIGINT and contains presumably a POSIX timestamp
Task database
The Task database can be found at:
On Windows
C:\Program Files\Thunder Network\Thunder\Profiles\TaskDb.dat
The timestamp:
- TaskBase.CreationTime is stored as BIGINT and contains a POSIX timestamp shifted 24-bits to the left, e.g.
printf "0x%x\n" 22090158425767936 0x4e7ae1ce000000 date -d @$(( 22029112998625280 >> 24 )) Thu Aug 11 06:37:35 CEST 2011