dfindexeddb 20240402__py3-none-any.whl → 20240417__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dfindexeddb
3
- Version: 20240402
3
+ Version: 20240417
4
4
  Summary: dfindexeddb is an experimental Python tool for performing digital forensic analysis of IndexedDB and leveldb files.
5
5
  Author-email: Syd Pleno <sydp@google.com>
6
6
  Maintainer-email: dfIndexeddb Developers <dfindexeddb-dev@googlegroups.com>
@@ -283,14 +283,61 @@ installation:
283
283
 
284
284
  ```
285
285
  $ dfindexeddb -h
286
- usage: dfindexeddb [-h] -s SOURCE [-o {json,jsonl,repr}]
286
+ usage: dfindexeddb [-h] {db,ldb,log} ...
287
287
 
288
288
  A cli tool for parsing indexeddb files
289
289
 
290
+ positional arguments:
291
+ {db,ldb,log}
292
+ db Parse a directory as indexeddb.
293
+ ldb Parse a ldb file as indexeddb.
294
+ log Parse a log file as indexeddb.
295
+
296
+ options:
297
+ -h, --help show this help message and exit
298
+ ```
299
+
300
+ To parse Indexeddb records from a LevelDB folder, use the following command:
301
+
302
+ ```
303
+ dfindexeddb db -h
304
+ usage: dfindexeddb db [-h] -s SOURCE [--use_manifest] [-o {json,jsonl,repr}]
305
+
290
306
  options:
291
307
  -h, --help show this help message and exit
292
308
  -s SOURCE, --source SOURCE
293
309
  The source leveldb folder
310
+ --use_manifest Use manifest file to determine active/recovered records.
311
+ -o {json,jsonl,repr}, --output {json,jsonl,repr}
312
+ Output format. Default is json
313
+ ```
314
+
315
+ To parse Indexeddb records from a LevelDB ldb (.ldb) file, use the following
316
+ command:
317
+
318
+ ```
319
+ dfindexeddb ldb -h
320
+ usage: dfindexeddb ldb [-h] -s SOURCE [-o {json,jsonl,repr}]
321
+
322
+ options:
323
+ -h, --help show this help message and exit
324
+ -s SOURCE, --source SOURCE
325
+ The source .ldb file.
326
+ -o {json,jsonl,repr}, --output {json,jsonl,repr}
327
+ Output format. Default is json
328
+ ```
329
+
330
+ To parse Indexeddb records from a LevelDB log (.log) file, use the following
331
+ command:
332
+
333
+ ```
334
+ dfindexeddb log -h
335
+ usage: dfindexeddb log [-h] -s SOURCE [-o {json,jsonl,repr}]
336
+
337
+ options:
338
+ -h, --help show this help message and exit
339
+ -s SOURCE, --source SOURCE
340
+ The source .log file.
294
341
  -o {json,jsonl,repr}, --output {json,jsonl,repr}
295
342
  Output format. Default is json
296
343
  ```
@@ -314,6 +361,21 @@ options:
314
361
  -h, --help show this help message and exit
315
362
  ```
316
363
 
364
+ To parse records from a LevelDB folder, use the following command:
365
+
366
+ ```
367
+ dfindexeddb db -h
368
+ usage: dfindexeddb db [-h] -s SOURCE [--use_manifest] [-o {json,jsonl,repr}]
369
+
370
+ options:
371
+ -h, --help show this help message and exit
372
+ -s SOURCE, --source SOURCE
373
+ The source leveldb folder
374
+ --use_manifest Use manifest file to determine active/recovered records.
375
+ -o {json,jsonl,repr}, --output {json,jsonl,repr}
376
+ Output format. Default is json
377
+ ```
378
+
317
379
  To parse records from a LevelDB log (.log) file, use the following command:
318
380
 
319
381
  ```
@@ -1,29 +1,29 @@
1
1
  dfindexeddb/__init__.py,sha256=KPYL9__l8od6_OyDfGRTgaJ6iy_fqIgZ-dS2S-e3Rac,599
2
2
  dfindexeddb/errors.py,sha256=PNpwyf_lrPc4TE77oAakX3mu5D_YcP3f80wq8Y1LkvY,749
3
3
  dfindexeddb/utils.py,sha256=pV2blFnMxDwk3kBRK6UVji66ctkYpm6wfH9p0jCC7Nk,8797
4
- dfindexeddb/version.py,sha256=C12mR3wnugr_HU5XlJyKf5YbZV8ogsGEryz9GfirOxk,751
4
+ dfindexeddb/version.py,sha256=9l1f_ZrRYqrqSAqNJB60Bvu4BzyNlWXvowSOCQQtpKw,751
5
5
  dfindexeddb/indexeddb/__init__.py,sha256=kExXSVBCTKCD5BZJkdMfUMqGksH-DMJxP2_lI0gq-BE,575
6
- dfindexeddb/indexeddb/cli.py,sha256=HX1Gt0VHRozz7Gu01Z33ELA-zwJQse9uxZOLzsZG1dI,3497
6
+ dfindexeddb/indexeddb/cli.py,sha256=apS5gfiJdkBJs5rLCAol5LzJ_d9lrHyWWfSqGupqp_w,6851
7
7
  dfindexeddb/indexeddb/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  dfindexeddb/indexeddb/chromium/__init__.py,sha256=kExXSVBCTKCD5BZJkdMfUMqGksH-DMJxP2_lI0gq-BE,575
9
- dfindexeddb/indexeddb/chromium/blink.py,sha256=-NtFSdvq0x4UClV7YFlR_D2e9gFQJSAcNstODqHReSw,3566
10
- dfindexeddb/indexeddb/chromium/definitions.py,sha256=yline3y3gmZx6s-dwjpPDNs5HO4zT6KZqPWQfEsHDoM,7413
11
- dfindexeddb/indexeddb/chromium/record.py,sha256=JnDtR6FdnDYj_3TAHngbOFpOJNRtwBAfQn2ovSC2t7A,44731
12
- dfindexeddb/indexeddb/chromium/v8.py,sha256=KapJqC1dbfHXOi0YYSw6Yq9tvX6XriNv6Q52pdti0-I,21902
9
+ dfindexeddb/indexeddb/chromium/blink.py,sha256=Sa5BvDkuwXg2IPc4iUDkNA9cbQKpMnXd3bPpNWSPG0I,32122
10
+ dfindexeddb/indexeddb/chromium/definitions.py,sha256=1a-AmHVZ95uDB6se_fdarwJR8q0tFMQNh2xrZ2-VxN8,8739
11
+ dfindexeddb/indexeddb/chromium/record.py,sha256=VJAXBgqWirS8Xjatf8_lNsepvZ3ix00JSpg8UveK9jE,45079
12
+ dfindexeddb/indexeddb/chromium/v8.py,sha256=NsbMgA6nRcAfdLg6CFwWadwsDS6TJ95-4MrgphaTuLw,22102
13
13
  dfindexeddb/indexeddb/firefox/__init__.py,sha256=kExXSVBCTKCD5BZJkdMfUMqGksH-DMJxP2_lI0gq-BE,575
14
14
  dfindexeddb/indexeddb/safari/__init__.py,sha256=kExXSVBCTKCD5BZJkdMfUMqGksH-DMJxP2_lI0gq-BE,575
15
15
  dfindexeddb/leveldb/__init__.py,sha256=KPYL9__l8od6_OyDfGRTgaJ6iy_fqIgZ-dS2S-e3Rac,599
16
- dfindexeddb/leveldb/cli.py,sha256=B86OFZOiMq8Z1AFr_UY5L1D4aIqi78hF7BbyXnSr4a4,7776
17
- dfindexeddb/leveldb/definitions.py,sha256=wwm0uySOeI0-2fG9KvrY-StE0NP3iW5mCEuKYQL4ahg,1436
16
+ dfindexeddb/leveldb/cli.py,sha256=K_AnRyNteYbyd8Lz-4bPHJpyeFEYFqSPNE_wpp1-FrY,8060
17
+ dfindexeddb/leveldb/definitions.py,sha256=lPW_kjc47vyoGOoEWfgWvKcpGbN-0h7XXwCeMoFmYKk,1486
18
18
  dfindexeddb/leveldb/descriptor.py,sha256=WR3irG16oIE6VbaP9UPnzOD3KlHR8GYFnoeG6ySJUzU,12211
19
19
  dfindexeddb/leveldb/ldb.py,sha256=mN-M7PLtE_VLZCbCbzRgjkSezbMUhgDjgWgPgIxJ1jM,8087
20
20
  dfindexeddb/leveldb/log.py,sha256=QeH8oESOPEZUjANGiDRSmXZa2SuoKlPFBJY7SxTV1lg,9209
21
- dfindexeddb/leveldb/record.py,sha256=AnM4kQb81igmJla5q3rQUYvlzPwZaEHTvauxOC_dtM8,3217
21
+ dfindexeddb/leveldb/record.py,sha256=0wXVibHC8QX8NQRsG9jcTlEb2rvaBFta20pOXdKFRMU,6170
22
22
  dfindexeddb/leveldb/utils.py,sha256=RgEEZ7Z35m3CcOUypAiViQSzKjBgSXZ3aeJhQjY3H9w,3748
23
- dfindexeddb-20240402.dist-info/AUTHORS,sha256=QbvjbAom57fpEkekkCVFUj0B9KUMGraR510aUMBC-PE,286
24
- dfindexeddb-20240402.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
25
- dfindexeddb-20240402.dist-info/METADATA,sha256=nApZZzcJEpzjs8JKAa3vvNa2zGIcKT78Qz3djSp4-w8,18100
26
- dfindexeddb-20240402.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
27
- dfindexeddb-20240402.dist-info/entry_points.txt,sha256=WG9YNLZ9lBx4Q9QF6wS4dZdZfADT3Zs4_-MV5TcA0ls,102
28
- dfindexeddb-20240402.dist-info/top_level.txt,sha256=X9OTaub1c8S_JJ7g-f8JdkhhdiZ4x1j4eni1hdUCwE4,12
29
- dfindexeddb-20240402.dist-info/RECORD,,
23
+ dfindexeddb-20240417.dist-info/AUTHORS,sha256=QbvjbAom57fpEkekkCVFUj0B9KUMGraR510aUMBC-PE,286
24
+ dfindexeddb-20240417.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
25
+ dfindexeddb-20240417.dist-info/METADATA,sha256=Mw_W56yj0csKALgtIpn1gS4Po8sfSn6bPMnpp5Hm_1o,19937
26
+ dfindexeddb-20240417.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
27
+ dfindexeddb-20240417.dist-info/entry_points.txt,sha256=WG9YNLZ9lBx4Q9QF6wS4dZdZfADT3Zs4_-MV5TcA0ls,102
28
+ dfindexeddb-20240417.dist-info/top_level.txt,sha256=X9OTaub1c8S_JJ7g-f8JdkhhdiZ4x1j4eni1hdUCwE4,12
29
+ dfindexeddb-20240417.dist-info/RECORD,,