-
Notifications
You must be signed in to change notification settings - Fork 56
/
CHANGES
6913 lines (4524 loc) · 210 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DFF (Digital Forensics Framework)
See the CHANGES.current file for changes in the current version.
See the RELEASENOTES file for a summary of changes in each release.
Version 1.3.0 (27 February 2013)
===============================
CHANGES after 10/04/11 are now split in corresponding category.
* ui repository :
-------------
Author: fba <fba@arxsys.fr>
Date: Mon Feb 18 13:39:29 2013 +0100
update of usage message
Author: fba <fba@arxsys.fr>
Date: Thu Feb 14 10:59:01 2013 +0100
fixes bad unicode handling in processus state
Author: fba <fba@arxsys.fr>
Date: Tue Feb 12 18:15:13 2013 +0100
update of french translation
Author: fba <fba@arxsys.fr>
Date: Tue Feb 12 18:12:02 2013 +0100
update of german and french translation
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 17:08:50 2013 +0100
use inheritance for modules_path launcher
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 19:21:22 2013 +0100
* Update to new building macros
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 13:46:24 2013 +0100
* Changes in target creation
Author: sja <sja@digital-forensic.org>
Date: Tue Dec 4 12:19:35 2012 +0100
FIX for widget without titleName use widget name
Author: sja <sja@digital-forensic.org>
Date: Mon Dec 3 19:27:49 2012 +0100
FIX 'toolbar' translation for browser, now mainwindow use windowTitle as id not widget.name()
Author: fba <fba@arxsys.fr>
Date: Mon Dec 3 11:45:45 2012 +0100
Adds German translation provided by D. Schreiber
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 20:11:54 2012 +0100
update translation for taskmanager
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 18:36:53 2012 +0100
remove old indexation engine
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 16:36:30 2012 +0100
update for translation
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 11:37:05 2012 +0100
FIX translation loading
Author: sja <sja@digital-forensic.org>
Date: Wed Nov 14 17:09:46 2012 +0100
update french translation
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 8 17:48:32 2012 +0100
fix import
* modules repository :
-------------------
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 25 11:42:30 2013 +0100
FIX module local : typo in attribute name (orignal for original)
Author: sja <sja@digital-forensic.org>
Date: Fri Feb 22 17:16:39 2013 +0100
module exchange : rename __identifier to __id because it's keyword for VS ...
Author: sja <sja@digital-forensic.org>
Date: Thu Feb 21 11:12:58 2013 +0100
Change module/mfso name from pff to exchange
Author: sja <sja@digital-forensic.org>
Date: Tue Feb 19 16:28:40 2013 +0100
FIX #181 PFF fix bug with item attachments
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 18 19:30:57 2013 +0100
FIX pff bug introducing a new structure ItemInfo to handle item type and recovery more easily and dynamically
Author: fba <fba@arxsys.fr>
Date: Thu Feb 14 11:23:10 2013 +0100
fixes issue with self.vnode which was still a variant
Author: sja <sja@digital-forensic.org>
Date: Wed Feb 13 14:44:30 2013 +0100
fix hexeditor add try/catch for open/close
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 17:41:09 2013 +0100
pff_fix test
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 14:27:16 2013 +0100
delete experimental will move it to parent directory
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 14:23:13 2013 +0100
Module name, description or category was changed to be clearer
Author: fba <fba@arxsys.fr>
Date: Thu Jan 31 13:07:55 2013 +0100
* Carver GUI
** Adds checks and appropriate message box when:
*** No items have been selected
*** Input is a folder
Author: sja <sja@digital-forensic.org>
Date: Tue Jan 29 12:15:14 2013 +0100
FIX possible infinite loop on lnk modules applyied on carved or bad lnk
Author: fba <fba@arxsys.fr>
Date: Wed Jan 16 14:42:43 2013 +0100
*Build process Windows
** Changes *.dll with respective _DYN_LIBRARIES cmake variables
Author: jmo <jmo@arxsys.fr>
Date: Tue Jan 15 15:13:40 2013 +0100
Fixes #152 : Search from cursor error
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 13:44:36 2013 +0100
* Include pyrun.swg in all .i files
* Changes CMakeLists.txt to support dff_cpp_module macro
Author: sja <sja@digital-forensic.org>
Date: Mon Jan 7 18:13:16 2013 +0100
Use new method to update state of the hash attributes
Author: fba <fba@arxsys.fr>
Date: Mon Jan 7 15:06:36 2013 +0100
adds a new config parameters for footer instead of using existing one. Made double free when deleting config
Author: fba <fba@arxsys.fr>
Date: Fri Dec 14 16:04:26 2012 +0100
* Extract
** adds better event handling for reporting failed extraction and renamed files
Author: fba <fba@arxsys.fr>
Date: Fri Dec 7 18:39:21 2012 +0100
* Modules regviewer
** Adds absolute "path" information and timestamp for each key
Author: cma <cma@digital-forensic.org>
Date: Thu Dec 6 18:35:31 2012 +0100
* NTFS improvements
** Adds filesystem parameters as attributes to the "NTFS" top-level node
** Adds the MFT cluster number as attribute for each file or directory
** Adds the first data cluster as attribute for each file
** Creates a "NTFS unallocated" node near the top-level module node
*** Filled with unallocated area from the $Bitmap file
*** Each node file is a continuous unallocated area named "starting cluster--ending cluster"
*** This commit refs #167, need feedback.
Author: cma <cma@digital-forensic.org>
Date: Mon Dec 3 17:52:04 2012 +0100
* NTFS Fixes
** Infinite loop in directory parsing resulting in NTFS module never ends
** Random files detection on huge directory
Author: udgover <udgover@orion.(none)>
Date: Wed Nov 28 06:53:34 2012 +0100
fixes an issue due to ModuleRoot asking absolute to early. RegisterTree of RootNode is called before creating subtrees
Author: udgover <udgover@orion.(none)>
Date: Wed Nov 28 06:52:37 2012 +0100
adding UTF16-LE, UTF16-BE decoders and adds support to 64 bits timestamps in Date decoder
Author: udgover <udgover@orion.(none)>
Date: Wed Nov 28 06:51:40 2012 +0100
fixes some issues with bad timestamp
Author: udgover <udgover@orion.(none)>
Date: Wed Nov 28 06:51:13 2012 +0100
if first character of objectName < 0x05, remove it
Author: sja <sja@digital-forensic.org>
Date: Fri Nov 9 16:10:57 2012 +0100
Module use new 'relative' loading method
* API repository :
-----------------
Author: sja <sja@digital-forensic.org>
Date: Wed Feb 20 14:45:40 2013 +0100
FIX thread concurrency problem
Author: sja <sja@digital-forensic.org>
Date: Tue Feb 12 14:40:46 2013 +0100
FIX UTF-8 display for node absolute path in configuration widget
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 17:30:24 2013 +0100
add thread name to taskmanager
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 17:30:00 2013 +0100
add worker name to scheduler thread
Author: fba <fba@arxsys.fr>
Date: Thu Jan 17 11:24:23 2013 +0100
* Building process
** remove target's name from install_file
Author: sja <sja@digital-forensic.org>
Date: Thu Jan 17 11:01:05 2013 +0100
extract add check before closing file if open fail
Author: sja <sja@digital-forensic.org>
Date: Wed Jan 16 18:21:22 2013 +0100
set import api.gui.video
Author: sja <sja@digital-forensic.org>
Date: Wed Jan 16 18:12:31 2013 +0100
gui/thumbnail.py FIX infinite blocking loop when video api is not present and trying to thumbnail certain video also limit thumbnail size to 100Mo for image to avoid error on false postive file type
Author: sja <sja@digital-forensic.org>
Date: Wed Jan 16 18:12:00 2013 +0100
vfs/extract more verbose error msg when extracted file can't match node size
Author: sja <sja@digital-forensic.org>
Date: Wed Jan 16 15:49:56 2013 +0100
vfs/extract add more error check for extraction
Author: sja <sja@digital-forensic.org>
Date: Wed Jan 16 13:14:13 2013 +0100
close file on exception
Author: fba <fba@arxsys.fr>
Date: Tue Jan 15 13:52:35 2013 +0100
adds missing %include in swig file of libdevices to be able to use EXPORT
Author: fba <fba@arxsys.fr>
Date: Tue Jan 15 11:05:27 2013 +0100
* Windows compilation and runtime issues fixed
** without EXPORT in device.hpp and wmidev.hpp, devices.lib is not created and _libdevices.pyd cannot link
** path to magic.mgc in magichandler.py didn't reflect new pathes organisation
** path to *.dll in magic.py didn't reflect new pathes orgatisation
** linked libraries were not coherent for datatype (change datatypes to types...)
** CMakeLists.txt for devices under Windows didn't provide cpp files
** CMakeLists.txt in search didn't provide __init__.py because of bad variables handling
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 19:19:10 2013 +0100
* Update to the new building macro
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 13:42:02 2013 +0100
* Adds pyrun.swg in all .i files to support our patch to SWIG
* changes CMakeLists.txt by using dff_cpp_api macro
Author: jmo <jmo@arxsys.fr>
Date: Fri Jan 11 13:10:30 2013 +0100
Fixes #158, refresh queries line edit on various actions
Author: sja <sja@digital-forensic.org>
Date: Fri Jan 11 12:35:15 2013 +0100
node_list, thumbnail more detailed error message
events/eventhandler remove error message
vfs/extract.py add static method to check freespace on a disk relative to a path
Author: jmo <jmo@arxsys.fr>
Date: Fri Jan 11 10:58:03 2013 +0100
Fixes #88, save state of sort in navigation, and default sort when changing model list
Author: jmo <jmo@arxsys.fr>
Date: Fri Jan 11 10:23:54 2013 +0100
Fixes #170 Stop scrolling when searching
Author: fba <fba@arxsys.fr>
Date: Wed Jan 9 11:30:36 2013 +0100
* Variant
** fixes a bug when dealing with Variant of type Char
Author: sja <sja@digital-forensic.org>
Date: Tue Jan 8 18:57:49 2013 +0100
FIX widget resize bug who sometimes lead to crash because of refreshing node_list item scrollbar
Author: sja <sja@digital-forensic.org>
Date: Mon Jan 7 18:11:22 2013 +0100
fixes #162
Add new classes and method to update the state of attributes caches
Author: sja <sja@digital-forensic.org>
Date: Mon Jan 7 18:08:20 2013 +0100
fixes #162
Add new classes AttributesHandlers to more easily manage AttributeHandler and to update the state and notice the DynamicAttribute cache
Add new virtual method _attributesState to update the state of the AttributeCache
Author: fba <fba@arxsys.fr>
Date: Fri Dec 14 16:03:07 2012 +0100
* API: Extract
** adds new notification when file is renamed
** better enclose possible error in try / except with notification for each
Author: sja <sja@digital-forensic.org>
Date: Thu Dec 13 19:29:48 2012 +0100
extract return utf8-encoded renamed file name
Author: fba <fba@arxsys.fr>
Date: Thu Dec 13 17:41:44 2012 +0100
* API: Extract
** fixes too much arguments provided for extractFolder
Author: sja <sja@digital-forensic.org>
Date: Thu Dec 13 17:06:15 2012 +0100
fix for non utf-8 system
Author: fba <fba@arxsys.fr>
Date: Thu Dec 13 17:08:02 2012 +0100
* API: Extract
** fixes strange folder renaming behaviour
** changes renaming type for file. It is now based on node uid
** overwrite is better handled
Author: sja <sja@digital-forensic.org>
Date: Thu Dec 13 13:33:19 2012 +0100
FIX extract API for system not using utf-8 as default encoding
Author: sja <sja@digital-forensic.org>
Date: Tue Dec 4 13:09:18 2012 +0100
FIX: try/catch attribute handler to get some attributes even if there is errors
Author: sja <sja@digital-forensic.org>
Date: Fri Nov 30 17:45:05 2012 +0100
Lock refcount
Author: sja <sja@digital-forensic.org>
Date: Fri Nov 30 10:36:20 2012 +0100
FIX refcount issue
Author: udgover <udgover@orion.(none)>
Date: Wed Nov 28 06:49:29 2012 +0100
private methods going public to enable chunk
Author: sja <sja@digital-forensic.org>
Date: Tue Nov 27 13:31:30 2012 +0100
processus is info is now upcase
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 22 14:06:15 2012 +0100
Taskmanager : add a default output class
Author: fba <fba@arxsys.fr>
Date: Wed Nov 21 16:04:45 2012 +0100
* API / GUI
** fixes bad variable substitution while performing unicode in launchFilter method
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 19:30:07 2012 +0100
FIX devices library import for windows
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 18:36:09 2012 +0100
remove old and unused indexation engine
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 16:33:34 2012 +0100
update for translation
Author: fba <fba@arxsys.fr>
Date: Wed Nov 14 17:57:54 2012 +0100
* API: devices
** Uses UDEV_LIBRARY set by cmake instead of -ludev
Author: fba <fba@arxsys.fr>
Date: Wed Nov 14 17:21:58 2012 +0100
* API: devices
** better management to take into account udev library and headers files
Author: sja <sja@digital-forensic.org>
Date: Wed Nov 14 13:02:25 2012 +0100
FIX utf8 encoded string for additional column
Author: sja <sja@digital-forensic.org>
Date: Tue Nov 13 15:00:03 2012 +0100
FIX Unicode search & filters, remove dead code
Author: sja <sja@digital-forensic.org>
Date: Fri Nov 9 16:03:11 2012 +0100
loader : add method modulesPaths() to get path for modules/__init__.py
module: FIX Config owner problem who lead to crash when re-loading a module
* cmake_modules repository :
------------------------
Author: fba <fba@arxsys.fr>
Date: Wed Jan 16 12:26:48 2013 +0100
fixes some issues for ICU libraries lookup
Author: fba <fba@arxsys.fr>
Date: Tue Jan 15 19:02:22 2013 +0100
fixes bad variables setting under windows
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 19:15:54 2013 +0100
* Fixes an issue in FindICU which was not able to find all components
* Main repository :
-----------------
Author: fba <fba@arxsys.fr>
Date: Thu Feb 14 11:08:13 2013 +0100
provides named parameters when instanciating ui class.
Author: fba <fba@arxsys.fr>
Date: Tue Feb 12 15:32:52 2013 +0100
adds unsupported submodule and update of api
Author: sja <sja@digital-forensic.org>
Date: Mon Feb 11 17:10:25 2013 +0100
use inheritance for modules path loading rather than copy/paste of imcomprehnsible code
Author: fba <fba@arxsys.fr>
Date: Thu Jan 31 13:27:34 2013 +0100
Packaging, remove pyc at uninstall
Author: fba <fba@arxsys.fr>
Date: Thu Jan 31 11:17:08 2013 +0100
* Build process under Windows
** better dependencies management for packaging pass
Author: fba <fba@arxsys.fr>
Date: Wed Jan 30 17:21:34 2013 +0100
moving some section before cpack configuration to have coherent install / deinstall process on Windows
Author: fba <fba@arxsys.fr>
Date: Wed Jan 30 13:20:57 2013 +0100
changes minimum version of swig to 2.0.7
Author: fba <fba@arxsys.fr>
Date: Wed Jan 30 13:05:55 2013 +0100
* Adds Prerequisites submodules
Author: fba <fba@arxsys.fr>
Date: Wed Jan 30 13:01:05 2013 +0100
* Change dff's icon
Author: fba <fba@arxsys.fr>
Date: Thu Jan 17 12:46:11 2013 +0100
* Build process Windows
** changes to provide working installer
Author: fba <fba@arxsys.fr>
Date: Wed Jan 16 15:57:30 2013 +0100
* Building process:
** Change macro filename_to_path to split_path_file_extension which set __PATH__, __FILE__, __EXTENSION__ when appropriate
Author: fba <fba@arxsys.fr>
Date: Wed Jan 16 14:28:52 2013 +0100
minor fixes for file command <copy> must be in uppercase
Author: fba <fba@arxsys.fr>
Date: Wed Jan 16 14:07:36 2013 +0100
* Build Process Windows
** update for building the project under Windows
** adds a new macro filename_from_path and set ${filename} variable
Author: fba <fba@arxsys.fr>
Date: Tue Jan 15 15:08:57 2013 +0100
fixes issue for version of cmake < 2.8.9
Author: fba <fba@arxsys.fr>
Date: Tue Jan 15 11:11:45 2013 +0100
* CMakeLists.txt minor changes in path_to_target for windows build process
* update of dff/api submodules
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 19:22:23 2013 +0100
* Update all building process to new cmake macros
Author: fba <fba@arxsys.fr>
Date: Mon Jan 14 13:48:28 2013 +0100
* Refactored all target creation system.
** Adds new macros to ease target creation for api and modules
*** dff_cpp_api is used to create DFF's API libraries
*** dff_cpp_module is used to create DFF's modules
** targets' name are now based on their current path
*** it is now possible to do make dff.api.vfs
*** all parent targets depend on their children i.e.: make dff.api will call each subtargets
Author: fba <fba@arxsys.fr>
Date: Wed Jan 9 11:50:33 2013 +0100
* Adds new submodule 'doc' dedicated to documentation
Author: fba <fba@arxsys.fr>
Date: Wed Jan 9 11:34:21 2013 +0100
* remove of docs folder
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 20:13:09 2012 +0100
update translation for taskmanager
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 18:40:28 2012 +0100
remove old and unused indexation engine
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 15 16:43:56 2012 +0100
translation update
Author: fba <fba@arxsys.fr>
Date: Wed Nov 14 18:14:03 2012 +0100
remove of backup cmake_modules
Author: fba <fba@arxsys.fr>
Date: Wed Nov 14 18:13:05 2012 +0100
* change cmake_modules as a submodule
Author: fba <fba@arxsys.fr>
Date: Wed Nov 14 17:58:43 2012 +0100
** adds FindUDEV.cmake
** find_package(udev), ...
Author: fba <fba@arxsys.fr>
Date: Mon Nov 12 15:51:12 2012 +0100
update of FindTRE.cmake
Author: sja <sja@digital-forensic.org>
Date: Fri Nov 9 16:20:06 2012 +0100
new loading mechanism for modules
Author: sja <sja@digital-forensic.org>
Date: Thu Nov 8 17:49:04 2012 +0100
FIX import in ui
Advanced search bugfix; enable thread
** add %option never-interactive in scanner to not add isatty
Author: cma <cma@digital-forensic.org>
Date: Thu Oct 25 16:59:59 2012 +0200
Windows compilation error C2589 fix in video. Some other header file is polluting the global name space with a max macro.
Author: cma <cma@digital-forensic.org>
Date: Thu Oct 25 16:56:59 2012 +0200
Windows compilation : missing code after %extend
Author: cma <cma@digital-forensic.org>
Date: Thu Oct 25 16:29:12 2012 +0200
Windows compilation : include missing
Author: cma <cma@digital-forensic.org>
Date: Thu Oct 25 15:42:02 2012 +0200
FFMpeg DLLs dependencies versions bump for Win32.
Author: fba <fba@arxsys.fr>
Date: Wed Oct 24 14:38:41 2012 +0200
* API Types
** minor changes to render correctly str on nodes attributes in python
*** in libtypes.i map.__str__ did not provide key
*** in variant.cpp toString for vtime did not add single quote
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 24 14:19:05 2012 +0200
add rootnode to swig .i files
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 24 13:02:36 2012 +0200
vlink change in ui/gui
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 24 13:01:34 2012 +0200
add vlink to variant
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 24 12:58:51 2012 +0200
add rootnode for modules
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 17 17:11:43 2012 +0200
Remove all 'using namespace std' and put std:: where it's needed
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 17 13:13:57 2012 +0200
HEADER REFACTO include less in .hpp do forward declaration import in cpp !
Author: fba <fba@arxsys.fr>
Date: Tue Oct 16 21:35:18 2012 +0200
* API: GUI
** changes contains with matches in clauses
Author: sja <sja@digital-forensic.org>
Date: Tue Oct 16 11:41:02 2012 +0200
processus add lock on exists
Author: sja <sja@digital-forensic.org>
Date: Mon Oct 15 15:09:36 2012 +0200
Cache delref fix
Author: sja <sja@digital-forensic.org>
Date: Mon Oct 15 13:12:30 2012 +0200
Use a template for class Cache
Author: sja <sja@digital-forensic.org>
Date: Mon Oct 15 12:39:49 2012 +0200
Add cache for attribute & dynamicAttribute
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 10 15:21:12 2012 +0200
Move cache & pool used in mfso to cachefile to prepare for attribute cache
nothing added in node just group similar function in the file to be more redable
Author: sja <sja@digital-forensic.org>
Date: Wed Oct 10 13:38:30 2012 +0200
small optim of decoder
Author: sja <sja@digital-forensic.org>
Date: Tue Oct 9 17:11:33 2012 +0200
forget to unlock new method fsobjArgumentsByType
Author: sja <sja@digital-forensic.org>
Date: Tue Oct 9 17:02:03 2012 +0200
check if proc was found by fsobj before returning
Author: sja <sja@digital-forensic.org>
Date: Tue Oct 9 16:58:53 2012 +0200
add proc by fsobj and fsbojArgumentsByType method in processus manager
Author: fba <fba@arxsys.fr>
Date: Mon Oct 8 17:37:01 2012 +0200
* API: Filter
** adds 'path' keyword
** adds wildcard support for attributes
*** useful while looking for multiple Recipients with mailboxes: @pff.Recipients.*.Display Name@ matches any of ["Alonso", "Tom", $*Tim*$]
Author: fba <fba@arxsys.fr>
Date: Mon Oct 8 16:37:52 2012 +0200
* API: Filter
** it is now possible to use == with string
** replaces contain with matches
Author: sja <sja@digital-forensic.org>
Date: Mon Oct 1 13:12:06 2012 +0200
delete variant in astnode.cpp:976 lead to crash
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 27 14:58:10 2012 +0200
Add a question if the same module with the same conf was already applied
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 27 12:52:45 2012 +0200
fix try/catch on bad value for libtypes.i
metaexif set date tags to vtime
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 24 15:26:39 2012 +0200
remove lock unecessary after swig patch
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 24 15:14:59 2012 +0200
FIX node_list in case of attributesByType throw
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 24 15:12:33 2012 +0200
add some try/catch but maybe not needed as fixed elsewhere
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 24 15:10:23 2012 +0200
FIX small memory leaks and try/catch on dynamicAttributes & fsoAttributes in case of throwing modules attributes method
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 20 19:42:44 2012 +0200
Selectattributes : Add default attribute and fix other little things (cancel button , ...)
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 20 16:29:10 2012 +0200
hash: add a lock release after a try catch to avoid dead lock !
selectattributes code is now merged (to use right click select all, etc.. in select attributes)
nodelistwidgets fix bug for column sort on vtime (use vtime.get_time and special func key sort because vtime.operator< have a really strange behavior ..)
and use a key function to avoid None datetime value and none obj
nodelistwidgets now header(s) are movable so
Author: sja <sja@digital-forensic.org>
Date: Wed Sep 19 17:31:40 2012 +0200
date text correction
Author: sja <sja@digital-forensic.org>
Date: Wed Sep 19 16:56:18 2012 +0200
check if udev in libdevices.i
Author: cma <cma@digital-forensic.org>
Date: Wed Sep 19 16:19:52 2012 +0200
* BFIO and PFF required version was swapped
Author: sja <sja@digital-forensic.org>
Date: Wed Sep 19 16:10:42 2012 +0200
varianttreewidget now it's possible to copy attribute or value directly by right clicking
Author: sja <sja@digital-forensic.org>
Date: Wed Sep 19 14:34:22 2012 +0200
variant treewidget on double-click show attribute & value, now it's copyable
Author: cma <cma@digital-forensic.org>
Date: Wed Sep 19 14:31:53 2012 +0200
* Build process
** Checks required version of libbfio & libpff, don't build the mailbox module otherwise
** Cleans status messages
** modules/connector/CMakeLists.txt checks for EWF but not for BFIO it has to be fixed
Author: jmo <jmo@arxsys.fr>
Date: Wed Sep 19 11:19:38 2012 +0200
Add registry viewer
Author: sja <sja@digital-forensic.org>
Date: Tue Sep 18 11:09:42 2012 +0200
PFF & libbfio update for the last lib version (libbfio 20120425 & libpff20120802) need to update CMakeList accordingly
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 17 16:46:05 2012 +0200
add use udev rule to be sure to build even if udev not present
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 17 16:32:57 2012 +0200
Device: add a new device library compatibility with libudev build should continue even if udev is not found (linux < 2.6 or using HAL) -> must add this in MakeFile
Author: sja <sja@digital-forensic.org>
Date: Mon Sep 17 09:05:16 2012 +0200
taskmanager add first sort column as int
Author: sja <sja@digital-forensic.org>
Date: Fri Sep 14 18:04:31 2012 +0200
fix for designer taskmanager
Author: sja <sja@digital-forensic.org>
Date: Fri Sep 14 18:03:09 2012 +0200
Add sort to task manager
Author: cma <cma@digital-forensic.org>
Date: Fri Sep 14 15:36:01 2012 +0200
Fixes for timeline not working when it encounters bad date like 0000-00-00 00:00:00.
Author: cma <cma@digital-forensic.org>
Date: Fri Sep 14 15:34:50 2012 +0200
Adds timestamps from $FILENAME attribute in each NTFS node. Also adds attribute offset from start of MFT entry.
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 13 16:10:33 2012 +0200
didn't use vlist anymore as there is sometime the same problem as vmap evn in different list
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 13 13:07:13 2012 +0200
remove some 'print' in extract.py
Author: fba <fba@arxsys.fr>
Date: Thu Sep 13 12:54:25 2012 +0200
* Modules: Carver
** fixes bad parameters settings
Author: sja <sja@digital-forensic.org>
Date: Wed Sep 12 17:32:03 2012 +0200
ADD a small but neat functionality, save the last opened in the window usefull when loading many files/directory different time
Author: sja <sja@digital-forensic.org>
Date: Tue Sep 11 16:20:03 2012 +0200
metacompund remove 'debug error'
Author: sja <sja@digital-forensic.org>
Date: Tue Sep 11 15:43:13 2012 +0200
FIX a bug in magichandler when open return -1 (fail)
UPDATE libbfio_wrapper now use latest version : 20120425
libpff now use latest version : 20120802 -> there is still
a bug on attachment of attachment even using clone mode
Author: sja <sja@digital-forensic.org>
Date: Tue Sep 11 15:43:13 2012 +0200
FIX a bug in magichandler when open return -1 (fail)
UPDATE libbfio_wrapper now use latest version : 20120425
libpff now use latest version : 20120802 -> there is still
a bug on attachment of attachment even using clone mode, it seem
to come from libpff itself.
Author: sja <sja@digital-forensic.org>
Date: Tue Sep 11 11:05:09 2012 +0200
mfso add a vfile cache not used yet
Author: jmo <jmo@arxsys.fr>
Date: Thu Sep 6 18:19:18 2012 +0200
Fix stop filter event; Fix visible rows in table/list view
Author: jmo <jmo@arxsys.fr>
Date: Thu Sep 6 17:38:55 2012 +0200
Fix search append item
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 6 15:01:35 2012 +0200
Add lacking EXPORT on addref/delref/refcount method on class FileMapping
Author: sja <sja@digital-forensic.org>
Date: Thu Sep 6 14:04:06 2012 +0200
FileMappingCache rewrote, lock fdmanager & lock filemapping should work better
No vfile pool yet, or page caching
Author: sja <sja@digital-forensic.org>
Date: Fri Aug 31 15:21:57 2012 +0200
Change video thumbnail QImage format from RGB32 to ARGB32
Author: jmo <jmo@arxsys.fr>
Date: Fri Aug 31 11:04:29 2012 +0200
Display last row and scroll by rows in icon view;