-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgitlog.txt
8912 lines (8912 loc) · 783 KB
/
gitlog.txt
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
[067476b4] 2021-11-08 05:48:15 +1100 dmex : Update guisup.c
[56fe1acb] 2021-11-08 04:39:37 +1100 dmex : Add basic PhApiSetResolveToHost support, peview: Add apiset name to import dll
[68057a60] 2021-11-08 01:34:34 +1100 dmex : Fix searchbox window borders on Win11
[1854250d] 2021-11-08 01:33:14 +1100 dmex : Update mainwnd.c
[be62f300] 2021-11-07 03:06:40 +1100 dmex : Update resource.h
[03ae70eb] 2021-11-07 03:06:20 +1100 dmex : Add update/reboot and update/shutdown menu options
[d0580e7a] 2021-11-07 01:07:24 +1100 Kai : Update readme links to https (#1026)
[2002f22e] 2021-11-05 13:00:37 +1100 dmex : NetworkTools: Fix whois text padding
[56f81a39] 2021-11-05 12:59:00 +1100 dmex : HardwareDevices: Fix RAPL graph tooltip showing incorrect values
[199ede86] 2021-11-05 12:58:13 +1100 dmex : Fix Win7 regression querying dos device prefixes
[a7c50cbf] 2021-11-05 12:57:07 +1100 dmex : ToolStatus: Fix searching network tab processnode information
[4187c48f] 2021-11-01 07:01:53 +1100 dmex : DotNetTools: Fix trace handle leak
[09ffb495] 2021-11-01 03:30:23 +1100 dmex : Fix delayload support for Windows 7, Fix CRT throwing exceptions when delayloads not found, Fix crash on Windows 7
[b8c78502] 2021-10-31 22:34:57 +1100 dmex : Fix dark theme menubar accelerators and text alignment
[0b58ec77] 2021-10-31 22:30:46 +1100 dmex : Fix dark theme menubar
[9c8192e5] 2021-10-31 21:28:27 +1100 dmex : Update ProcessHacker.def
[f75543f5] 2021-10-31 21:27:35 +1100 dmex : Add PhHttpSocketClose
[47619372] 2021-10-31 21:20:12 +1100 dmex : Update ProcessHacker.def
[97c6540f] 2021-10-31 21:05:41 +1100 dmex : Sync many performance improves, latest changes and bug fixes (#1021)
[392fef22] 2021-10-17 21:43:35 +1100 diversenok : Add definitions for boundary descriptors (#1004)
[76d00575] 2021-09-15 03:02:53 +1000 dmex : Fix dark theme menu background color
[f34f0334] 2021-09-14 00:23:49 +1000 dmex : Thirdparty: Update miniz to v2.2.0
[263f33c1] 2021-09-13 15:25:41 +1000 dmex : Fix thirdparty release builds
[32d8ee70] 2021-09-13 14:41:44 +1000 dmex : Update thirdparty libs
[7955e67f] 2021-09-13 14:37:29 +1000 dmex : Enable alerts when KPH blocked by third parties
[4a247ea0] 2021-09-13 07:41:43 +1000 dmex : NetworkTools: Update includes
[f7ee7d8e] 2021-09-13 07:39:26 +1000 dmex : Move miniz from CustomSetupTool project into thirdparty library
[8b080417] 2021-09-13 03:57:44 +1000 dmex : Move maxminddb from NetworkTools project into thirdparty library and update to v1.6.0
[d53d8e49] 2021-09-13 03:30:34 +1000 dmex : Move gzip from NetworkTools project into thirdparty library
[5d20f943] 2021-09-13 03:25:43 +1000 dmex : Add thirdparty.lib to plugin solutions
[6f398a77] 2021-09-13 00:00:00 +1000 dmex : peview: update include paths
[d56911e6] 2021-09-12 23:24:21 +1000 dmex : Move TLSH and SSDEEEP from peview project into thirdparty library
[4d0ad453] 2021-09-12 02:57:33 +1000 dmex : Add RtlInitUTF8String/RtlFreeUTF8String, Update SAL types
[e0514a16] 2021-09-12 02:48:10 +1000 dmex : Improve service search/list performance 83497f106 (Fixes #989)
[9e1771a9] 2021-09-10 15:38:56 +1000 dmex : Update ntrtl.h
[2475c4da] 2021-09-07 18:09:22 +1000 dmex : Improve service last write time lookup
[965384c0] 2021-09-07 17:21:42 +1000 dmex : Fix regression drawing timelines for modules and threads relative to process creation
[5968092b] 2021-09-07 16:55:00 +1000 dmex : Add timeline column to services tab
[a173c0b5] 2021-09-05 17:37:18 +1000 dmex : Update ntrtl.h
[cc83987f] 2021-09-03 23:42:42 +1000 dmex : ExtendedTools: Fix extended firewall columns being visible by default
[c7c16d18] 2021-09-03 23:30:53 +1000 dmex : peview: Add highlighting for image sections
[3ae02dca] 2021-09-03 14:45:41 +1000 dmex : ToolStatus: Third attempt at reworking toolbar regression #980
[d3c910e8] 2021-09-03 13:42:14 +1000 dmex : DotNetTools: Fix assembly sort regression
[bc2f89c4] 2021-09-02 13:46:12 +1000 Biswapriyo Nath : Fix ARMv7 process detection (#985)
[0b3ad1ea] 2021-09-02 13:38:53 +1000 Johnny Shaw : Fix ifdef for sys arch info (#986)
[2f218206] 2021-09-02 13:03:30 +1000 dmex : Update service properties string types
[eac3292a] 2021-09-02 12:52:50 +1000 Johnny Shaw : Conditionally define sys supported arch (#984)
[83497f10] 2021-09-02 10:26:32 +1000 dmex : Improve service search/list performance
[c2882786] 2021-09-02 10:10:02 +1000 dmex : SetupTool: Update name
[d47b4256] 2021-09-02 10:08:30 +1000 dmex : Add RtlReplaceSystemDirectoryInPath
[7e43d888] 2021-09-02 10:07:50 +1000 dmex : Add initial support for processor group cycle time and idle cycle time
[096836dc] 2021-09-02 10:03:29 +1000 dmex : Add PhGetProcessArchitecture
[27c3377a] 2021-09-02 06:59:51 +1000 Biswapriyo Nath : phnt: Fix Nt/ZwManagePartition declaration (#982)
[7b17f256] 2021-09-01 09:36:02 +1000 dmex : ExtendedTools: Allow scaling the GPU utilization when CPU scaling enabled
[3e584574] 2021-09-01 06:14:56 +1000 dmex : Rename PhFreeJsonParser to PhFreeJsonObject
[a0c72928] 2021-08-31 22:05:04 +1000 dmex : Add PhCustomDrawTreeTimeLine, Update timeline column with darkmode
[28d51d39] 2021-08-31 21:16:04 +1000 dmex : ToolStatus: Remove extra flag from commit 0159e06
[3a6b3eed] 2021-08-31 19:31:47 +1000 dmex : Tidy up PhGetProcessItemImageTypeText
[ac8578d8] 2021-08-31 19:30:48 +1000 dmex : Fix imagelist assert from token window
[64b54752] 2021-08-31 19:28:38 +1000 dmex : Fix .NET Core stack enumeration for xcopy installations
[de6cc562] 2021-08-31 19:23:18 +1000 dmex : Merge branch 'master' of https://github.com/processhacker/processhacker
[c737b47f] 2021-08-31 19:22:55 +1000 dmex : Update ntrtl.h
[b1aefc87] 2021-08-31 19:22:53 +1000 dmex : Update nttp.h
[24c634e6] 2021-08-31 13:32:33 +1000 Johnny Shaw : Account for code caves beyond on-disk section in imgcoherency (#979)
[15bdaad9] 2021-08-30 08:09:41 +1000 ge0rdi : Fix ARM64 compilation (#974)
[65b47031] 2021-08-30 05:36:08 +1000 dmex : Fix arm type #974
[873a5f86] 2021-08-30 05:33:09 +1000 dmex : PHNT: Add types
[553a59b3] 2021-08-30 05:32:42 +1000 dmex : Update ntbcd.h
[61c5affe] 2021-08-30 02:14:28 +1000 Johnny Shaw : Add arch to process tree (#972)
[caf9d83a] 2021-08-29 11:44:21 +1000 dmex : ExtendedTools: Fix gpu dedicated total when using GpuPerformanceCounters
[e37bb696] 2021-08-29 08:25:53 +1000 dmex : Add missing color typedef
[0185af50] 2021-08-29 08:23:48 +1000 dmex : Add PLM task support for minidumps (unused)
[d8e7a5d9] 2021-08-29 06:03:22 +1000 dmex : Update dump type to match taskmgr, Fix dump snapshots accessmask
[54c15f09] 2021-08-29 02:55:04 +1000 dmex : Fix more SAL
[1763f9fd] 2021-08-29 02:54:37 +1000 dmex : Fix SAL
[ce251f10] 2021-08-29 02:53:52 +1000 dmex : Fix Win11 dark frames
[b04da3fb] 2021-08-29 00:15:14 +1000 dmex : Add Win11 dark frame support, Fix some dark theme issues
[86650067] 2021-08-29 00:12:42 +1000 dmex : Add normal dump option to crash dialog
[5bd220de] 2021-08-28 17:45:06 +1000 Johnny Shaw : Fix bug in imgcoherency that was preventing inline hook detection (#969)
[be582c8f] 2021-08-28 04:24:47 +1000 dmex : DotNetTools: Add .NET Core support, Fix .NET Core thread stack enumeration #943
[0159e061] 2021-08-28 03:27:35 +1000 dmex : ToolStatus: Improve rebar menu redrawing, Fix rebar position changes when there are multiple menu plugins
[ed382636] 2021-08-28 03:23:17 +1000 dmex : Enable highlighting process environment groups
[31e3f03f] 2021-08-28 03:02:21 +1000 dmex : Plugins: Update json typedefs and imports
[d3336d41] 2021-08-28 02:50:04 +1000 dmex : Update json typedefs and exports, Improve json performance
[42c5d0c2] 2021-08-26 01:43:26 +1000 dmex : Fix refreshing process environment error status
[1e0274f3] 2021-08-25 22:53:14 +1000 dmex : Fix regression searching module addresses from commit de9cf1ee
[3d5c6dd1] 2021-08-25 22:01:21 +1000 dmex : Fix #961
[13ad82db] 2021-08-25 20:58:15 +1000 dmex : peview: Add CLR tab for portable PDBs, Add extra repro hashes
[98dd6c5f] 2021-08-25 20:43:16 +1000 dmex : peview: Add RVA for CLR imports
[9f54a04d] 2021-08-25 20:30:56 +1000 dmex : Update ntldr.h
[a4c8f0e2] 2021-08-25 20:12:33 +1000 dmex : Fix options plugin version info
[055f5907] 2021-08-25 19:41:18 +1000 dmex : ExtendedTools: Add class/scope columns to firewall tab, Fix remote address resolution
[fc7913ea] 2021-08-25 19:38:14 +1000 dmex : Update appresolverp.h
[d72257d6] 2021-08-25 19:38:03 +1000 dmex : Add missing copyright
[6810abd6] 2021-08-25 19:36:47 +1000 dmex : Update ntioapi.h
[e068524d] 2021-08-24 05:03:42 +1000 dmex : Update settings.c
[b4338e65] 2021-08-21 20:05:51 +1000 dmex : Update ntldr.h
[d4931074] 2021-08-21 15:23:00 +1000 dmex : Fix CLR_CORELIB flags
[3f93db73] 2021-08-21 15:20:16 +1000 dmex : Enable colorbox theme support
[a6347cc1] 2021-08-21 15:11:19 +1000 dmex : Add missing file from commit ddf63fa4a
[8c422f50] 2021-08-21 00:23:56 +1000 dmex : Update PhDelayExecution and remove legacy hack
[156d79d2] 2021-08-21 00:06:51 +1000 dmex : Fix inline stack walking regression
[33b21bdb] 2021-08-20 22:02:01 +1000 dmex : Add theme support to colorbox control, Add missing copyright
[ddf63fa4] 2021-08-20 21:30:57 +1000 dmex : Update thread stack window, Add inline frame highlighting, Add line information, Fix memory leak
[f2fb86a2] 2021-08-20 21:22:36 +1000 dmex : Add symbol provider inline frame support (2/2)
[614b22ed] 2021-08-20 18:46:27 +1000 dmex : Fix timeout macro codegen
[5bc880cb] 2021-08-19 18:07:55 +1000 dmex : Fix minidump support on Win10/11, Add symbol provider extended stack support, Add symbol provider inline frame support
[24f34758] 2021-08-19 17:34:26 +1000 dmex : Remove legacy error dialog for heap information since we now have PLM support
[0a467392] 2021-08-19 17:30:34 +1000 dmex : Add Windows 8 PLM support for frozen immersive processes
[6a26e9ca] 2021-08-19 03:18:10 +1000 dmex : Update ntpsapi.h
[20fd8288] 2021-08-19 02:25:18 +1000 dmex : Fix multiple legacy deadlock issues with frozen immersive processes
[23860b95] 2021-08-18 22:48:09 +1000 dmex : Fix typo
[d0d55687] 2021-08-18 22:30:59 +1000 dmex : Add PhCreateExecutionRequiredRequest/PhDestroyExecutionRequiredRequest
[31e7947f] 2021-08-16 09:16:48 +1000 dmex : Update ntldr.h
[b6644725] 2021-08-14 20:30:19 +1000 dmex : BuildTools: Update to .NET 5.0.9
[9a88948b] 2021-08-14 20:13:09 +1000 dmex : Add LsaLookupUserAccountType
[18bed504] 2021-08-14 08:51:21 +1000 dmex : Add QOL optimization for third party boot applications
[d4be1406] 2021-08-14 06:50:12 +1000 dmex : Fix start performance monitor and restart to firmware menus on Win7
[9c45eb90] 2021-08-14 05:04:55 +1000 dmex : Add PhGetProcessPeb
[4043b052] 2021-08-14 04:28:48 +1000 dmex : Update clrtableimports.cpp
[7aa61ac6] 2021-08-14 03:56:52 +1000 dmex : peview: Improve alternate CLR metadata interfaces
[d91f2083] 2021-08-14 00:47:50 +1000 dmex : 22000 SDK duplicate #945
[8afff310] 2021-08-13 08:40:37 +1000 dmex : Fix crash sorting network connections by timeline
[04479f7d] 2021-08-13 08:02:22 +1000 dmex : peview: Fix CLR imports window border setting
[75b931fc] 2021-08-13 07:39:30 +1000 dmex : Add restart to boot firmware application support via the shutdown menu
[26fbe412] 2021-08-13 07:27:18 +1000 dmex : Rename bcd wrapper helpers
[e47a93fa] 2021-08-13 06:48:03 +1000 dmex : Add fixlib_bcd\make_bcd_lib script
[118827a1] 2021-08-12 13:54:22 +1000 dmex : Add BCD wrapper to phlib
[03dbf33c] 2021-08-12 11:36:35 +1000 dmex : Add 'Start Resource Monitor' to main menu > tools menu
[4d4ca49a] 2021-08-12 11:29:09 +1000 dmex : peview: Add CLR Imports tab for managed imports
[683ba90a] 2021-08-12 11:27:05 +1000 dmex : Fix PhGetMappedImageDebugEntryByType SAL annotation
[bd4dc1e4] 2021-08-12 04:11:04 +1000 dmex : DotNetTools: Fix statistics excluding updates for plugin values
[7a13c4de] 2021-08-12 04:10:03 +1000 dmex : NetworkTools: Remove unspecified hostnames from tracert workqueue
[f2aa2500] 2021-08-12 04:08:07 +1000 dmex : HardwareDevices: Update unknown parameters
[88f196f0] 2021-08-12 03:57:54 +1000 dmex : ExtendedTools: Fix incorrect graph height calculation
[660c243c] 2021-08-12 02:15:30 +1000 dmex : Fix PhLoadLibraryAsImageResource/PhFreeLibraryAsImageResource using incorrect addresses
[938d1ad5] 2021-08-12 02:13:17 +1000 dmex : Update Plugins.props
[366b1730] 2021-08-12 00:16:26 +1000 dmex : Improve PhGetProcessIsDotNetEx performance for .NET Core processes
[0a2a8131] 2021-08-12 00:14:26 +1000 dmex : Fix treeview settings abstraction regression
[817bd565] 2021-08-12 00:12:24 +1000 dmex : Update ntbcd.h
[684800ab] 2021-08-12 00:10:58 +1000 dmex : Update ntd3dkmt.h
[2abb97e7] 2021-08-12 00:10:44 +1000 dmex : Update ntexapi.h
[12d0f0c4] 2021-08-12 00:10:27 +1000 dmex : Update ntldr.h
[87255da0] 2021-08-12 00:10:07 +1000 dmex : Update ntpoapi.h
[d8e60a44] 2021-08-12 00:09:25 +1000 dmex : Fix SAL annotation for RtlSetDacl/RtlSetSacl
[18ee886c] 2021-08-12 00:05:20 +1000 dmex : Fix SAL annotation for PhOpenServiceEx
[816f8af6] 2021-08-11 23:42:10 +1000 dmex : Remove package sid for com policy (unused)
[371bef0d] 2021-08-11 23:40:53 +1000 dmex : Fix miniinfo window dark theme borders
[b742b95f] 2021-08-11 23:40:14 +1000 dmex : Remove legacy imagelist import
[c0d6c16f] 2021-08-11 23:39:40 +1000 dmex : Remove duplicate service notification check
[69c15aa5] 2021-08-11 23:38:09 +1000 dmex : Fix process properties statistics excluding updates for plugin values
[f3f6ced1] 2021-07-25 18:38:08 +1000 dmex : Update phnt.h
[04509d2c] 2021-07-25 18:37:43 +1000 dmex : Update ntbcd.h
[215b433b] 2021-07-25 18:37:33 +1000 dmex : Build tools: Add bcd header to sdk
[ad639ef5] 2021-07-25 12:05:10 +1000 dmex : Revert "Update ntpoapi.h"
[d4b4d9e0] 2021-07-25 08:35:36 +1000 dmex : Add EnableScaleCpuGraph setting, Add CPU graph scaling support #873
[1cbff538] 2021-07-25 08:30:14 +1000 dmex : Update ntpoapi.h
[b4942a18] 2021-07-23 21:35:16 +1000 dmex : Update ntpoapi.h
[8529506a] 2021-07-23 21:33:21 +1000 dmex : Update ntrtl.h
[73db5f56] 2021-07-23 21:32:16 +1000 dmex : Update enum name
[ee19fb06] 2021-07-22 03:50:10 +1000 dmex : Add workaround for Font Driver Host token psuedo container
[130d47bf] 2021-07-22 03:47:53 +1000 dmex : Add PhDelayExecutionEx, Move PhDelayExecution
[b149de74] 2021-07-22 03:46:01 +1000 dmex : Update ntbcd.h
[0cab0dc2] 2021-07-22 02:34:01 +1000 dmex : Update ntbcd.h
[9bbc2b75] 2021-07-22 02:31:26 +1000 dmex : Update ntbcd.h
[6ecda988] 2021-07-22 00:29:47 +1000 dmex : PHNT: Add new native Boot Configuration Data (BCD) header
[cdc76ae0] 2021-07-22 00:05:08 +1000 dmex : update phnt types
[c1ad165f] 2021-07-22 00:03:14 +1000 dmex : Update ntexapi.h
[b398bafd] 2021-07-21 23:55:07 +1000 dmex : Update ntioapi.h
[2e45f7e8] 2021-07-21 23:54:42 +1000 dmex : Update ntmisc.h
[2bdd5848] 2021-07-21 23:54:05 +1000 dmex : Update ntpfapi.h
[3e79286d] 2021-07-21 21:36:06 +1000 dmex : Update ntpsapi.h
[5d785d53] 2021-07-21 21:35:45 +1000 dmex : Update ntregapi.h
[32e1614b] 2021-07-15 21:17:25 +1000 dmex : Fix Shutdown->Restart to Firmware option failing to create OsIndications
[5a767278] 2021-07-15 19:37:10 +1000 dmex : ToolStatus: Add working set for selected processes #857
[0722dfce] 2021-07-15 19:35:49 +1000 dmex : peview: Fix directory raw pseudo address
[c4ddea2d] 2021-07-15 19:34:52 +1000 dmex : Update capslist.txt
[55ae1ad0] 2021-07-15 19:34:49 +1000 dmex : Update prpghndl.c
[41371a60] 2021-07-15 19:34:32 +1000 dmex : Remove restart manager support (3rd party DoS issue) #792 #453
[b913f086] 2021-07-15 19:30:35 +1000 dmex : Update ntldr.h
[6352e525] 2021-07-15 19:30:32 +1000 dmex : Remove duplicate defines
[4590accf] 2021-07-15 19:29:19 +1000 dmex : Add missing define
[158bfd3e] 2021-07-15 19:28:59 +1000 dmex : Add missing copyright notice
[d17844fa] 2021-07-15 19:28:37 +1000 dmex : Fix missing appcontainer names for some service processes
[4bdcb52c] 2021-07-01 17:22:10 +1000 dmex : Fix Shutdown->Restart to Firmware option failing in nightly builds for users without environment privileges
[e4550e05] 2021-07-01 17:18:17 +1000 dmex : Add PhAdjustPrivilege
[1b036dcd] 2021-07-01 16:48:04 +1000 dmex : Update capslist.txt
[8fb74c6f] 2021-07-01 16:40:22 +1000 dmex : Update ntrtl.h
[6b26b726] 2021-07-01 16:40:19 +1000 dmex : Update ntobapi.h
[2d7017cd] 2021-06-30 07:54:38 +1000 diversenok : Update phnt (#925)
[bde01a2c] 2021-06-28 06:41:19 +1000 dmex : peview: Add raw addresses for image directories
[672a77e7] 2021-06-28 06:40:35 +1000 dmex : Update exited string to ignore wait status exit codes, Fix waiter crash on Win7
[226e3a95] 2021-06-27 09:53:25 +1000 dmex : Add UTF-8 source-charset and execution-charset, Update thirdparty libraries
[a01b5d5b] 2021-06-27 04:18:46 +1000 dmex : Update thirdparty libraries
[d8f0043b] 2021-06-27 04:12:25 +1000 dmex : PHNT: Add extra types and functions
[af05a750] 2021-06-27 04:09:03 +1000 dmex : Fix restarting immersive notepad processes
[01ba1d2d] 2021-06-27 04:02:30 +1000 dmex : Add PH v1.x exit status to window title #911
[ca6a3bca] 2021-06-27 03:37:18 +1000 dmex : Update DelayLoadDLLs and maxversiontested
[add7894a] 2021-06-27 03:16:39 +1000 dmex : Update resprp.c
[c7caa265] 2021-06-27 03:16:18 +1000 dmex : peview: Add section alignment characteristics
[aac9755b] 2021-06-27 03:15:42 +1000 dmex : peview: Fix incorrect addresses/hashes for security directory
[a77260f1] 2021-06-27 03:07:59 +1000 dmex : Improve syscall sorting reliability
[86901a0f] 2021-06-27 03:03:54 +1000 dmex : Update runas.c
[7cf7d80b] 2021-06-27 03:03:43 +1000 dmex : Update capslist.txt
[45922a82] 2021-06-27 03:01:20 +1000 dmex : Fix process properties general tab memory leak
[606f47d5] 2021-06-27 03:00:33 +1000 dmex : Add delayloaded tray icon thread, Fix static icon not showing up immediately in some cases #919
[9b18fe34] 2021-06-27 02:59:00 +1000 dmex : Disable the process restart menu for service host processes
[cbc302ee] 2021-06-27 02:57:21 +1000 dmex : ToolStatus: Fix rare statusbar update crash
[5632a039] 2021-06-27 02:56:38 +1000 dmex : OnlineChecks: Move VirusTotal to last menu position
[2ac3fb48] 2021-06-27 02:55:13 +1000 dmex : NetworkTools: Fix tracert continuing when routes become unavailable, Fix tracert ignoring the user DoH resolver for hostnames
[68e1afa4] 2021-06-27 02:50:41 +1000 dmex : ExtendedTools: Fix error handling for gpu device properties
[0ea21e7d] 2021-06-27 02:49:11 +1000 dmex : Add primary token check for PhImpersonateToken
[bdf8f84d] 2021-06-27 02:47:50 +1000 dmex : Readd windows_ancient from commit 8cdd6d81721e240458d15d2918200ab894735563
[1afba779] 2021-06-27 02:45:15 +1000 dmex : Remove unused thread handle, Fix NtDelayExecution returning access_denied when called from alterable threads
[103da944] 2021-06-27 02:43:22 +1000 dmex : Add PhIsTokenFullTrustAppPackage
[67701a8f] 2021-06-27 02:43:07 +1000 dmex : Fix GetAppIdForProcess memory leak
[55021407] 2021-06-27 02:41:21 +1000 dmex : Create build_thirdparty.cmd
[403646ac] 2021-06-26 20:41:13 +1000 Biswapriyo Nath : phnt: Add structure definition for SystemSupportedProcessorArchitectures (#922)
[368989f2] 2021-06-18 23:40:45 +1000 YFdyh000 : Don't append the start type for disabled in services list (#918)
[e2d48caf] 2021-06-11 06:29:51 +1000 dmex : Update ntexapi.h
[abe7be1a] 2021-06-11 06:28:32 +1000 dmex : Update ntpsapi.h
[b0cd6465] 2021-06-10 22:42:46 +1000 dmex : Add extra check for thread timeline CreateTime
[1840826e] 2021-06-10 22:11:35 +1000 dmex : Add fields needed for thread timelines
[7c7b7a6a] 2021-06-10 22:06:34 +1000 dmex : Add new timeline column to threads tab, Update impersonation column, Fix showing last system call for uninitialized threads
[e6535f0d] 2021-06-10 22:04:30 +1000 dmex : Update inspect menu default filetypes
[d656177a] 2021-06-10 21:58:18 +1000 dmex : Fix handle snapshot crash on 21H1
[2afc3acc] 2021-06-10 21:57:19 +1000 dmex : Fix find handles window font when changing font settings
[53605af4] 2021-06-10 21:51:58 +1000 dmex : NetworkTools: Improve country code lookup
[59c3fff8] 2021-06-10 18:56:36 +1000 Justin Gottula : ExtendedTools: Fix a thread handle leak (#913)
[568e4271] 2021-06-10 06:29:22 +1000 Justin Gottula : Fix a thread handle leak in the Threads context menu (#914)
[784effe3] 2021-06-07 07:14:26 +1000 dmex : Add missing idle process check to PhWalkThreadStack
[29e23781] 2021-06-07 03:25:48 +1000 dmex : Fix threads tab showing incorrect info the system idle process
[39aec443] 2021-06-07 03:08:19 +1000 dmex : Plugins: Disable menus for the idle process
[c7f63799] 2021-06-06 23:39:04 +1000 dmex : Update ntpsapi.h
[fbf7c5b9] 2021-06-05 00:06:13 +1000 dmex : Update to PhImageList support
[7876cd84] 2021-06-04 23:54:46 +1000 dmex : Export PhImageList functions, Add PhImageListAddBitmap
[02e8f31e] 2021-06-04 23:28:08 +1000 dmex : Add IImageList2 support
[bbb24aa8] 2021-06-04 01:14:05 +1000 dmex : Update file modified and file size process' tree columns to native paths
[2c017afe] 2021-06-04 01:12:50 +1000 dmex : Add dark theme support to MemResults dialog
[f384bce3] 2021-06-04 01:11:52 +1000 dmex : Add ViewSignerInfo to PhVerifyFileSignatureInfo
[5defb303] 2021-06-04 01:08:09 +1000 dmex : Update ntpsapi.h
[3da6990e] 2021-05-31 09:16:10 +1000 dmex : Add search for last syscall/last error code, Improve last syscall error handling/sorting
[db9f2fe7] 2021-05-31 06:21:47 +1000 dmex : Update about icon resource id
[49c1e0e7] 2021-05-31 05:59:57 +1000 dmex : ExtendedTools: Add wddm 3.0 version
[932f9e07] 2021-05-31 05:58:32 +1000 dmex : Tidy up teb32/wow64 macro
[7b824cd6] 2021-05-31 05:56:17 +1000 dmex : Update ntd3dkmt.h
[ee8da5c0] 2021-05-31 05:54:34 +1000 dmex : Update ntwow64.h
[a72a912d] 2021-05-30 22:48:50 +1000 dmex : Fix last status code for wow64 threads
[4cb4ebd5] 2021-05-30 19:32:30 +1000 dmex : Fix about window icon background when using dark theme
[b318d259] 2021-05-30 18:43:38 +1000 dmex : Fix white background for application icons when using dark themes
[ccce00f5] 2021-05-30 18:40:10 +1000 dmex : Fix last system call for threads showing incorrect names on Win10 insider builds
[7b1745cb] 2021-05-30 18:36:13 +1000 dmex : SetupTool: Fix refreshing shortcut icons, Add retry option after an update error
[092e48d3] 2021-05-30 18:21:41 +1000 dmex : Fix TEB on x86
[deb0476b] 2021-05-29 18:59:51 +1000 dmex : Update application icon
[68d3e425] 2021-05-29 13:42:30 +1000 Johnny Shaw : Don't return allocated memory from PhLoadRemoteMappedImageEx (#907)
[8e34b89b] 2021-05-29 03:17:18 +1000 dmex : Update resource.h
[24d226b7] 2021-05-29 03:10:35 +1000 dmex : Add new last system call/last status code thread columns
[7e31dfff] 2021-05-29 01:49:09 +1000 dmex : Update shutdown menu, Add new Reboot to advanced/firmware options
[6c7e1ad3] 2021-05-29 01:32:54 +1000 dmex : Update ntmmapi.h
[2878c8a4] 2021-05-29 01:32:17 +1000 dmex : Fix copypasta name
[fd32a4a9] 2021-05-29 01:26:37 +1000 dmex : Fix missing status text when loading symbols
[3ed54493] 2021-05-29 01:25:38 +1000 dmex : peview: Remove unused cast
[b359dc52] 2021-05-29 01:24:41 +1000 dmex : Add PhIsFirmwareSupported, PhGetThreadLastStatusValue
[d6eca70f] 2021-05-28 21:32:40 +1000 dmex : Fix SysWow64 path conversion (64bit drivers loaded from SysWOW64)
[b0b03eb9] 2021-05-28 14:09:46 +1000 dmex : Update ntexapi.h
[4e6ed7cb] 2021-05-28 14:05:51 +1000 dmex : Fix #906
[af171876] 2021-05-27 22:24:37 +1000 dmex : Changes for kernel CET information #903
[aa0c066e] 2021-05-27 22:08:13 +1000 dmex : Changes for kernel CET information #903
[6cf7287d] 2021-05-27 21:11:49 +1000 TheEragon : Add support for kernel CET (#903)
[1aa402b6] 2021-05-27 09:27:05 +1000 Johnny Shaw : Fix for KnownDLL extents lookup on 21H2 (#902)
[88301735] 2021-05-26 00:20:07 +1000 dmex : Fix window positioning for disconnected monitors #871
[13d061f8] 2021-05-26 00:13:50 +1000 dmex : peview: Fix sorting directories by RVA, Fix missing ProdId tab for native CLR images
[7bde8248] 2021-05-26 00:12:03 +1000 dmex : Update ntpsapi.h
[cde613f8] 2021-05-24 05:00:17 +1000 TheEragon : Update SYSTEM_SHADOW_STACK_INFORMATION definition (#897)
[d6e5d36d] 2021-05-23 20:02:08 +1000 dmex : Add PhFindLoaderEntryNameHash
[af86ff03] 2021-05-23 19:57:21 +1000 dmex : peview: Fix 32bit build warning
[179474a5] 2021-05-23 19:40:03 +1000 dmex : peview: Improve Rich and Overlay information, Fix column header typo
[5ede3874] 2021-05-23 19:38:45 +1000 dmex : Fix PhGetMappedImageProdIdExtents padding length
[53cfc11f] 2021-05-23 13:32:08 +1000 dmex : peview: Add overlay data to Headers tab
[c758ab4d] 2021-05-23 13:24:21 +1000 dmex : peview: Remember previous window states
[eec6ce89] 2021-05-23 11:16:33 +1000 dmex : peview: Fix resources tab column typo
[de119687] 2021-05-23 11:15:32 +1000 dmex : BuildTools: Update to .NET 5.0.6
[64030386] 2021-05-23 11:12:06 +1000 dmex : Add PhCsForceNoParent and AlwaysOnTop for about window #200
[1d8e611d] 2021-05-23 03:00:22 +1000 dmex : peview: Add new Headers tab, Improve pdb symbols sorting
[acb8fe92] 2021-05-23 02:29:26 +1000 dmex : Add PhGetMappedImageProdIdExtents
[ed9d1bf4] 2021-05-21 11:57:06 +1000 dmex : peview: Add missing icon to new UI
[29d68ef1] 2021-05-21 11:50:09 +1000 dmex : peview: Add missing file, Fix regressions from commit bd2901ef
[0d5240df] 2021-05-21 11:44:48 +1000 dmex : Fix treeview dark theme #98
[bd2901ef] 2021-05-21 11:10:09 +1000 dmex : peview: Add new UI, Add new customization, Update everything
[6e3f4d79] 2021-05-21 05:44:37 +1000 dmex : Fix copypasta type name
[fbf9fcdc] 2021-05-21 04:50:57 +1000 dmex : Fix build error regression from previous commit
[c1fe5b64] 2021-05-21 03:49:49 +1000 dmex : Update ntzwapi.h
[9dd89e61] 2021-05-21 03:18:20 +1000 diversenok : Update PHNT (#895)
[6a4e474b] 2021-05-21 02:27:32 +1000 dmex : Update ntioapi.h
[d80efaa7] 2021-05-20 23:43:55 +1000 dmex : Fix namespace regression from 8dd929f7
[97d9e266] 2021-05-20 23:43:04 +1000 dmex : Update ntregapi.h
[8dd929f7] 2021-05-20 23:16:43 +1000 dmex : Disable reparse for namespace handles
[75ddffaa] 2021-05-20 23:13:52 +1000 dmex : ExtendedTools: Improve hostname lookup performance
[10f8c8e7] 2021-05-20 23:12:24 +1000 dmex : Fix assert when selecting treenodes
[5c9dff65] 2021-05-20 23:08:02 +1000 dmex : Move OBJ flags
[8b4d794d] 2021-05-20 23:07:18 +1000 dmex : Fix SAL annotation warning
[10216676] 2021-05-20 11:25:09 +1000 dmex : Update PHNT types
[63debaf3] 2021-05-20 10:51:39 +1000 dmex : Update ntpsapi.h
[764002f4] 2021-05-20 10:46:14 +1000 dmex : Update ntpsapi.h
[9cb0d751] 2021-05-20 10:45:14 +1000 dmex : Update PHNT types
[9d580ae7] 2021-05-19 17:04:12 +1000 dmex : Add 2k3 version removed with commit 8cdd6d81
[b10887b0] 2021-05-19 16:57:58 +1000 dmex : Add support for 21H1
[065391ed] 2021-05-17 07:19:15 +1000 dmex : ToolStatus: Reorder filter check
[b5ca36f7] 2021-05-16 20:33:39 +1000 dmex : Add PhDisableImpersonateNamedPipe
[0f46a392] 2021-05-16 20:31:57 +1000 dmex : Update PhGetJsonArrayString flags
[5d362912] 2021-05-16 20:29:45 +1000 dmex : Remove comment
[86c86f2e] 2021-05-16 20:29:17 +1000 dmex : Fix CFG typo
[a8942fa9] 2021-05-16 20:26:54 +1000 dmex : Add workaround for WinHttpQueryHeaders buffer length
[c92ea99a] 2021-05-15 23:42:46 +1000 dmex : peview: Add Impfuzzy to hashes tab, Fix incorrect Imphash for some images
[b55f8f24] 2021-05-15 18:44:12 +1000 dmex : Update ntpsapi.h
[1a37c73f] 2021-05-14 00:37:43 +1000 dmex : ToolStatus: Improve process/service search performance
[4bc02db1] 2021-05-14 00:33:38 +1000 dmex : Add extra service values for plugins
[cc020873] 2021-05-13 17:58:26 +1000 dmex : peview: Fix import RVA (thanks to @Mattiwatti)
[e75ff069] 2021-05-13 06:53:47 +1000 dmex : peview: Update imports tab layout, Add import RVA, Add imports search, Improve imports performance
[46b6c389] 2021-05-13 06:40:43 +1000 dmex : peview: Tidy up export tab code
[459d4f31] 2021-05-12 21:10:29 +1000 dmex : Add BaseReadAppCompatDataForProcess (unused)
[0c840377] 2021-05-12 03:00:39 +1000 dmex : peview: Improve export string formatting
[b7a04810] 2021-05-12 02:11:21 +1000 dmex : peview: Add optimization for searching unnamed exports
[b4a6c703] 2021-05-12 01:19:18 +1000 dmex : peview: Fix 32bit build warning from previous commit
[18bfc6d0] 2021-05-12 00:47:37 +1000 dmex : peview: Update exports tab layout, Add exports search, Improve exports performance
[048f7b58] 2021-05-11 21:55:08 +1000 dmex : peview: Fix Microsoft reparse tag check
[fa6c6045] 2021-05-11 21:54:03 +1000 dmex : Increase commandline temp buffer, Remove unused loader entry ImageNtHeader
[319df0b8] 2021-05-11 21:52:05 +1000 dmex : Fix duplicate dark theme context, Fix dark theme menu font
[e94c9a95] 2021-05-11 21:49:33 +1000 dmex : Add QoS for pipes
[b2774b04] 2021-05-11 21:40:45 +1000 dmex : Register application for restart, Update ProcessShutdownParameters for Win10
[dba2f7ab] 2021-05-11 21:34:14 +1000 dmex : ToolStatus: Improve statusbar text length performance
[9c716a63] 2021-05-11 21:25:21 +1000 dmex : Add correct SAL annotation
[cb2fe6c6] 2021-05-11 21:24:39 +1000 dmex : Ignore MUI for UNC paths and use correct SAL annotation
[c7196c4a] 2021-05-11 21:15:47 +1000 dmex : PHNT: Fix region and section constant redefinition errors and remove kmode ifdefs
[bd4aeac9] 2021-05-11 20:31:26 +1000 dmex : PHNT: Merge section flags, Add some type comments
[c5b2900b] 2021-05-11 16:57:51 +1000 dmex : WindowExplorer: Add EnableWindowIcons setting for showing window icons
[4ed9c717] 2021-05-09 17:54:48 +1000 dmex : Fix startup delay after settings restart
[fc4ef889] 2021-05-09 16:40:34 +1000 dmex : Fix startup delay when using show details menu
[3203fd09] 2021-05-09 16:03:35 +1000 dmex : NetworkTools: Update reverse lookup domain, Fix whois menu for LAN addresses
[f29291a9] 2021-05-09 15:23:15 +1000 dmex : Add power throttling column #888
[23469809] 2021-05-09 15:07:25 +1000 dmex : Enable vectorized CRT support for string routines in release builds
[7b85b40c] 2021-05-09 06:21:29 +1000 dmex : Remove warning when disabling Eco mode #888
[c11ce1f1] 2021-05-09 06:19:40 +1000 dmex : Add 'Eco mode' option to process->miscellaneous menu #888
[e55d6d75] 2021-05-09 03:46:05 +1000 dmex : Fix PhUiSetEcoModeProcess error check typo
[ccdd24ec] 2021-05-09 03:44:17 +1000 dmex : Add PhUiSetEcoModeProcess #888
[8becec5b] 2021-05-09 03:03:15 +1000 dmex : Partial revert commit c765bded (Remove legacy notifico.c code)
[1aa31481] 2021-05-09 02:55:59 +1000 dmex : Update enum filename
[00d29b83] 2021-05-09 02:54:36 +1000 dmex : Add window resize to GDI Handles window
[d5f31024] 2021-05-09 02:52:00 +1000 dmex : Update ntexapi.h
[da2b0b1f] 2021-05-08 23:14:12 +1000 dmex : Add PhGetProcessPowerThrottlingState/PhSetProcessPowerThrottlingState #888
[81ecfba5] 2021-05-08 22:24:39 +1000 dmex : Fix typo
[6eb12785] 2021-05-08 21:48:16 +1000 dmex : NetworkTools: Fix parsing legacy classful addresses
[9247a524] 2021-05-08 19:10:10 +1000 dmex : Update ntpsapi.h
[42c52753] 2021-05-08 18:33:50 +1000 dmex : Update ntpsapi.h
[4b726424] 2021-05-08 18:22:58 +1000 dmex : Update ntdbg.h
[3830655f] 2021-05-08 17:40:01 +1000 dmex : Update ntdbg.h
[61ca09bf] 2021-05-07 19:53:38 +1000 dmex : Update procprv.c
[7d50c1e7] 2021-05-07 13:07:16 +1000 dmex : Update PHNT types
[1b5b0f59] 2021-05-06 07:04:41 +1000 Johnny Shaw : Add NtGetNextProcess flag to ntpsapi.h (#887)
[859a4c47] 2021-05-03 23:14:17 +1000 dmex : Partial revert 5211029a
[000a748b] 2021-05-02 21:24:25 +1000 dmex : Fix Win7 regression from commit a15d31e3
[5211029a] 2021-05-02 20:48:46 +1000 dmex : Improve network connection enumeration, Add experimental InternalGetTcpTableX support
[a88060e6] 2021-05-02 20:46:40 +1000 dmex : Add RtlGetFileMUIPath
[a15d31e3] 2021-05-02 20:45:56 +1000 dmex : Update DelayLoadDLLs
[c28efff6] 2021-04-29 22:18:38 +1000 dmex : BuildTools: Add Build Id, Update to .NET 5.0.5
[5d8db768] 2021-04-29 22:00:35 +1000 dmex : NetworkTools: Fix whois memory leak, Fix whois result conversion to UTF16
[5ede20c9] 2021-04-28 16:01:00 +1000 dmex : peview: Add MUI and MUN to supported PE formats
[c87187a3] 2021-04-28 15:15:51 +1000 dmex : Add IUM to process protection label, Add missing copyright
[abcf358a] 2021-04-28 14:02:26 +1000 dmex : Improve initialization, Fix icon caching for high DPI
[9b2a76ef] 2021-04-28 04:13:04 +1000 dmex : partial revert 6f0846cf (fix vectors icons)
[a8bb1938] 2021-04-28 01:08:40 +1000 dmex : Fix critical and pendingirp thread sorting
[5112a29e] 2021-04-28 00:59:44 +1000 dmex : Add thread PendingIrp sorting
[de6938b2] 2021-04-28 00:57:04 +1000 dmex : Add 'Pending IRP' column to threads tab
[083c0467] 2021-04-28 00:51:47 +1000 dmex : UserNotes: Add UI for changing IFEO priorities #862
[1c79fca8] 2021-04-28 00:21:39 +1000 dmex : Add mun resource support to PhExtractIconEx (fixes missing icons for system32 processes)
[6f0846cf] 2021-04-27 23:31:18 +1000 dmex : Improve icon cache performance
[7296400a] 2021-04-27 22:47:16 +1000 dmex : Update settings.c
[1048ad22] 2021-04-27 17:28:05 +1000 dmex : peview: Add missing header
[6ffaaef0] 2021-04-27 17:26:08 +1000 dmex : Fix message text formatting from previous commit 9d4d0262
[9d4d0262] 2021-04-27 17:21:21 +1000 dmex : Add power actions to shutdown/restart menus
[ff510355] 2021-04-27 15:47:50 +1000 dmex : Add dark theme column header mouse state
[42ebae14] 2021-04-27 15:46:47 +1000 dmex : Improve dark theme column headers #98
[da968c31] 2021-04-27 15:32:05 +1000 dmex : Add symbol support for NT_SYMBOL_PATH #878
[97486258] 2021-04-27 13:58:48 +1000 dmex : Fix versioninfo regression on server 2016 #879
[181013e5] 2021-04-27 03:34:48 +1000 dmex : Add PhQueryRegistryUlongEx
[772d7be2] 2021-04-21 17:09:33 +1000 dmex : Add effective permission support for security editor
[5b7133ad] 2021-04-20 16:33:07 +1000 dmex : Fix PhExtractIconEx support for PNG and JPEG icons
[2f2b106e] 2021-04-19 14:54:19 +1000 dmex : Add PhGetMappedImageDirectoryEntry
[9222cb7e] 2021-04-19 10:30:15 +1000 dmex : Remove duplicate GetSystemMetrics
[551f0ab7] 2021-04-19 10:23:49 +1000 dmex : Update PhLoadIcon types, Remove legacy LoadIconMetric
[656ea17c] 2021-04-19 10:12:05 +1000 dmex : Improve PhStdGetClientIdNameEx/handle enumeration performance
[815c8095] 2021-04-19 10:02:22 +1000 dmex : Fix regression when sorting users menu
[4cf0bfa0] 2021-04-17 20:40:26 +1000 dmex : UserNotes: Add support for saving permanent process CPU/IO/PAGE priorities using IFEO
[c53edf34] 2021-04-17 19:22:15 +1000 dmex : Export PhDeleteValueKey
[840c3e83] 2021-04-17 14:17:46 +1000 dmex : Update verifyp.h
[c9f4d3e6] 2021-04-17 14:17:29 +1000 dmex : HardwareDevices: Add static namespace string
[1e0bc25a] 2021-04-17 14:13:27 +1000 dmex : Fix PhGetMappedImageResources enumeration
[df29c47d] 2021-04-17 14:08:07 +1000 dmex : Improve PhExtractIconEx error checking and icon lookup
[3cf7060f] 2021-04-15 18:07:47 +1000 dmex : Remove tabspace
[0a92c212] 2021-04-15 18:06:41 +1000 dmex : Add PhVerifyFileSignatureInfo, Add WTGetSignatureInfo
[9fabaa87] 2021-04-15 18:02:34 +1000 dmex : Add extra service filename check, Remove unused lock
[616530c9] 2021-04-15 17:18:20 +1000 dmex : Fix PhExtractIconEx regression with HardwareDevices plugin and DEVPKEY_DeviceClass_IconPath
[4fad8ab5] 2021-04-15 16:03:06 +1000 dmex : Remove incomplete WSL code from commit 489ce8fa PhGetMappedWslImageSectionByName
[39267df2] 2021-04-15 13:22:36 +1000 dmex : Add missing bracket
[b16bd070] 2021-04-15 13:12:38 +1000 dmex : Improve logging performance
[4ef6f72f] 2021-04-15 12:07:50 +1000 dmex : Add default filestream attribute flag
[489ce8fa] 2021-04-15 12:06:52 +1000 dmex : Add PhGetMappedWslImageSectionByName
[27764ad2] 2021-04-15 12:06:08 +1000 dmex : Update ntrtl.h
[4fbf1c33] 2021-04-15 12:05:12 +1000 dmex : Improve notification icon string formatting
[1cd2d21d] 2021-04-15 12:04:05 +1000 dmex : Improve runas session enumeration
[9d620d03] 2021-04-15 12:03:04 +1000 dmex : Improve dpkg-query performance
[3ee4d89e] 2021-04-15 12:01:55 +1000 dmex : Remove unused index, Add missing SAL annotation
[50b22521] 2021-04-15 11:41:56 +1000 dmex : Add native filename icon extraction support and improve icon extraction performance
[f37c3e3e] 2021-04-10 13:28:10 +1000 dmex : peview: Removed unused parameter
[0c09eee2] 2021-04-10 13:21:55 +1000 dmex : Add dynamic handle information buffer lengths
[7be3f345] 2021-04-10 12:26:01 +1000 dmex : Update phnative.h
[5e085086] 2021-04-10 12:25:53 +1000 dmex : Update PhCreateFile return status for filenames
[6039b616] 2021-04-10 12:24:19 +1000 dmex : Remove legacy PhLoadPlugin
[d8ad1452] 2021-04-10 12:23:23 +1000 dmex : Update filenames to native paths
[6564d9a8] 2021-04-10 12:20:04 +1000 dmex : Add PhMapViewOfEntireFileEx
[e96989fd] 2021-04-08 06:17:22 +1000 dmex : Fix invalid PhLoadLibraryAsImageResource flags for Win8
[bba7c402] 2021-04-07 16:28:21 +1000 Johnny Shaw : Correctly show errors in module list for failed imgcoherency (#866)
[77cf5cc3] 2021-04-07 04:42:54 +1000 dmex : Update plugin manager versioninfo to native paths
[1872d25b] 2021-04-07 04:38:54 +1000 dmex : Add support for querying limited process module information
[27ab8791] 2021-04-07 03:07:12 +1000 dmex : Fix PhLoaderEntryRelocateImage
[8b8427bf] 2021-04-07 02:51:33 +1000 dmex : Fix locating ServiceDll for some services on Windows 8
[62242a74] 2021-04-05 22:56:24 +1000 dmex : Update module provider FileVersionInfo to native paths
[11f6bb0d] 2021-04-05 22:55:18 +1000 dmex : Update PhLoadLibraryAsImageResource flags for Win10
[26b147d1] 2021-04-04 23:15:43 +1000 dmex : peview: Remove PhInitializeImageVersionInfo2
[5e664045] 2021-04-04 23:00:17 +1000 dmex : Update FileVersionInfo to native paths, Add PhGetFileVersionInfoEx and PhLoadLibraryAsImageResource
[3d226019] 2021-04-04 21:38:45 +1000 dmex : Add missing flags, Fix build
[7cebce2d] 2021-04-04 20:55:00 +1000 dmex : Fix assert when sorting thread stacks by filename
[67c26f93] 2021-04-04 20:46:04 +1000 dmex : Update PhCreateFile, PhQueryFullAttributesFile, PhQueryAttributesFile, PhDoesFileExists
[8b49b8ef] 2021-04-04 19:11:44 +1000 hg421 : Fix setting type of IconIgnoreBalloonClick (#860)
[5387c70c] 2021-04-04 15:11:05 +1000 dmex : Add error message when enabling 'Hide default services' and signature checking disabled
[a4719aad] 2021-04-04 14:44:26 +1000 dmex : Update module provider filenames to native paths
[5bdc69fb] 2021-04-04 14:36:47 +1000 dmex : Add PhQueryFullAttributesFile
[5c67cb21] 2021-04-04 13:41:40 +1000 dmex : Update OriginalFileName to native path
[0ba661f2] 2021-04-04 13:38:53 +1000 dmex : Update module provider filename for native paths
[a42c1a00] 2021-04-03 17:00:01 +1100 dmex : Add Timeline column to network tab
[cd14a62c] 2021-04-03 16:35:07 +1100 dmex : Add "Original name" column to modules tab for showing native image paths
[24c83ff0] 2021-04-02 16:05:50 +1100 dmex : Add 'Hide default services' option to services view menu
[7e9714ee] 2021-04-02 15:59:21 +1100 dmex : Add consistent string check for version info
[f57aa158] 2021-04-02 03:08:05 +1100 dmex : Fix typo #858
[cb990c49] 2021-04-01 23:04:04 +1100 dmex : Add EnableShortRelativeStartTime setting #762
[d1797869] 2021-04-01 17:49:54 +1100 dmex : Add save options to process memory menu
[f4d78e6e] 2021-04-01 04:29:32 +1100 dmex : Add minidump snapshot support, Fix phsvc snapshot memory leak
[7ee0e5d5] 2021-04-01 04:25:39 +1100 dmex : Add missing commit dcc0a98c
[c2216c7e] 2021-03-31 20:14:42 +1100 dmex : Add IconIgnoreBalloonClick setting
[861f6d75] 2021-03-31 20:02:53 +1100 dmex : Add handle search total found entry count
[bf3c1e16] 2021-03-31 19:34:18 +1100 dmex : Add save options to process modules menu
[b1b46192] 2021-03-31 19:05:43 +1100 dmex : Update copyright
[caf62594] 2021-03-31 19:04:38 +1100 dmex : Add save options to process threads menu
[dcc0a98c] 2021-03-31 18:23:54 +1100 dmex : Add suspend tree and resume tree options to processes menu
[5f86f099] 2021-03-31 18:03:19 +1100 dmex : Add cell copy menu to memory search results dialog
[e3e8313f] 2021-03-31 17:40:41 +1100 dmex : ExtendedNotifications: Improve logfile performance, Add environment string path support, Add relative path support
[35b5b61d] 2021-03-31 17:33:31 +1100 dmex : Update arm64 build script, Fix ignoring build errors, Rename script build_arm->build_arm64
[29b65d1c] 2021-03-31 17:32:06 +1100 dmex : Fix arm64 build warning for cpu latency
[d0291f88] 2021-03-31 17:20:15 +1100 dmex : BuildTools: Update to .NET 5.0.4
[99d4d9ff] 2021-03-31 16:21:59 +1100 dmex : Add sorting for users mainmenu by username
[3e1fac54] 2021-03-31 02:04:15 +1100 dmex : Add copyright
[242dd0e8] 2021-03-31 01:48:21 +1100 dmex : Improve GDI object enumeration #492
[05b40ace] 2021-03-31 01:28:24 +1100 dmex : ExtendedTools: Fix ARM64 assertion
[498b10cc] 2021-03-31 01:21:48 +1100 dmex : Add TreeListCustomRowSize option to change the vertical size of the list items #318
[b3aef749] 2021-03-29 17:32:50 +1100 dmex : Update statistics context
[bf92e9f6] 2021-03-29 17:27:04 +1100 dmex : Add process commit memory to statistics window
[0f6febe9] 2021-03-29 17:26:03 +1100 dmex : Improve WSL 1 string performance
[bf5bf908] 2021-03-29 17:23:46 +1100 dmex : Add PhGetProcessAppMemoryInformation
[390c9e5e] 2021-03-27 17:06:27 +1100 dmex : peview: Fix missing relocation page for 32bit images
[0fcc78ad] 2021-03-27 16:34:55 +1100 Johnny Shaw : Fix and add image relocation symbols (#854)
[41dec389] 2021-03-27 01:01:54 +1100 dmex : Fix enumerating exports from binaries such as mfc140u.dll
[e3317481] 2021-03-26 19:03:42 +1100 dmex : Fix dragging treelist column divider #849, Fix regression from commit b31d0b70
[6cc1445c] 2021-03-26 17:38:54 +1100 Johnny Shaw : Fix relocation tab symbol resolution (#852)
[d0fcbf4e] 2021-03-26 16:49:56 +1100 dmex : Fix typo
[134191c1] 2021-03-26 16:48:14 +1100 dmex : peview: Add symbols for exceptions and relocations
[193ba975] 2021-03-25 11:24:39 +1100 dmex : peview: Add copy menu to symbols tab
[11979e49] 2021-03-25 11:21:29 +1100 dmex : peview: Enable symbols tab treelist settings, Fix symbols tab focus
[a59a9dad] 2021-03-24 20:17:20 +1100 dmex : Move GuardFlags to PhpModuleQueryWorker
[096da7a9] 2021-03-24 20:16:22 +1100 dmex : Fix incorrect header for PhLoadRemoteMappedImageEx
[f509ca07] 2021-03-24 05:38:04 +1100 dmex : Fix error mode, Tidy up winmain
[c55b7d15] 2021-03-24 03:29:18 +1100 dmex : peview: Add status for symbol loading to symbols tab
[d5a7c1fd] 2021-03-24 03:04:51 +1100 dmex : peview: Fix options theme
[f4ea5c06] 2021-03-24 02:58:27 +1100 dmex : peview: Fix updating MaxSizeUnit setting #844
[ce54fa2a] 2021-03-24 02:43:19 +1100 dmex : peview: Move entropy to background workqueue
[780606b9] 2021-03-23 13:15:54 +1100 dmex : peview: Fix typo
[563707d3] 2021-03-23 11:06:35 +1100 dmex : Fix typo
[af4df400] 2021-03-23 11:04:58 +1100 dmex : Add option to view 16-bit NTVDM processes #800
[54d31fd7] 2021-03-23 11:02:12 +1100 dmex : Reorder flag checks
[ed86fc5e] 2021-03-23 10:07:46 +1100 Johnny Shaw : Fix module list image coherency view (#843)
[8dbbd887] 2021-03-23 05:25:12 +1100 dmex : Add timeline for process modules #797
[6d28ab2e] 2021-03-23 03:41:45 +1100 dmex : peview: Fix assert allocating selected certificate lists
[b65d6b4a] 2021-03-23 03:30:48 +1100 dmex : Add default buffer length for token information
[bd52d7ed] 2021-03-22 07:32:04 +1100 dmex : peview: Fix showing relocations when the image doesn't contain the table
[c1cb771e] 2021-03-22 07:15:49 +1100 dmex : thirdparty: Add Capstone support
[cbb1cc2f] 2021-03-22 07:08:28 +1100 dmex : peview: Add relocation tab, Add entropy to directories, Add hashes for pogo, Add sections for exceptions,
[5dd40196] 2021-03-21 12:19:53 +1100 Johnny Shaw : Add SSDEEP and TLSH to peview sections tab (#840)
[31249f5a] 2021-03-21 05:29:32 +1100 dmex : peview: Add entropy values for image, sections and resources
[acc2358b] 2021-03-21 01:40:51 +1100 dmex : NetworkTools: Update libmaxminddb to 1.5.2
[0257706a] 2021-03-17 13:36:58 +1100 dmex : SetupTool: Update app.manifest, Fix build regression from f7659f49
[111f4b13] 2021-03-17 06:57:08 +1100 dmex : Remove unused wbemuuid.lib
[4ef42fc1] 2021-03-17 06:56:25 +1100 dmex : ExtendedTools: Improve GPU counter statistics for multiple adapters
[ba68369d] 2021-03-17 06:51:15 +1100 dmex : Update PhLoadLibrarySafe return type
[93309b29] 2021-03-17 06:44:58 +1100 dmex : Add PhLoaderEntryRelocateImage
[bcb7058c] 2021-03-17 06:39:09 +1100 dmex : ExtendedNotifications: Update char type
[e2c19c8c] 2021-03-17 06:36:05 +1100 dmex : NetworkTools: Use existing font settings for tracert/whois dialogs
[d9c8d96b] 2021-03-17 01:28:10 +1100 dmex : Update ntzwapi.h
[2b317360] 2021-03-17 01:27:52 +1100 dmex : Fix build regression from #835
[88368def] 2021-03-16 23:20:05 +1100 Johnny Shaw : PhLoadLibrarySafe and ban LoadLibrary (#835)
[46b8404b] 2021-03-16 16:03:49 +1100 dmex : Add PhCreateDialog
[ca436088] 2021-03-16 15:44:02 +1100 dmex : Update ntrtl.h
[f7659f49] 2021-03-16 15:43:27 +1100 dmex : Add PhCreateDialog, PhLoadResourceCopy and update PhLoadResource
[f9e5ae93] 2021-03-12 16:32:44 +1100 Johnny Shaw : toastnotif implementation (#827)
[43e333df] 2021-03-11 21:29:58 +1100 dmex : Update thirdparty.lib to latest visual studio
[0d2c22e2] 2021-03-08 16:47:25 +1100 dmex : Fix SAL warning
[f8ddb916] 2021-03-08 16:45:15 +1100 dmex : Add PhGetThreadIsTerminated
[3546b164] 2021-03-08 16:43:46 +1100 dmex : Save runas dialog position
[3f96cb26] 2021-03-08 16:42:15 +1100 dmex : Update ntexapi.h
[ae3164ee] 2021-03-03 01:11:54 +1100 dmex : Update ntexapi.h
[c10debb0] 2021-03-02 09:50:19 +1100 dmex : OnlineChecks: Remove VirusTotal rescan option after VT-API was disabled, Improve service check caching
[c9ef01c4] 2021-03-02 01:06:04 +1100 dmex : Update minimum window height #818
[fec4a798] 2021-03-02 00:01:07 +1100 dmex : Update handle options error messages to task dialogs
[3092177f] 2021-03-02 00:00:24 +1100 dmex : Fix handle properties initial focus
[384a0350] 2021-03-01 23:58:55 +1100 dmex : Merge branch 'master' of https://github.com/processhacker/processhacker
[aa462c75] 2021-03-01 23:58:52 +1100 dmex : ExtendedTools: Add version check for GPU counters, Fix unloaded DLLs window returning incorrect status, Improve unloaded DLLs error message handling
[583473b9] 2021-03-01 08:25:57 +1100 diversenok : Add a column that indicates impersonating threads (#817)
[00445ca3] 2021-02-28 16:30:40 +1100 diversenok : Improve name generation for process and thread handles (#816)
[a8a35aa0] 2021-02-28 14:53:51 +1100 dmex : Fix crash from plugin import hint lookup
[3f68cc28] 2021-02-28 13:42:28 +1100 dmex : Disable some types due to mismatched SDK versions on VS Pro and VS Enterprise
[0d385e9c] 2021-02-28 11:24:46 +1100 dmex : UserNotes: Add support for saving process page priority #805
[51a548cc] 2021-02-28 10:12:53 +1100 dmex : peview: Add exceptions page
[3a3951a0] 2021-02-28 10:10:54 +1100 dmex : Add PhGetMappedImageExceptions
[3229b8ac] 2021-02-28 10:04:49 +1100 dmex : Fix leak in previous commit 01dfd459
[01dfd459] 2021-02-28 08:30:05 +1100 dmex : Fix provider boost alerting when the driver is enabled #813
[279365a4] 2021-02-28 08:22:19 +1100 dmex : ExtendedTools: Fix perf counters showing zero gpu usage #814
[d551a9fa] 2021-02-28 08:17:36 +1100 dmex : Improve handle entry allocation macro
[4bf96e0e] 2021-02-28 08:15:55 +1100 dmex : Update about text
[17e04540] 2021-02-28 08:15:08 +1100 dmex : Remove extra brush handle for the timeline column
[ada1b2b8] 2021-02-28 08:13:47 +1100 dmex : Fix system process showing as debugged on 20H1
[3b3bc2e7] 2021-02-28 08:12:19 +1100 dmex : PHNT: Add types backported from insider builds to 20H1 in recent patches
[cfaf5ec3] 2021-02-26 16:13:27 +1100 Johnny Shaw : Implement GPU Performance Graphs (#815)
[56e7eec4] 2021-02-26 08:57:30 +1100 dmex : Add workaround for faulty ProcessHandleInformation data on 20H2
[c5748529] 2021-02-25 16:53:09 +1100 dmex : ToolStatus: Add missing check for valid SystemStatistics
[8a048ec3] 2021-02-25 02:46:03 +1100 dmex : Re-enable default error mode #795
[587c988f] 2021-02-22 15:31:22 +1100 dmex : Fix Sysinfo CPU label position
[305d8aa6] 2021-02-22 15:28:23 +1100 dmex : Disable CRT __delayLoadHelper2 workaround #809
[2b52367d] 2021-02-22 01:20:55 +1100 dmex : Add missing header typedef from previous commit
[6a8b33cb] 2021-02-22 01:16:16 +1100 dmex : Add CPU topology and latency to Sysinfo CPU graphs
[8973c86e] 2021-02-22 01:14:11 +1100 dmex : Optimize searchbox graphics handle usage
[400ea3ca] 2021-02-22 01:11:30 +1100 dmex : Add default double click action for thread stacks
[761da11b] 2021-02-20 05:22:30 +1100 diversenok : Add definitions for power request management (#806)
[34022f17] 2021-02-17 07:00:03 +1100 dmex : BuildTools: Update to .NET 5.0.3
[ad73f6e0] 2021-02-17 05:28:29 +1100 dmex : Fix about crash (#804), Add syslink support for about commit text
[a45cdf9a] 2021-02-17 00:11:12 +1100 Martin Arndt : Fix commit hash length & link About's hash to GitHub (#804)
[afda2a2d] 2021-02-15 14:48:50 +1100 dmex : Add inspect and open location menus for thread stacks
[a8dff9f2] 2021-02-15 14:47:57 +1100 dmex : Enable generation of EH Continuation for x64
[79a5eaf2] 2021-02-15 00:54:38 +1100 dmex : Prevent timelime overflow from changing the system time to an earlier date
[f5187e15] 2021-02-15 00:52:07 +1100 dmex : Improve system uptime precision
[ff0fbe1b] 2021-02-14 06:16:22 +1100 dmex : Improve restart message, Fix restart initialization
[1e02a1b6] 2021-02-14 04:17:19 +1100 dmex : Fix process restart menu broken by recent win10 patch #798
[7a50630c] 2021-02-13 23:57:34 +1100 dmex : Fix windows 7 timeline graph, Slightly improve timeline calculation
[f7d2da4b] 2021-02-13 14:26:19 +1100 dmex : Fix crash sorting by timeline, Fix typo, Remove extra column space (more consistent with PE)
[f12d46fd] 2021-02-13 13:15:31 +1100 dmex : Add process timeline column #797
[99001419] 2021-02-13 12:57:02 +1100 dmex : Fix boolean check
[18dad902] 2021-02-13 12:56:14 +1100 dmex : Add mapimg export typedefs
[dd267827] 2021-02-13 12:53:06 +1100 dmex : Remove unused format string
[7894e917] 2021-02-13 12:51:55 +1100 dmex : Remove legacy MSVC manifest resource override
[43f8dd7b] 2021-02-12 16:54:28 +1100 dmex : BuildTools: Update appx code for easier testing
[3cc6774c] 2021-02-12 16:47:02 +1100 dmex : Improve plugin import resolving performance
[bb1567d5] 2021-02-12 00:27:39 +1100 dmex : Update duplicate versioninfo year from commit 7c2cf53d
[3d77db5d] 2021-02-12 00:25:34 +1100 dmex : Delay import MessageBox and MessageBeep functions because of dumbass vendors
[f00566a7] 2021-02-11 13:31:06 +1100 dmex : NetworkTools: Improve whois context references
[7c2cf53d] 2021-02-10 09:18:59 +1100 dmex : Update about copyright year
[5ec361af] 2021-02-09 20:00:53 +1100 dmex : Fix regression deleting files with mapped references #794
[872a59df] 2021-02-09 18:11:42 +1100 dmex : NetworkTools: Improve whois performance, Fix using DoH resolution when disabled
[4699d4d2] 2021-02-09 17:04:35 +1100 dmex : Fix device reset after build updates when using custom services
[e2a1d2c4] 2021-02-09 17:03:46 +1100 dmex : Disable errormode #792
[4fbbc2cc] 2021-02-09 17:02:54 +1100 dmex : Add cocepage and errormode colums to processes list #793
[4eef5d08] 2021-02-09 16:51:02 +1100 dmex : Allow empty handles tab for system processes without kernel driver support
[9bc1ca03] 2021-02-09 16:49:45 +1100 dmex : Fix missing APP_CAPABILITY process token groups, Fix missing container tab for msix installed applications
[ce9eff1e] 2021-02-09 16:48:20 +1100 dmex : Fix missing package names for msix installed processes
[51f45d17] 2021-02-09 16:46:48 +1100 dmex : Update Win10 manifests for UTF8
[c40d92de] 2021-02-09 16:45:12 +1100 dmex : Improve process environment enumeration
[f7e34577] 2021-02-07 01:41:22 +1100 dmex : peview: Add prodid case for exports, Add hashing improvements, Add hashing error messages
[4e730134] 2021-02-07 01:35:31 +1100 dmex : NetworkTools: Add deviation units, Remove ping variance
[4bafbda8] 2021-02-06 18:20:24 +1100 dmex : NetworkTools: Add setting for ping timeout, Improve ping window layout
[dd663c09] 2021-02-06 18:19:12 +1100 dmex : Show PnP device name for physical device handles #791
[dadf9ccd] 2021-02-05 21:36:03 +1100 dmex : NetworkTools: Fix graph regression from previous commit
[09bb4b61] 2021-02-05 21:15:25 +1100 dmex : NetworkTools: Add deviation and variance for ping statistics, Change minimum ping scaling defaults to 200ms
[1b527bee] 2021-02-05 21:13:05 +1100 dmex : Make PhSetFilePosition parameter optional
[9ab9a463] 2021-02-05 21:12:15 +1100 dmex : Add handle check for PhGetHandleInformation
[c28356a1] 2021-02-05 07:18:59 +1100 Matthijs Lavrijsen : Improve dbghelp.dll finding on ARM64 (#790)
[39bfe46b] 2021-02-04 05:32:01 +1100 dmex : peview: Reapply TLSH patch
[92935d83] 2021-02-04 05:19:58 +1100 dmex : peview: 3rd attempt fixing build warning that doesn't happen on my machine
[4fcac176] 2021-02-04 05:08:50 +1100 dmex : peview: Try fixing build warning that doesn't happen on my machine yet again
[e630a158] 2021-02-04 04:37:58 +1100 dmex : peview: Fix build linker warning from previous commit
[773cd23a] 2021-02-04 04:15:10 +1100 dmex : peview: Add TLSH support to hashes tab
[8fffe778] 2021-02-04 04:09:41 +1100 dmex : thirdparty: Fix json-c typdef
[d6423a09] 2021-02-04 03:50:05 +1100 dmex : peview: Add missing licence file for ssdeep
[9779590a] 2021-02-04 03:49:43 +1100 dmex : Add yara reference link
[4266c50d] 2021-02-03 12:09:07 +1100 dmex : ExtendedServices: Remove duplicate macro
[7ad27991] 2021-02-03 12:08:04 +1100 dmex : Add RtlAddResourceAttributeAce, RtlAddScopedPolicyIDAce
[d5584566] 2021-02-03 11:27:21 +1100 dmex : Add PhLowerString, Fix typo
[d42f8d80] 2021-02-03 11:22:39 +1100 dmex : peview: Add raw sections, Add raw prodid hash, Add unused header bytes, Disable PE directory rva highlighting
[63ebd7be] 2021-02-03 11:16:26 +1100 dmex : peview: Improve fuzzy hash performance
[7b624d1b] 2021-02-03 11:14:15 +1100 dmex : Add second prodid hash for PhGetMappedImageProdIdHeader
[0ad5517f] 2021-02-02 21:46:35 +1100 dmex : Remove dead link pointing to blocked webpage
[121989d6] 2021-02-01 17:31:25 +1100 dmex : peview: Add overlay to authentihash
[53364fdd] 2021-02-01 17:19:12 +1100 dmex : peview: Add authentihash to hashes tab
[608089f9] 2021-02-01 07:24:24 +1100 dmex : OnlineChecks: Fix dumb VTAPI responses for recapcha
[437ff66d] 2021-02-01 06:32:57 +1100 dmex : peview: Fix fuzzy build warning
[22aa3c6f] 2021-02-01 06:12:55 +1100 dmex : peview: Add hashes tab for showing image hashes, Add SSDEEP support
[80a4c30f] 2021-02-01 06:03:27 +1100 dmex : peview: Add clr type
[d1a3f427] 2021-02-01 06:02:55 +1100 dmex : peview: Fix options change restart
[55f427e9] 2021-02-01 06:02:21 +1100 dmex : peview: Add RFC3161_counterSign certificate enumeration
[4b6bc3ab] 2021-01-29 18:08:16 +1100 dmex : ExtendedTools: Add workaround for broken Win10 GPU node utilization statistics
[d49a1a99] 2021-01-28 21:22:26 +1100 dmex : HardwareDevices: Fix network deltas for disconnected wireless devices
[00f8adc7] 2021-01-28 09:37:15 +1100 dmex : Fix service delayed start typo #786
[7f6ccd5f] 2021-01-27 10:02:52 +1100 dmex : peview: Add layout tab for ELF images, Add spaces for layout rows
[9582ca43] 2021-01-27 10:01:23 +1100 dmex : thirdparty: Update json-c to v0.15
[76d171a7] 2021-01-26 19:53:27 +1100 dmex : Improve PhDeleteFileWin32, Fix PhDeleteFile regresion on RS5
[1221850c] 2021-01-26 19:33:55 +1100 dmex : Add seperator typedef
[48329ff6] 2021-01-26 19:33:15 +1100 dmex : Add 'Go to service' for process services tab
[b462cc0a] 2021-01-26 19:31:03 +1100 dmex : peview: Fix name layout, Fix resizing options window, Add missing copyright
[2bb1ebc2] 2021-01-26 19:14:38 +1100 dmex : Add offset and codepage for resources
[b941fdc0] 2021-01-26 05:47:25 +1100 dmex : Remove unused format string
[0953dd1f] 2021-01-25 23:50:25 +1100 dmex : Add workaround for peak handle count on Windows 10 #784
[b1ecfa9a] 2021-01-25 22:49:09 +1100 dmex : peview: Fix previous commit showing empty addresses
[38ad4a24] 2021-01-25 22:38:25 +1100 dmex : peview: Highlight overlayed image directories
[0ff535ab] 2021-01-25 22:11:45 +1100 dmex : Improve IPv4 hostname lookup performance
[73fbb4bc] 2021-01-25 22:03:24 +1100 dmex : Improve startup plugin enumeration
[36539634] 2021-01-25 21:54:31 +1100 dmex : Ignore ImageCoherencyStatus when check images disabled
[41265e36] 2021-01-25 21:27:05 +1100 dmex : Fix process general tab button alignment
[90a05329] 2021-01-25 21:26:11 +1100 dmex : Remove duplicate plugin manager enumeration
[d531531a] 2021-01-25 21:13:42 +1100 dmex : Fix searchbox auto-focus #576, Fix searchbox auto-focus after minimize #663
[5f797e53] 2021-01-25 20:15:21 +1100 dmex : Add miniinfo window contextmenu for services #79
[2c84735d] 2021-01-25 19:42:00 +1100 dmex : Fix memory context menus not updating the treelist #248
[f25b539e] 2021-01-25 19:40:09 +1100 dmex : Add PhAllocateZeroSafe
[b64bebfe] 2021-01-25 19:39:16 +1100 dmex : Add debug asserts for memory allocations
[17eb9834] 2021-01-25 19:37:10 +1100 dmex : Update PhGetHostNameFromAddressEx with PhDnsQuery2
[759de5e5] 2021-01-25 19:34:22 +1100 dmex : Add LARGE_INTEGER_128
[a350b94c] 2021-01-25 19:33:49 +1100 dmex : Fix PhLoadAppKey memory leak
[849967a1] 2021-01-25 19:33:23 +1100 dmex : Improve CFG and GuardEHContinuation
[4e7fb382] 2021-01-25 19:32:01 +1100 dmex : Remove unused exports
[b2392c8d] 2021-01-25 19:16:14 +1100 dmex : Fix status text memory leak, Update modules tab with ImageCoherencyScanLevel, Improve ImageCoherencyStatusText memory usage
[60833a44] 2021-01-25 14:56:23 +1100 Johnny Shaw : Optimization and bugfix for PhGetMappedImageRelocations (#785)
[1c59132e] 2021-01-25 14:08:40 +1100 dmex : Fix enumeration of image relocations
[c4e315c9] 2021-01-24 16:25:38 +1100 Johnny Shaw : Improve image coherency calucation and configuration (#783)
[b6b8648c] 2021-01-24 03:57:31 +1100 dmex : Add PhOpenFileById
[a626f613] 2021-01-22 14:32:17 +1100 dmex : ExtendedTools: Re-add wswatch with impovements (removed in commit e07919d3)
[9d7315aa] 2021-01-21 21:17:28 +1100 dmex : Temporarily disable native string conversion #777
[c39064ae] 2021-01-21 13:50:33 +1100 dmex : WindowExplorer: Add inspect and open location menu
[973a7613] 2021-01-21 13:47:42 +1100 dmex : DotNetTools: Fix assembly menu ignoring FileBrowseExecutable settings
[9ae36fb4] 2021-01-21 12:54:33 +1100 dmex : WindowExplorer: Add EnableWindowPreview setting
[8d396138] 2021-01-21 09:28:47 +1100 dmex : ExtendedTools: Disable whois for RFC1918 and loopback
[dee1e3c4] 2021-01-20 19:20:19 +1100 dmex : Fix crash from packed images with invalid config directories
[befd8282] 2021-01-20 17:29:58 +1100 dmex : Remove unused field
[84d6742e] 2021-01-19 16:38:51 +1100 dmex : Fix another linker error that doesn't happen on my machine
[cc3308a7] 2021-01-19 16:31:16 +1100 dmex : Fix linker error
[4a95fd2e] 2021-01-19 16:19:50 +1100 dmex : Fix incorrect types, Fix previous commit 27d8e04b
[27d8e04b] 2021-01-19 16:00:18 +1100 dmex : Update Tools > Permissions menu, Add support for viewing power scheme, terminal service and WMI namespace security
[391f3ec2] 2021-01-17 09:46:02 +1100 dmex : Fix column chooser dialog text DPI scaling #782
[7b49f7af] 2021-01-17 08:46:56 +1100 dmex : Fix coherency highlighting kernel modules when the driver is disabled
[a645c679] 2021-01-17 08:43:28 +1100 dmex : Update ntpoapi.h
[7510f733] 2021-01-16 03:51:02 +1100 dmex : Add image coherency column to modules tab (kernel drivers and process modules supported)
[58d9304d] 2021-01-16 03:42:08 +1100 dmex : Fix thread stack string reference
[a1f2261f] 2021-01-15 18:13:10 +1100 dmex : PHNT: Update mitigation options map, Add pseudo handle comments
[3cd8f79e] 2021-01-15 17:57:13 +1100 dmex : Update KPH offsets
[d95c7434] 2021-01-15 16:35:42 +1100 dmex : Improve handle enumeration error checking
[598146c0] 2021-01-15 13:02:03 +1100 dmex : Improve WMI Provider queries, Enable WMI Provider string caching
[6b72bf02] 2021-01-14 07:47:26 +1100 dmex : Add workaround for Restart process menu recreating the process with our token
[2e108656] 2021-01-14 06:22:02 +1100 dmex : Add trayicon overlapped activation (fix by soho)
[33962317] 2021-01-14 06:17:57 +1100 dmex : Add PhGetWindowStyleEx
[2c880572] 2021-01-13 01:25:49 +1100 dmex : Add extra handle check when querying DEP
[38f7784e] 2021-01-13 01:20:30 +1100 dmex : Improve WsCounters query performance (slightly), Remove unnecessary handles #777
[b3e0e565] 2021-01-11 23:59:54 +1100 dmex : Add filename to thread stack columns
[d56642b0] 2021-01-11 21:14:10 +1100 dmex : Add status text for unknown sids
[7edbbb61] 2021-01-11 21:13:42 +1100 dmex : Fix default column dialog focus
[5a7a0045] 2021-01-11 12:07:55 +1100 dmex : PHNT: Add LdrFindResourceEx_U, Fix pipe instance flag
[dd4c1fcd] 2021-01-11 12:06:19 +1100 dmex : Add access entries for ETW and WaitCompletion
[34f72295] 2021-01-10 02:35:29 +1100 dmex : PHNT: Add ImageXfgEnabled, Add MemoryEx/SectionEx functions
[9423f4eb] 2021-01-09 21:48:21 +1100 dmex : ExtendedTools: Fix firewall icons when using high DPI displays #775
[07e22c0c] 2021-01-09 21:46:53 +1100 dmex : ExtendedTools: Add setting to ignore firewall port scanning events #758
[7fef34f1] 2021-01-08 18:48:45 +1100 Johnny Shaw : Add non-animated tray icon (#772)
[784eb1ea] 2021-01-07 18:17:20 +1100 dmex : Fix missing icons for some processes
[eace3239] 2021-01-05 19:59:29 +1100 dmex : peview: Add MFT record index and sequence number
[4b9b8740] 2021-01-05 05:06:09 +1100 dmex : Fix error C2220 when using codepage 936 #753
[1c1ee07b] 2021-01-05 04:57:43 +1100 dmex : BuildTools: Fix building from non-git exported solution directory
[17fd03f8] 2021-01-04 07:13:52 +1100 Johnny Shaw : KPH add linker integrity and kernel compiler option (#769)
[e20b6bca] 2021-01-03 05:48:27 +1100 Johnny Shaw : KPH enforce maximum security level always (#768)
[d2cd2a12] 2021-01-02 20:04:52 +1100 Johnny Shaw : KPH hardening, protected domination check and caller verification (#767)
[890d31b8] 2020-12-31 20:17:21 +1100 dmex : peview: Add clr section hashes, Fix checksum flags
[ed81bf36] 2020-12-28 13:50:09 +1100 dmex : peview: Add ntfs layout tab
[9a7c7924] 2020-12-28 13:27:12 +1100 dmex : peview: Add extra FileId type display, Add extra ProdID components
[daa09029] 2020-12-28 13:25:20 +1100 dmex : peview: Fix link query share access
[3facf0f5] 2020-12-28 13:24:02 +1100 dmex : Fix sysinfo window keyboard accelerator drawing when inactive
[f4b8258d] 2020-12-28 13:18:20 +1100 dmex : Remove unused reference
[0370f326] 2020-12-28 12:07:44 +1100 dmex : Fix arm64 build error #376
[04924051] 2020-12-28 12:06:21 +1100 dmex : HardwareDevices: Fix handle leak
[c4487e6e] 2020-12-28 11:54:04 +1100 dmex : Tidy up PhGetFileVersion
[5d9d18a8] 2020-12-28 11:50:07 +1100 dmex : Fix rare crash querying GuardFlags, Fix PhHttpSocketDownloadToFile memory leak
[b7a83dbc] 2020-12-28 11:48:50 +1100 dmex : Add correct BoundaryDescriptor type, Fix SAL annotation
[b9acc7b7] 2020-12-28 11:38:20 +1100 starix : Add performance event logging definitions
[753a395d] 2020-12-13 14:39:42 +1100 Johnny Shaw : Initialize ImageCoherencyStatus. This prevents the process tree from showing an image as incoherent until analysis runs. (#752)
[71304e0a] 2020-12-12 17:55:22 +1100 dmex : Add check for stage2 before checking image coherency
[6b6f74bb] 2020-12-12 17:25:59 +1100 Johnny Shaw : Implement Image Coherency (#751)
[33ef93ba] 2020-12-11 21:48:29 +1100 dmex : peview: Fix viewing file security entires, Add more window contexts
[da4d1146] 2020-12-10 23:11:05 +1100 dmex : peview: Add error message for repro timestamps
[72fdaadb] 2020-12-10 23:08:07 +1100 dmex : DotNetTools: update macros and links
[c490901c] 2020-12-10 02:31:43 +1100 dmex : DotNetTools: Hide AppDomain column by default
[91bdeb26] 2020-12-09 23:47:28 +1100 dmex : Improve environment string expansion performance
[73a83286] 2020-12-09 23:45:11 +1100 dmex : Fix PhDeleteDirectory regression from 74b49876
[ccabcf08] 2020-12-09 23:44:11 +1100 dmex : Enable pipe reject remote clients
[653fa314] 2020-12-02 13:54:12 +1100 dmex : Remove unused export
[863025eb] 2020-12-02 13:37:12 +1100 dmex : Include extra PhDeleteDirectory checks
[74b49876] 2020-12-02 13:05:29 +1100 dmex : Improve PhDeleteDirectory for RS5 and above
[08ef9747] 2020-12-02 12:21:58 +1100 dmex : peview: Add imagelists, Update file flags
[7110571f] 2020-12-02 12:17:27 +1100 dmex : Add preallocation support and prevent file fragmentation
[5b0b61a9] 2020-12-02 09:02:20 +1100 dmex : Update PhCreateFileWin32Ex with AllocationSize
[0c9fcb5c] 2020-12-02 08:05:50 +1100 dmex : Update phnative.h
[90092d63] 2020-12-02 08:05:40 +1100 dmex : Add PhGetFileAllocationSize/PhSetFileAllocationSize
[82ff90b7] 2020-12-01 05:00:41 +1100 dmex : Remove experimental label from advanced options
[64be16be] 2020-12-01 04:50:23 +1100 dmex : Fix SAL warnings
[9de2a79c] 2020-12-01 04:31:20 +1100 dmex : Fix status for missing com classes
[1a378c8b] 2020-12-01 04:20:07 +1100 dmex : Update ntpoapi.h
[82236c5c] 2020-12-01 02:37:33 +1100 dmex : Fix ITaskService BSTR usage
[4ef2d2c6] 2020-11-30 15:15:51 +1100 dmex : Update ntpoapi.h
[6d09f160] 2020-11-30 13:41:17 +1100 dmex : Update ntpoapi.h
[2aad5804] 2020-11-30 13:40:01 +1100 dmex : Update ntpoapi.h
[1b2aab36] 2020-11-30 13:36:01 +1100 dmex : Add custom POWER_INFORMATION_LEVEL
[6a943d38] 2020-11-30 13:34:30 +1100 dmex : Tidy up unused types
[bb661768] 2020-11-30 13:32:07 +1100 dmex : Update PhGetSecurityDescriptorFromString
[ab4e8949] 2020-11-30 11:03:13 +1100 dmex : Partial revert commit f0183434
[38432c28] 2020-11-30 10:54:10 +1100 dmex : Add PhGetSecurityDescriptorFromString
[09f80db6] 2020-11-30 06:54:13 +1100 dmex : Move mxml to phlib
[806ecffc] 2020-11-30 06:33:35 +1100 dmex : Add mxml wrapper
[b5def0b0] 2020-11-29 08:02:44 +1100 dmex : Update plugin SDK, Update macro usage, Fix vs19 SAL warnings
[20e09c33] 2020-11-29 01:42:32 +1100 dmex : Add SIZE_MAX typedef, Fix vs2019 SAL warnings
[79894b1b] 2020-11-27 22:46:26 +1100 dmex : Fix ifdef check for tls slots
[209f58a1] 2020-11-27 20:33:48 +1100 Denis Kroshin : Add TRACEHANDLE for ETW API
[a7e07ac2] 2020-11-27 08:03:47 +1100 dmex : Update github templates
[ae379c98] 2020-11-27 04:17:04 +1100 dmex : Update mitigation flags
[2fa8271e] 2020-11-27 01:29:36 +1100 dmex : Update process statistics plugin support, Improve process statistics page performance
[f1f34ef7] 2020-11-27 01:28:20 +1100 dmex : Export PhSetListViewItemParam
[f72f9cf2] 2020-11-26 21:42:25 +1100 dmex : Enable ProcessSignaturePolicy when option enabled
[d2718425] 2020-11-26 21:23:47 +1100 dmex : Update options.c
[a3a357a5] 2020-11-26 21:19:20 +1100 dmex : Add missing options reference
[4dec91a7] 2020-11-26 21:15:16 +1100 dmex : Use correct imagelist color flags
[a2c724e2] 2020-11-26 21:10:06 +1100 dmex : Add PhHttpSocketDownloadToFile
[3fe8ed29] 2020-11-26 21:08:46 +1100 dmex : Fix c17 type warning
[210145d1] 2020-11-26 20:21:48 +1100 dmex : Show options dialog restart for mitigation option
[bad9c0f3] 2020-11-26 20:19:14 +1100 dmex : Add PhMoveFileWin32
[c01a7970] 2020-11-26 19:06:36 +1100 dmex : Add export for mitigation options
[ee2eccfb] 2020-11-26 19:02:15 +1100 dmex : Add version release date
[d5c5ef7a] 2020-11-26 19:00:00 +1100 dmex : Add RSDS types
[7473bf38] 2020-11-26 18:56:58 +1100 dmex : Add wow64 mitigation options
[c7644bef] 2020-11-26 18:09:43 +1100 dmex : Move mitigation from setup to options window
[e7c5aaf4] 2020-11-26 03:40:06 +1100 dmex : Enable support for process statistics sorting
[1884adc9] 2020-11-25 23:49:39 +1100 dmex : Return error status for PhGetMappedImageDebugEntryByType
[7f3dd9c0] 2020-11-25 10:56:08 +1100 dmex : Fix missing icons regression #741
[f5838f52] 2020-11-25 10:20:32 +1100 dmex : Add fixed image sizes #741
[4027315e] 2020-11-25 04:36:30 +1100 dmex : Update process properties started caching
[3fbbdb88] 2020-11-25 03:59:12 +1100 dmex : ExtendedNotifications: Retire growl notification support to plugins-extra
[c596b688] 2020-11-25 01:03:14 +1100 dmex : Disable duplicate icon cache flush
[db17de38] 2020-11-24 21:59:19 +1100 dmex : Refresh process properties started time #319
[fbc7e4fc] 2020-11-24 21:37:00 +1100 dmex : Updater: Add option to show update dialog at startup
[e09b98f8] 2020-11-24 19:43:40 +1100 dmex : Export PhImageListItemType
[21077e1d] 2020-11-24 19:31:31 +1100 dmex : Fix icons missing in processes tab #741, Update diagnostics window with icon counters
[1c2e086e] 2020-11-24 15:13:53 +1100 dmex : Revert "Improve icon cache cleanup"
[f8de065c] 2020-11-24 05:25:41 +1100 dmex : Improve icon cache cleanup
[cf0ac9d1] 2020-11-24 05:12:15 +1100 dmex : Add "Remember last selected window" checkbox to options window
[71df5d71] 2020-11-24 05:02:43 +1100 dmex : Add icon cache support. signifigant performance improvments and GDI resource improvments
[bfa50312] 2020-11-24 04:49:14 +1100 dmex : Add imagelist support to treenew control
[25235328] 2020-11-24 04:14:31 +1100 dmex : Enable imagelist mask support
[11931800] 2020-11-23 17:26:57 +1100 dmex : HardwareDevices: Fix multiple details windows for devices
[350a589d] 2020-11-23 06:07:04 +1100 dmex : Merge branch 'master' of https://github.com/processhacker/processhacker
[0f2b394b] 2020-11-23 06:02:28 +1100 dmex : NetworkTools: Add GeoDb lookup cache
[db893484] 2020-11-23 06:02:28 +1100 dmex : Fix executable manifest resource
[60faf9a0] 2020-11-23 06:02:27 +1100 dmex : Disable duplicate executable manifest
[6dfc3272] 2020-11-23 06:02:27 +1100 dmex : peview: Remove unused flags
[9298a975] 2020-11-23 06:02:27 +1100 dmex : BuildTools: Add build_tools.cmd and update with .net5
[e0f08dd6] 2020-11-23 06:02:27 +1100 dmex : Remove seperator from options window
[0fd070ce] 2020-11-23 06:02:27 +1100 dmex : ExtendedTools: Fix dark theme scrollbars
[9a34728e] 2020-11-23 06:00:21 +1100 revengsh : Add group SID in Token tab #740
[f8df1166] 2020-11-22 21:25:38 +1100 dmex : NetworkTools: Add GeoDb lookup cache
[9e53da4a] 2020-11-22 19:56:48 +1100 dmex : Fix executable manifest resource
[ff882300] 2020-11-22 19:50:18 +1100 dmex : Disable duplicate executable manifest
[badc4d1f] 2020-11-22 19:48:32 +1100 dmex : peview: Remove unused flags
[ddcfe896] 2020-11-22 19:47:17 +1100 dmex : BuildTools: Add build_tools.cmd and update with .net5
[96c27be6] 2020-11-22 18:56:40 +1100 dmex : Remove seperator from options window
[18becd42] 2020-11-22 18:53:02 +1100 dmex : ExtendedTools: Fix dark theme scrollbars
[ac61b227] 2020-11-22 03:37:05 +1100 dmex : Add group SID in Token tab #740
[4f2390fb] 2020-11-18 11:32:28 +1100 dmex : ToolStatus: Fix missing toolbar icons when changing themes
[994bb08e] 2020-11-17 23:28:55 +1100 dmex : Update thirdparty.lib to latest visual studio
[e041940f] 2020-11-15 06:51:35 +1100 dmex : Fix leak querying AppIds
[c965020c] 2020-11-12 08:53:52 +1100 dmex : Thirdparty: Fix building with legacy Windows SDK
[e2cb31c0] 2020-11-12 07:30:17 +1100 dmex : ExtendedTools: Add notes for Win10 tracing bug
[8eeed2fe] 2020-11-12 07:28:08 +1100 dmex : ExtendedTools: Add check for active session handle
[8ab9fc11] 2020-11-12 05:06:04 +1100 dmex : NetworkTools: Fix building with legacy Windows SDK
[d69d72b6] 2020-11-12 04:53:58 +1100 dmex : Fix build errors when using legacy Windows SDK and the new standards-compliant preprocessor
[67969cb1] 2020-11-10 22:31:17 +1100 dmex : Updater: Add text for past time
[04199868] 2020-11-10 16:46:46 +1100 dmex : peview: make filetimes consistent
[1de60a7d] 2020-11-10 09:17:59 +1100 dmex : HardwareDevices: enable options window device icons
[cc0ab078] 2020-11-08 23:46:50 +1100 dmex : Updater: Show timestamps on the options -> updater window
[3b1eb792] 2020-11-08 23:16:23 +1100 dmex : peview: Add relative certificate expiry time to the security tab
[e60a26d4] 2020-11-07 14:33:15 +1100 dmex : Update mainwnd.c
[c0a72c34] 2020-11-07 13:49:23 +1100 dmex : Fix restarting current process #734
[251fed39] 2020-11-06 21:09:46 +1100 dmex : Add PhCallNamedPipe, Fix namedpipe regression from 8e45f7fcd61bf8efe2e4c88ed0ecf442911bde6b
[31d5531f] 2020-11-06 19:55:22 +1100 dmex : ExtendedServices: Add Light (StoreApp)
[69189b25] 2020-11-06 13:23:47 +1100 dmex : Fix memory leak when viewing plugin options
[e6d293e8] 2020-11-06 13:02:25 +1100 dmex : peview: Remove unused flag
[2ccb6a61] 2020-11-06 12:41:58 +1100 dmex : peview: Add file object identifier guid
[c5c2463c] 2020-11-04 10:21:51 +1100 dmex : Remove columns from plugin manager window
[4468f375] 2020-11-04 10:21:10 +1100 dmex : Fix warning when building pluginsdk with cplusplus
[b2e5452f] 2020-11-04 10:19:33 +1100 dmex : Add PhEnumeratePlugins
[132fee90] 2020-11-04 03:08:28 +1100 dmex : ExtendedTools: Fix searching local/remote/country columns, Add improved filter caching for firewall events
[836d82f1] 2020-11-03 03:02:19 +1100 dmex : Improve sorting threads by state and wait
[ccea2593] 2020-11-03 01:25:04 +1100 dmex : ExtendedTools: Improve event session management, Improve disk tracing for multiple instances
[8e45f7fc] 2020-11-02 22:39:26 +1100 dmex : Add pipe instances typedef
[d6153372] 2020-11-02 22:38:45 +1100 dmex : Fix regression building plugins with cplusplus
[5bedd71c] 2020-11-02 18:02:50 +1100 dmex : ExtendedTools: Fix crash when flushing etw during initialization #729
[04dda717] 2020-11-02 08:40:23 +1100 dmex : Fix minimal processes showing empty filenames
[45820a13] 2020-11-01 21:34:45 +1100 dmex : ExtendedTools: Fix string references
[0511e6be] 2020-11-01 18:58:22 +1100 dmex : ExtendedTools: disable Linklocal hostname
[1d85241c] 2020-11-01 18:51:16 +1100 dmex : ExtendedTools: Add freelist to firewall entries
[e4262011] 2020-11-01 17:07:22 +1100 dmex : Merge PhLoadDefaultPlugins
[4dfd0bcf] 2020-11-01 14:30:05 +1100 dmex : Remove plugin blocklist since we have EnableSafeDefaultPlugins #728
[5091268e] 2020-11-01 00:42:15 +1100 dmex : Add ping, tracert, whois menu to firewall tab
[0904bed7] 2020-10-31 01:32:08 +1100 dmex : ExtendedTools: Fix etw session cleanup regression
[8818aa1c] 2020-10-31 01:10:04 +1100 dmex : ExtendedTools: cleanup etw sessions
[cb6cc307] 2020-10-31 00:10:55 +1100 dmex : ExtendedTools: Reuse existing trace sessions #726
[87e15bb7] 2020-10-30 06:52:51 +1100 dmex : Move options graphs to same layout as highlighting
[1ae50630] 2020-10-30 06:19:30 +1100 dmex : Fix resolving hostnames when disabled #723
[12983723] 2020-10-30 03:50:54 +1100 dmex : ExtendedTools: Update hostname strings
[ad632c88] 2020-10-30 03:49:20 +1100 dmex : Include addional DNS types for local query
[6165b868] 2020-10-30 02:57:50 +1100 dmex : Add named pipe ClientSessionId/ServerSessionId
[c9658029] 2020-10-30 01:04:24 +1100 dmex : Add named pipe ClientProcessId/ServerProcessId/ClientComputerName support
[5d83725c] 2020-10-30 00:58:53 +1100 dmex : Tidy up names
[e2f5e825] 2020-10-29 23:58:30 +1100 dmex : ExtendedTools: Fix firewall tab resolving hostnames with DoH
[771856b8] 2020-10-29 23:47:34 +1100 dmex : Fix dprintf conformance
[68c0e3ee] 2020-10-29 23:40:39 +1100 dmex : Fix suspending WmiPrvSE.exe causing Process Hacker to hang #713
[00da115d] 2020-10-29 20:27:01 +1100 dmex : ExtendedTools: Add support for exporting firewall tab
[ae469411] 2020-10-29 18:20:18 +1100 dmex : Improve .NET 5.0 process detection
[4a6a9f46] 2020-10-29 17:25:26 +1100 dmex : Delete .gitmodules
[6987d2b2] 2020-10-29 05:23:27 +1100 dmex : Updater: Improve build highlighting
[66cda2d6] 2020-10-29 05:08:54 +1100 dmex : Updater: Add correct reference
[c665a56c] 2020-10-29 05:01:19 +1100 dmex : Updater: Ignore current build when highlighting latest build
[c6b82a58] 2020-10-29 04:33:57 +1100 dmex : Update fwtab.c
[81f6446b] 2020-10-29 04:31:42 +1100 dmex : Fix build
[eda0bf7d] 2020-10-29 04:17:18 +1100 dmex : Update fwtab.c
[d94d3110] 2020-10-29 04:08:47 +1100 dmex : Updater: Show nightly builds as blue on changelog window
[306ce011] 2020-10-29 04:08:08 +1100 dmex : Update fwtab.c
[8c1b2089] 2020-10-29 03:43:27 +1100 dmex : ExtendedTools: Add win32 filename
[09085b40] 2020-10-29 03:33:20 +1100 dmex : ExtendedTools: Enable firewall tab by default, Fix resetting sort
[3241803a] 2020-10-29 03:31:20 +1100 dmex : Export PhInitializeTreeNewColumnMenuEx
[d611d189] 2020-10-28 23:04:09 +1100 dmex : ExtendedTools: Improve status text
[7f8059ea] 2020-10-28 22:35:36 +1100 dmex : ExtendedTools: Fix crash sorting country column, Fix naming
[9eac64d0] 2020-10-28 21:57:02 +1100 dmex : ExtendedTools: Add workaround for legacy Win7 support
[d168ccea] 2020-10-28 20:05:34 +1100 dmex : ExtendedTools: Remove unused code, Add extra version checking
[029c0777] 2020-10-28 18:56:24 +1100 dmex : ExtendedTools: Fix firewall cache startup crash #715
[c2d93253] 2020-10-28 16:20:07 +1100 dmex : Remove unused writable mapped images
[19f2ad2c] 2020-10-28 16:16:48 +1100 dmex : Merge branch 'master' of https://github.com/processhacker/processhacker
[7dca8b88] 2020-10-28 16:16:31 +1100 dmex : ExtendedTools: Fix startup crash #715
[48ab16dc] 2020-10-28 16:14:57 +1100 Marek Knápek : Fix GPU Adapter Details window title. (#720)
[93b68458] 2020-10-28 16:00:07 +1100 dmex : Fix window title #716
[8da01eff] 2020-10-28 03:43:09 +1100 dmex : ExtendedTools: Fix firewall events not showing on Windows7
[c4d042a6] 2020-10-28 00:22:09 +1100 dmex : Fix firewall tab dark theme
[8be9b734] 2020-10-27 23:55:24 +1100 dmex : Add hostname resolve status for network connections
[af5fc96d] 2020-10-27 22:42:16 +1100 dmex : ExtendedTools: Ignore loopback firewall events, Fix hostname status for inaddr_any
[1ea2adce] 2020-10-27 21:47:11 +1100 dmex : ExtendedTools: Add hostname resolve status
[bee7e46b] 2020-10-27 21:40:23 +1100 dmex : ExtendedTools: Fix ipv6 scope address, Fix event time
[1ad3db67] 2020-10-27 20:52:56 +1100 dmex : ExtendedTools: Add username to firewall column, Add username cache
[58d2e73e] 2020-10-27 20:19:01 +1100 dmex : Fix advanced options dropdown menu
[55a3d7d2] 2020-10-27 20:09:21 +1100 dmex : Add seperate error for default plugins
[f1529a58] 2020-10-27 19:54:07 +1100 dmex : Enable ShowPluginLoadErrors by default
[4e67be55] 2020-10-27 19:37:22 +1100 dmex : HardwareDevices: Disable device options icons for issue on Windows 7, Fix graph header text resize
[4e67eade] 2020-10-27 19:20:30 +1100 dmex : Export PhDoesFileExists
[5fea174a] 2020-10-27 19:13:38 +1100 dmex : ExtendedTools: check native paths
[29b5acc6] 2020-10-27 19:01:49 +1100 dmex : ExtendedTools: Fix filename case, Add filter query caching
[501501f7] 2020-10-27 18:02:31 +1100 dmex : ExtendedTools: Add windows 7 support, Remove unused strings
[4bc92af1] 2020-10-27 17:25:00 +1100 dmex : ExtendedTools: Disable processing events when inactive
[dd633010] 2020-10-27 17:12:32 +1100 dmex : ExtendedTools: Add country column to firewall tab, Improve entry caching
[4c94818b] 2020-10-27 17:01:42 +1100 dmex : NetworkTools: Add plugin interface
[d57bba42] 2020-10-27 12:23:53 +1100 dmex : ExtendedTools: Enable remote hostname lookup
[5879d916] 2020-10-27 05:15:20 +1100 dmex : ExtendedTools: Fix memory leak, Add address cache
[e4c01a18] 2020-10-27 04:20:08 +1100 dmex : Update fwmon.c
[34e4cb6d] 2020-10-27 04:11:12 +1100 dmex : Update exttools.h
[33b861fb] 2020-10-27 04:03:26 +1100 dmex : ExtendedTools: Add error status to firewall tab
[77d3372e] 2020-10-27 02:44:42 +1100 dmex : ExtendedTools: Fix firewall tab memory leak
[0d1fb1b0] 2020-10-27 02:42:17 +1100 dmex : Add EnableSafeDefaultPlugins setting
[7f3a735a] 2020-10-26 19:04:58 +1100 dmex : ExtendedTools: Fix firewall tab crash after cache cleanup
[3adec1ea] 2020-10-26 18:05:52 +1100 dmex : ExtendedTools: Improve firewall event caching, Fix missing remote address for some entries, Add firewall tab rightclick menu
[fb26173e] 2020-10-26 15:11:54 +1100 dmex : ExtendedTools: Improve description and firewall sorting
[ef984e9b] 2020-10-26 15:05:33 +1100 dmex : ExtendedTools: Add 'Enable firewall' option for enabling the firewall monitoring tab
[91f91463] 2020-10-26 14:51:45 +1100 dmex : Update ProcessHacker.def
[9fcd2c6f] 2020-10-26 14:51:38 +1100 dmex : Add PhDnsQuery2
[5a42a552] 2020-10-26 12:57:31 +1100 dmex : Add VariantInit
[fb185531] 2020-10-26 12:57:17 +1100 dmex : Add heaps to memory tab
[92e8fd40] 2020-10-26 12:56:45 +1100 dmex : Update exprodid.h
[3b061c10] 2020-10-26 12:17:54 +1100 dmex : Improve search filter memory usage
[118252d3] 2020-10-26 10:46:15 +1100 dmex : Add correct type for previous commit
[42771db5] 2020-10-26 10:44:53 +1100 dmex : Fix single instance when sysinfo window visible #688
[0275f8d9] 2020-10-24 14:01:16 +1100 dmex : Update SAL macros
[cc77e1c6] 2020-10-24 13:58:05 +1100 dmex : Fix thread analyze wait access not showing information for some processes
[588c8ca5] 2020-10-24 13:54:52 +1100 dmex : Fix runas inheriting the current errormode
[f0e4e688] 2020-10-24 13:53:14 +1100 dmex : Add ADDR_UNSPEC macro
[a47717a3] 2020-10-24 13:52:35 +1100 dmex : Add PhItemList
[e856774d] 2020-10-21 01:02:04 +1100 dmex : Update description for ExtensionPointDisablePolicy
[5231f905] 2020-10-20 14:06:15 +1100 dmex : Fix download length regression from BuildTools #707
[96f20096] 2020-10-13 22:55:51 +1100 dmex : Updater: Add double click to changlog window #705
[7bb36fe3] 2020-10-11 01:26:14 +1100 dmex : peview: Add size label to security tab
[a44f9ef2] 2020-10-11 00:46:31 +1100 dmex : Move plugin manager to options window
[dfae92f6] 2020-10-11 00:01:08 +1100 dmex : BuildTools: Add updated mxml
[c62ff9e0] 2020-10-10 23:50:03 +1100 dmex : Use new include paths
[fc338f18] 2020-10-10 23:46:31 +1100 dmex : Fix thirdparty version mismatch C1900
[8321694a] 2020-10-10 23:08:14 +1100 dmex : Add updated thirdparty libs
[b0036d89] 2020-10-10 22:43:26 +1100 dmex : Fix hashtable macro warning
[b826eabf] 2020-10-10 21:37:44 +1100 dmex : Add support for thirdparty libs
[992fe97a] 2020-10-10 21:32:46 +1100 dmex : Update .gitignore
[f97e2808] 2020-10-10 21:30:51 +1100 dmex : Move thirdparty code to seperate project
[b477c2bb] 2020-10-10 20:06:55 +1100 dmex : Add mxml v3.2
[8e6133d9] 2020-10-09 16:03:30 +1100 dmex : peview: Add tree to certificate tab
[ffbecbc5] 2020-10-09 12:03:12 +1100 dmex : Add PhSystemTimeToLargeInteger
[c0ccbc40] 2020-10-08 15:15:46 +1100 dmex : Update ntexapi.h
[37e1383b] 2020-10-06 14:18:55 +1100 dmex : peview: update certificate name flags
[f95eaa1f] 2020-10-06 12:09:55 +1100 dmex : peview: update column index
[d00942f4] 2020-10-06 10:29:02 +1100 dmex : peview: ignore parent chained image certificate
[5126478e] 2020-10-06 09:54:10 +1100 dmex : peview: show correct chained certificate index
[94266c93] 2020-10-06 09:25:31 +1100 dmex : peview: show chained image certificates
[829aaca3] 2020-10-06 09:23:00 +1100 dmex : Add legacy plugin to blocklist #702
[872bb111] 2020-10-04 14:03:28 +1100 dmex : peview: Add file identifier to general tab
[c2917277] 2020-10-04 04:27:54 +1100 dmex : Fix column dialog fonts
[81ee035a] 2020-10-03 22:54:54 +1000 dmex : Fix newly added columns from showing on the column dialog
[b3cac64b] 2020-10-03 21:33:51 +1000 dmex : peview: Improve certificate enumeration for nested certificates
[f7efd45b] 2020-10-03 20:37:55 +1000 dmex : Add sorting for entries removed from column dialog
[cda3f2a0] 2020-10-03 19:17:47 +1000 dmex : Add mxml fix for attribute names
[1f0e035b] 2020-10-03 18:51:18 +1000 dmex : Fix crash changing columns after using the filter
[c2f5db05] 2020-10-03 18:50:34 +1000 dmex : Improve options dialog startup check for autorun
[f4ae9c75] 2020-10-03 18:48:26 +1000 dmex : Fix unicode split characters
[695308a9] 2020-10-03 18:47:54 +1000 dmex : Add correct types
[17be77e1] 2020-10-03 18:45:52 +1000 dmex : Add infoclass to PhEnumerateValueKey
[14a57e64] 2020-10-03 17:59:52 +1000 dmex : Fix changing menu color
[7edcf882] 2020-10-03 17:51:22 +1000 dmex : Fix PhFormatDouble from commit 9fe9744e
[decadc6e] 2020-10-03 02:16:45 +1000 dmex : CmdTool: Add help for commandline options, Add copyright
[9b057cb5] 2020-10-03 02:15:37 +1000 dmex : Remove legacy commandline
[dbb77ab4] 2020-10-03 02:15:05 +1000 dmex : Fix crash changing treeview columns
[90bf7e0f] 2020-10-03 02:13:19 +1000 dmex : ToolStatus: Add settings for showing graphs on the taskbar
[359fc076] 2020-10-02 21:31:53 +1000 dmex : Fix searchbox dark background #693
[ac3aa072] 2020-10-02 19:53:34 +1000 dmex : Fix searching inactive columns
[c526672d] 2020-10-02 19:18:08 +1000 dmex : Update column chooser window layout
[62465b73] 2020-10-02 18:51:00 +1000 dmex : Add searchbox to tree column chooser window
[1c33ab8f] 2020-10-02 17:26:18 +1000 dmex : ToolStatus: Add customize dialog window icon
[7527d4d3] 2020-09-30 00:55:58 +1000 dmex : ToolStatus: Fix search regression #696 from commit 7a938fdd
[b291bde2] 2020-09-29 06:38:11 +1000 dmex : ExtendedTools: Improve text caching, Remove string allocations
[ace871d8] 2020-09-29 01:44:02 +1000 dmex : Move console support to dedicated CustomCmdTool project
[4fee64ee] 2020-09-29 00:12:54 +1000 dmex : KPH: Update to stdc17, Add zero pool support
[17ca663c] 2020-09-28 04:31:12 +1000 dmex : Add KphServiceName setting for using custom driver service names
[f3599085] 2020-09-27 21:57:33 +1000 dmex : Update prpggen.c
[7a938fdd] 2020-09-27 21:55:23 +1000 dmex : Add improved performance for plugin window extensions
[edf229a3] 2020-09-27 20:44:25 +1000 dmex : Disable MicrosoftSignedOnly mitigation on Win10 20H1
[79747cef] 2020-09-27 09:50:08 +1000 dmex : Fix updater cache #687
[62fe20f1] 2020-09-27 09:35:12 +1000 dmex : Revert "Fix updater cache #687"
[23cf800e] 2020-09-27 09:08:59 +1000 dmex : Add UnhandledExceptionCrashDump
[887d621e] 2020-09-27 08:56:46 +1000 dmex : Add comments, Fix tabspace, Remove legacy code
[790b5a65] 2020-09-27 08:51:15 +1000 dmex : Revert "Update procrec.c"
[974a85f2] 2020-09-27 08:48:31 +1000 dmex : Update procrec.c
[ebe789a0] 2020-09-27 08:48:26 +1000 dmex : Update options.c
[821df21f] 2020-09-27 08:43:50 +1000 dmex : Add copy menu to advanced options, Refresh advanced options after editing values
[d222e216] 2020-09-26 02:51:38 +1000 dmex : Fix updater cache #687
[88effa69] 2020-09-26 02:33:43 +1000 dmex : Update mapimg.c
[6c49c862] 2020-09-26 02:32:51 +1000 dmex : Add refresh to advanved options
[978baf1a] 2020-09-26 00:35:17 +1000 dmex : Add searchbox to advanced options, Update advanced options page layout
[0c33a6a0] 2020-09-26 00:33:54 +1000 dmex : Update Plugins.props
[4a1a4466] 2020-09-26 00:32:45 +1000 dmex : Improve find window memory usage
[d1166462] 2020-09-25 09:13:14 +1000 dmex : BuildTools: Fix output string
[6f769f01] 2020-09-25 09:12:21 +1000 dmex : Fix stdc17 macro usage
[13ab19d2] 2020-09-25 08:32:06 +1000 dmex : peview: Add mscoree.h
[2fdc4d42] 2020-09-25 08:31:03 +1000 dmex : Update appveyor.yml
[6f71e7e0] 2020-09-25 07:27:33 +1000 dmex : Fix build
[28d4002d] 2020-09-25 06:37:45 +1000 dmex : BuildTools: Add improved process error handling
[c5ba2f20] 2020-09-25 05:40:57 +1000 dmex : Add workaround for vs19 preview preprocessor issue with windows sdk
[9916b204] 2020-09-25 05:18:03 +1000 dmex : Update appveyor.yml
[af9f4b2e] 2020-09-25 05:12:56 +1000 dmex : Enable appveyor preview images
[1b3b9189] 2020-09-25 04:52:16 +1000 dmex : Fix leak querying WSL versioninfo
[abf549a1] 2020-09-24 21:35:45 +1000 dmex : Fix #483
[3589846f] 2020-09-24 18:11:55 +1000 dmex : Add coreclr to .NET modules
[ce330aeb] 2020-09-24 17:43:12 +1000 dmex : Add support for 20H2
[2f726412] 2020-09-24 04:37:22 +1000 dmex : Add metahost.h
[636a86b0] 2020-09-23 10:54:31 +1000 dmex : Fix error message
[a6260f47] 2020-09-23 10:28:57 +1000 dmex : Fis status message
[931bd9a6] 2020-09-23 10:11:11 +1000 dmex : Add build_verbose.cmd
[cd4d2601] 2020-09-23 09:40:11 +1000 dmex : BuildTools: delay creating output directory
[8abac5a6] 2020-09-23 09:00:36 +1000 dmex : BuildTools: remove libgit2 until rest api supported
[1862ce06] 2020-09-22 19:46:24 +1000 dmex : BuildTools: Update repo directory
[d9605a28] 2020-09-22 19:09:19 +1000 dmex : Updater: remove unused reference
[4a024c20] 2020-09-22 19:04:18 +1000 dmex : Add gitignore rules for build tool pdbs
[61947e41] 2020-09-22 18:39:25 +1000 dmex : Fix gitignore rules for build tools releases
[8bff761f] 2020-09-22 18:31:30 +1000 dmex : peview: Add missing CLR header from SDK
[266f8838] 2020-09-22 18:30:31 +1000 dmex : ToolStatus: Show elevation button by default
[a78a1fea] 2020-09-22 18:25:26 +1000 dmex : Fix wsl image version status
[73ab06ad] 2020-09-22 18:23:53 +1000 dmex : Updater: Remove legacy commit message