Online Clipboard

About Online Clipboard…

Copy text and paste it to this Online Clipboard, and access anytime using the same clipboard code. Content isn't protected, so anyone can update what's here.

I claim no responsibility for any content posted here. I also reserve the right to delete any entry at any time without notice.

Clipboard Contents

http://www.miraclesalad.com/webtools/clip.php?clip=3089

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
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
Logfile of random's system information tool 1.06 (written by random/random)
Run by LoO at 2009-09-27 23:12:13
Microsoft® Windows Vista™ Édition Familiale Basique  Service Pack 2
System drive C: has 26 GB (37%) free of 71 GB
Total RAM: 2038 MB (49% free)

Logfile of Trend Micro HijackThis v2.0.2
Scan saved at 23:12:24, on 27/09/2009
Platform: Windows Vista SP2 (WinNT 6.00.1906)
MSIE: Internet Explorer v8.00 (8.00.6001.18813)
Boot mode: Normal

Running processes:
C:\Windows\system32\Dwm.exe
C:\Windows\system32\taskeng.exe
C:\Windows\Explorer.EXE
C:\Windows\system32\taskeng.exe
C:\Program Files\Intel\Intel Matrix Storage Manager\IAAnotif.exe
C:\Windows\RtHDVCpl.exe
C:\Windows\System32\hkcmd.exe
C:\Windows\System32\igfxpers.exe
C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe
C:\Windows\system32\igfxsrvc.exe
C:\Acer\Empowering Technology\eDataSecurity\x86\eDSLoader.exe
C:\Program Files\Avira\AntiVir Desktop\avgnt.exe
C:\Program Files\Windows Media Player\wmpnscfg.exe
C:\Program Files\Windows Live\Messenger\msnmsgr.exe
C:\Program Files\Spybot - Search & Destroy\TeaTimer.exe
C:\Users\LoO\AppData\Roaming\Microsoft\Live Search\Notification-LiveSearch.exe
C:\Acer\Empowering Technology\ENET\ENMTRAY.EXE
C:\Users\LoO\AppData\Local\Temp\RtkBtMnt.exe
C:\Acer\Empowering Technology\EPOWER\EPOWER_DMC.EXE
C:\Acer\Empowering Technology\ACER.EMPOWERING.FRAMEWORK.SUPERVISOR.EXE
C:\Acer\Empowering Technology\eRecovery\ERAGENT.EXE
C:\Users\LoO\AppData\Roaming\Microsoft\Live Search\Mise-a-jour-LiveSearch.exe
C:\Program Files\Mozilla Firefox\firefox.exe
C:\Users\LoO\Downloads\RSIT.exe
C:\Program Files\trend micro\LoO.exe

R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = http://google.fr/
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = http://fr.fr.acer.yahoo.com
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = http://go.microsoft.com/fwlink/?LinkId=54896
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = http://go.microsoft.com/fwlink/?LinkId=54896
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = http://fr.fr.acer.yahoo.com
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant = 
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch = 
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = *.local
R0 - HKCU\Software\Microsoft\Internet Explorer\Toolbar,LinksFolderName = 
R3 - URLSearchHook: (no name) - {91C18ED5-5E1C-4AE5-A148-A861DE8C8E16} - (no file)
O1 - Hosts: ::1 localhost
O2 - BHO: Adobe PDF Reader Link Helper - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - c:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelper.dll
O2 - BHO: Spybot-S&D IE Protection - {53707962-6F74-2D53-2644-206D7942484F} - C:\Program Files\Spybot - Search & Destroy\SDHelper.dll
O2 - BHO: Search Helper - {6EBF7485-159F-4bff-A14F-B9E3AAC4465B} - C:\Program Files\Microsoft\Search Enhancement Pack\Search Helper\SEPsearchhelperie.dll
O2 - BHO: Programme d'aide de l'Assistant de connexion Windows Live - {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
O2 - BHO: Google Toolbar Helper - {AA58ED58-01DD-4d91-8333-CF10577473F7} - C:\Program Files\Google\Google Toolbar\GoogleToolbar_32.dll
O2 - BHO: Google Toolbar Notifier BHO - {AF69DE43-7D58-4638-B6FA-CE66B5AD205D} - C:\Program Files\Google\GoogleToolbarNotifier\5.2.4204.1700\swg.dll
O2 - BHO: Google Dictionary Compression sdch - {C84D72FE-E17D-4195-BB24-76C02E2E7C4E} - C:\Program Files\Google\Google Toolbar\Component\fastsearch_B7C5AC242193BB3E.dll
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll
O3 - Toolbar: Acer eDataSecurity Management - {5CBE3B7C-1E47-477e-A7DD-396DB0476E29} - C:\Acer\Empowering Technology\eDataSecurity\x86\eDStoolbar.dll
O3 - Toolbar: (no name) - {1E61ED7C-7CB8-49d6-B9E9-AB4C880C8414} - (no file)
O3 - Toolbar: Google Toolbar - {2318C2B1-4965-11d4-9B18-009027A5CD4F} - C:\Program Files\Google\Google Toolbar\GoogleToolbar_32.dll
O4 - HKLM\..\Run: [IAAnotif] "C:\Program Files\Intel\Intel Matrix Storage Manager\Iaanotif.exe"
O4 - HKLM\..\Run: [RtHDVCpl] RtHDVCpl.exe
O4 - HKLM\..\Run: [IgfxTray] C:\Windows\system32\igfxtray.exe
O4 - HKLM\..\Run: [HotKeysCmds] C:\Windows\system32\hkcmd.exe
O4 - HKLM\..\Run: [Persistence] C:\Windows\system32\igfxpers.exe
O4 - HKLM\..\Run: [RemoteControl] "C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe"
O4 - HKLM\..\Run: [LanguageShortcut] "C:\Program Files\CyberLink\PowerDVD\Language\Language.exe"
O4 - HKLM\..\Run: [eDataSecurity Loader] C:\Acer\Empowering Technology\eDataSecurity\x86\eDSloader.exe
O4 - HKLM\..\Run: [WarReg_PopUp] C:\Program Files\Acer\WR_PopUp\WarReg_PopUp.exe
O4 - HKLM\..\Run: [Skytel] Skytel.exe
O4 - HKLM\..\Run: [Malwarebytes Anti-Malware (reboot)] "C:\Program Files\Malwarebytes' Anti-Malware\mbam.exe" /runcleanupscript
O4 - HKLM\..\Run: [avgnt] "C:\Program Files\Avira\AntiVir Desktop\avgnt.exe" /min
O4 - HKCU\..\Run: [ccleaner] "C:\Program Files\CCleaner\CCleaner.exe" /AUTO
O4 - HKCU\..\Run: [uTorrent] "C:\Program Files\uTorrent\uTorrent.exe"
O4 - HKCU\..\Run: [WMPNSCFG] C:\Program Files\Windows Media Player\WMPNSCFG.exe
O4 - HKCU\..\Run: [msnmsgr] "C:\Program Files\Windows Live\Messenger\msnmsgr.exe" /background
O4 - HKCU\..\Run: [swg] "C:\Program Files\Google\GoogleToolbarNotifier\GoogleToolbarNotifier.exe"
O4 - HKCU\..\Run: [SpybotSD TeaTimer] C:\Program Files\Spybot - Search & Destroy\TeaTimer.exe
O4 - HKUS\S-1-5-19\..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /detectMem (User 'SERVICE LOCAL')
O4 - HKUS\S-1-5-19\..\Run: [WindowsWelcomeCenter] rundll32.exe oobefldr.dll,ShowWelcomeCenter (User 'SERVICE LOCAL')
O4 - HKUS\S-1-5-20\..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /detectMem (User 'SERVICE RÉSEAU')
O4 - Startup: Outil de notification Live Search.lnk = C:\Users\LoO\AppData\Roaming\Microsoft\Live Search\Notification-LiveSearch.exe
O4 - Global Startup: Empowering Technology Launcher.lnk = ?
O8 - Extra context menu item: E&xporter vers Microsoft Excel - res://C:\PROGRA~1\MICROS~2\OFFICE11\EXCEL.EXE/3000
O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\Office12\REFIEBAR.DLL
O9 - Extra button: (no name) - {DFB852A3-47F8-48C4-A200-58CAB36FD2A2} - C:\Program Files\Spybot - Search & Destroy\SDHelper.dll
O9 - Extra 'Tools' menuitem: Spybot - Search && Destroy Configuration - {DFB852A3-47F8-48C4-A200-58CAB36FD2A2} - C:\Program Files\Spybot - Search & Destroy\SDHelper.dll
O13 - Gopher Prefix: 
O15 - Trusted Zone: http://*.mcafee.com
O20 - AppInit_DLLs: C:\PROGRA~1\Google\GOOGLE~2\GOEC62~1.DLL
O23 - Service: Avira AntiVir Planificateur (AntiVirSchedulerService) - Avira GmbH - C:\Program Files\Avira\AntiVir Desktop\sched.exe
O23 - Service: Avira AntiVir Guard (AntiVirService) - Avira GmbH - C:\Program Files\Avira\AntiVir Desktop\avguard.exe
O23 - Service: Apple Mobile Device - Apple Inc. - C:\Program Files\Common Files\Apple\Mobile Device Support\bin\AppleMobileDeviceService.exe
O23 - Service: Service Bonjour (Bonjour Service) - Apple Inc. - C:\Program Files\Bonjour\mDNSResponder.exe
O23 - Service: eDataSecurity Service - Egis Incorporated - C:\Acer\Empowering Technology\eDataSecurity\x86\eDSService.exe
O23 - Service: eLock Service (eLockService) - Acer Inc. - C:\Acer\Empowering Technology\eLock\Service\eLockServ.exe
O23 - Service: eNet Service - Acer Inc. - C:\Acer\Empowering Technology\eNet\eNet Service.exe
O23 - Service: eRecovery Service (eRecoveryService) - Acer Inc. - C:\Acer\Empowering Technology\eRecovery\eRecoveryService.exe
O23 - Service: eSettings Service (eSettingsService) - Unknown owner - C:\Acer\Empowering Technology\eSettings\Service\capuserv.exe
O23 - Service: Google Software Updater (gusvc) - Google - C:\Program Files\Google\Common\Google Updater\GoogleUpdaterService.exe
O23 - Service: Intel(R) Matrix Storage Event Monitor (IAANTMON) - Intel Corporation - C:\Program Files\Intel\Intel Matrix Storage Manager\Iaantmon.exe
O23 - Service: Service de l’iPod (iPod Service) - Apple Inc. - C:\Program Files\iPod\bin\iPodService.exe
O23 - Service: LightScribeService Direct Disc Labeling Service (LightScribeService) - Hewlett-Packard Company - C:\Program Files\Common Files\LightScribe\LSSrvc.exe
O23 - Service: McAfee Real-time Scanner (McShield) - Unknown owner - C:\PROGRA~1\McAfee\VIRUSS~1\mcshield.exe (file missing)
O23 - Service: McAfee SystemGuards (McSysmon) - Unknown owner - C:\PROGRA~1\McAfee\VIRUSS~1\mcsysmon.exe (file missing)
O23 - Service: MobilityService - Unknown owner - C:\Acer\Mobility Center\MobilityService.exe
O23 - Service: ePower Service (WMIService) - acer - C:\Acer\Empowering Technology\ePower\ePowerSvc.exe
O23 - Service: XAudioService - Conexant Systems, Inc. - C:\Windows\system32\DRIVERS\xaudio.exe

--
End of file - 8814 bytes

======Registry dump======

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{06849E9F-C8D7-4D59-B87D-784B7D6BE0B3}]
Adobe PDF Reader Link Helper - c:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelper.dll [2006-10-23 62080]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{53707962-6F74-2D53-2644-206D7942484F}]
Spybot-S&D IE Protection - C:\Program Files\Spybot - Search & Destroy\SDHelper.dll [2009-01-26 1879896]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{6EBF7485-159F-4bff-A14F-B9E3AAC4465B}]
Search Helper - C:\Program Files\Microsoft\Search Enhancement Pack\Search Helper\SEPsearchhelperie.dll [2009-05-19 137600]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9030D464-4C02-4ABF-8ECC-5164760863C6}]
Programme d'aide de l'Assistant de connexion Windows Live - C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll [2009-01-22 408448]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{AA58ED58-01DD-4d91-8333-CF10577473F7}]
Google Toolbar Helper - C:\Program Files\Google\Google Toolbar\GoogleToolbar_32.dll [2009-09-12 256112]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{AF69DE43-7D58-4638-B6FA-CE66B5AD205D}]
Google Toolbar Notifier BHO - C:\Program Files\Google\GoogleToolbarNotifier\5.2.4204.1700\swg.dll [2009-09-12 761840]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{C84D72FE-E17D-4195-BB24-76C02E2E7C4E}]
Google Dictionary Compression sdch - C:\Program Files\Google\Google Toolbar\Component\fastsearch_B7C5AC242193BB3E.dll [2009-09-12 458736]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{DBC80044-A445-435b-BC74-9C25C1C588A9}]
Java(tm) Plug-In 2 SSV Helper - C:\Program Files\Java\jre6\bin\jp2ssv.dll [2009-07-25 41760]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar]
{5CBE3B7C-1E47-477e-A7DD-396DB0476E29} - Acer eDataSecurity Management - C:\Acer\Empowering Technology\eDataSecurity\x86\eDStoolbar.dll [2008-01-03 155184]
{1E61ED7C-7CB8-49d6-B9E9-AB4C880C8414}
{2318C2B1-4965-11d4-9B18-009027A5CD4F} - Google Toolbar - C:\Program Files\Google\Google Toolbar\GoogleToolbar_32.dll [2009-09-12 256112]

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]
"IAAnotif"=C:\Program Files\Intel\Intel Matrix Storage Manager\Iaanotif.exe [2007-10-03 178712]
"RtHDVCpl"=C:\Windows\RtHDVCpl.exe [2008-01-08 4853760]
"IgfxTray"=C:\Windows\system32\igfxtray.exe [2007-08-28 141848]
"HotKeysCmds"=C:\Windows\system32\hkcmd.exe [2007-08-28 154136]
"Persistence"=C:\Windows\system32\igfxpers.exe [2007-08-28 137752]
"RemoteControl"=C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe [2008-01-22 81920]
"LanguageShortcut"=C:\Program Files\CyberLink\PowerDVD\Language\Language.exe [2007-10-11 62760]
"eDataSecurity Loader"=C:\Acer\Empowering Technology\eDataSecurity\x86\eDSloader.exe [2008-01-03 521776]
"WarReg_PopUp"=C:\Program Files\Acer\WR_PopUp\WarReg_PopUp.exe [2008-01-29 303104]
"Skytel"=C:\Windows\Skytel.exe [2007-11-21 1826816]
"Malwarebytes Anti-Malware (reboot)"=C:\Program Files\Malwarebytes' Anti-Malware\mbam.exe [2009-09-10 1312080]
"avgnt"=C:\Program Files\Avira\AntiVir Desktop\avgnt.exe [2009-03-02 209153]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
"ccleaner"=C:\Program Files\CCleaner\CCleaner.exe [2009-05-27 1573104]
"uTorrent"=C:\Program Files\uTorrent\uTorrent.exe [2009-09-19 288560]
"WMPNSCFG"=C:\Program Files\Windows Media Player\WMPNSCFG.exe [2008-01-21 202240]
"msnmsgr"=C:\Program Files\Windows Live\Messenger\msnmsgr.exe [2009-07-26 3883856]
"swg"=C:\Program Files\Google\GoogleToolbarNotifier\GoogleToolbarNotifier.exe [2009-09-12 39408]
"SpybotSD TeaTimer"=C:\Program Files\Spybot - Search & Destroy\TeaTimer.exe [2009-01-26 2144088]

[HKEY_LOCAL_MACHINE\software\microsoft\shared tools\msconfig\startupreg\mcagent_exe]
C:\Program Files\McAfee.com\Agent\mcagent.exe /runkey []

[HKEY_LOCAL_MACHINE\software\microsoft\shared tools\msconfig\startupreg\SynTPStart]
C:\Program Files\Synaptics\SynTP\SynTPStart.exe [2007-09-07 102400]

[HKEY_LOCAL_MACHINE\software\microsoft\shared tools\msconfig\startupreg\UniblueRegistryBooster]
C:\Program Files\Uniblue\RegistryBooster 2009\Launcher.exe delay []

[HKEY_LOCAL_MACHINE\software\microsoft\shared tools\msconfig\startupreg\Windows Defender]
C:\Program Files\Windows Defender\MSASCui.exe [2008-01-21 1008184]

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
Empowering Technology Launcher.lnk - C:\Acer\Empowering Technology\eAPLauncher.exe

C:\Users\LoO\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Outil de notification Live Search.lnk - C:\Users\LoO\AppData\Roaming\Microsoft\Live Search\Notification-LiveSearch.exe

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]
"AppInit_DLLS"="C:\PROGRA~1\Google\GOOGLE~2\GOEC62~1.DLL"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\igfxcui]
C:\Windows\system32\igfxdev.dll [2007-08-20 200704]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellExecuteHooks]
"{1F5FDA83-4379-4C6A-94AD-CC7BC688505A}"= []

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\mcmscsvc]

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MCODS]

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\network\mcmscsvc]

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\network\MCODS]

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\network\MpfService]

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"dontdisplaylastusername"=0
"legalnoticecaption"=
"legalnoticetext"=
"shutdownwithoutlogon"=1
"undockwithoutlogon"=1
"EnableUIADesktopToggle"=0

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\explorer]
"BindDirectlyToPropertySetStorage"=

[HKEY_LOCAL_MACHINE\system\currentcontrolset\services\sharedaccess\parameters\firewallpolicy\standardprofile\authorizedapplications\list]

[HKEY_LOCAL_MACHINE\system\currentcontrolset\services\sharedaccess\parameters\firewallpolicy\domainprofile\authorizedapplications\list]

[HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{cdbe4426-2e46-11de-95cb-000000000000}]
shell\AutoRun\command - start.exe
shell\iledefrance\command - start.exe


======File associations======

.js - edit - C:\Windows\System32\Notepad.exe %1
.js - open - C:\Windows\System32\WScript.exe "%1" %*

======List of files/folders created in the last 1 months======

2009-09-27 23:12:13 ----D---- C:\rsit
2009-09-27 23:12:13 ----D---- C:\Program Files\trend micro
2009-09-27 23:05:18 ----SHD---- C:\found.000
2009-09-26 00:41:30 ----D---- C:\Users\LoO\AppData\Roaming\vlc
2009-09-26 00:40:21 ----D---- C:\Program Files\VideoLAN
2009-09-25 15:36:44 ----D---- C:\ProgramData\Spybot - Search & Destroy
2009-09-25 15:36:44 ----D---- C:\Program Files\Spybot - Search & Destroy
2009-09-25 15:25:45 ----D---- C:\ProgramData\Avira
2009-09-25 15:25:45 ----D---- C:\Program Files\Avira
2009-09-25 15:09:57 ----D---- C:\Users\LoO\AppData\Roaming\Malwarebytes
2009-09-25 11:25:04 ----D---- C:\ProgramData\Malwarebytes
2009-09-25 11:25:04 ----D---- C:\Program Files\Malwarebytes' Anti-Malware
2009-09-25 00:07:07 ----A---- C:\Windows\RegGenie.ini
2009-09-25 00:05:29 ----A---- C:\Windows\RegGenieOnUninstall.exe
2009-09-24 22:49:13 ----SHD---- C:\Windows\system32\%APPDATA%
2009-09-24 19:26:27 ----A---- C:\Windows\system32\omalyfu.dll
2009-09-24 19:26:27 ----A---- C:\Windows\system32\esaregyp.exe
2009-09-24 19:26:27 ----A---- C:\Windows\afon.com
2009-09-24 19:26:27 ----A---- C:\ProgramData\ecif.dll
2009-09-24 19:22:01 ----A---- C:\ProgramData\orowi.dll
2009-09-24 17:55:49 ----A---- C:\ProgramData\dojokopysu.bat
2009-09-24 17:47:53 ----A---- C:\Windows\system32\gasfkygvabvxyx.dll
2009-09-20 10:15:38 ----A---- C:\Windows\system32\gasfkywqouidfc.dll
2009-09-20 10:15:30 ----A---- C:\Windows\system32\gasfkyvitwqrts.dll
2009-09-19 16:16:05 ----D---- C:\Windows\Minidump
2009-09-18 19:00:42 ----D---- C:\Windows\system32\eu-ES
2009-09-18 19:00:42 ----D---- C:\Windows\system32\ca-ES
2009-09-18 19:00:32 ----D---- C:\Windows\system32\vi-VN
2009-09-18 10:40:40 ----A---- C:\Windows\system32\javaws.exe
2009-09-18 10:40:40 ----A---- C:\Windows\system32\javaw.exe
2009-09-18 10:40:40 ----A---- C:\Windows\system32\java.exe
2009-09-18 10:40:35 ----D---- C:\Windows\system32\EventProviders
2009-09-18 10:35:35 ----D---- C:\Users\LoO\AppData\Roaming\TuneUp Software
2009-09-18 10:34:30 ----D---- C:\ProgramData\TuneUp Software
2009-09-18 10:33:08 ----SHD---- C:\ProgramData\{55A29068-F2CE-456C-9148-C869879E2357}
2009-09-12 11:42:29 ----D---- C:\My Download Files
2009-09-10 10:10:40 ----A---- C:\Windows\system32\jscript.dll
2009-09-10 09:35:10 ----A---- C:\Windows\system32\NlsLexicons0007.dll
2009-09-10 09:35:05 ----A---- C:\Windows\system32\SLsvc.exe
2009-09-10 09:35:05 ----A---- C:\Windows\system32\SLCExt.dll
2009-09-10 09:35:02 ----A---- C:\Windows\system32\FunctionDiscoveryFolder.dll
2009-09-10 09:35:02 ----A---- C:\Windows\system32\DevicePairingWizard.exe
2009-09-10 09:35:00 ----A---- C:\Windows\system32\NlsLexicons0009.dll
2009-09-10 09:34:57 ----A---- C:\Windows\system32\mssrch.dll
2009-09-10 09:34:54 ----A---- C:\Windows\system32\tquery.dll
2009-09-10 09:34:52 ----A---- C:\Windows\system32\RMActivate_isv.exe
2009-09-10 09:34:52 ----A---- C:\Windows\system32\PresentationNative_v0300.dll
2009-09-10 09:34:51 ----A---- C:\Windows\system32\scavenge.dll
2009-09-10 09:34:51 ----A---- C:\Windows\system32\RMActivate.exe
2009-09-10 09:34:49 ----A---- C:\Windows\system32\msi.dll
2009-09-10 09:34:48 ----A---- C:\Windows\system32\imapi2fs.dll
2009-09-10 09:34:47 ----A---- C:\Windows\system32\WscEapPr.dll
2009-09-10 09:34:47 ----A---- C:\Windows\system32\wcnwiz2.dll
2009-09-10 09:34:47 ----A---- C:\Windows\system32\secproc_isv.dll
2009-09-10 09:34:46 ----A---- C:\Windows\system32\sysmain.dll
2009-09-10 09:34:45 ----A---- C:\Windows\system32\icardagt.exe
2009-09-10 09:34:44 ----A---- C:\Windows\system32\EhStorShell.dll
2009-09-10 09:34:42 ----A---- C:\Windows\system32\spreview.exe
2009-09-10 09:34:42 ----A---- C:\Windows\system32\spinstall.exe
2009-09-10 09:34:41 ----A---- C:\Windows\system32\drmv2clt.dll
2009-09-10 09:34:39 ----A---- C:\Windows\system32\spwizui.dll
2009-09-10 09:34:39 ----A---- C:\Windows\system32\shell32.dll
2009-09-10 09:34:39 ----A---- C:\Windows\system32\secproc.dll
2009-09-10 09:34:39 ----A---- C:\Windows\system32\mcupdate_GenuineIntel.dll
2009-09-10 09:34:38 ----A---- C:\Windows\system32\p2psvc.dll
2009-09-10 09:34:37 ----A---- C:\Windows\system32\SearchIndexer.exe
2009-09-10 09:34:37 ----A---- C:\Windows\system32\mssvp.dll
2009-09-10 09:34:37 ----A---- C:\Windows\system32\mscoree.dll
2009-09-10 09:34:36 ----A---- C:\Windows\system32\mssphtb.dll
2009-09-10 09:34:36 ----A---- C:\Windows\system32\mssph.dll
2009-09-10 09:34:35 ----A---- C:\Windows\system32\imapi2.dll
2009-09-10 09:34:34 ----A---- C:\Windows\system32\sdohlp.dll
2009-09-10 09:34:34 ----A---- C:\Windows\system32\ntkrnlpa.exe
2009-09-10 09:34:33 ----A---- C:\Windows\system32\IMJP10K.DLL
2009-09-10 09:34:33 ----A---- C:\Windows\system32\esent.dll
2009-09-10 09:34:33 ----A---- C:\Windows\system32\DevicePairing.dll
2009-09-10 09:34:31 ----A---- C:\Windows\system32\wevtsvc.dll
2009-09-10 09:34:31 ----A---- C:\Windows\system32\sperror.dll
2009-09-10 09:34:31 ----A---- C:\Windows\system32\RMActivate_ssp.exe
2009-09-10 09:34:31 ----A---- C:\Windows\system32\PresentationHostProxy.dll
2009-09-10 09:34:31 ----A---- C:\Windows\system32\korwbrkr.dll
2009-09-10 09:34:30 ----A---- C:\Windows\system32\SLC.dll
2009-09-10 09:34:30 ----A---- C:\Windows\system32\RMActivate_ssp_isv.exe
2009-09-10 09:34:30 ----A---- C:\Windows\system32\msshsq.dll
2009-09-10 09:34:30 ----A---- C:\Windows\system32\IasMigReader.exe
2009-09-10 09:34:28 ----A---- C:\Windows\system32\msjet40.dll
2009-09-10 09:34:27 ----A---- C:\Windows\system32\MPSSVC.dll
2009-09-10 09:34:26 ----A---- C:\Windows\system32\ntoskrnl.exe
2009-09-10 09:34:26 ----A---- C:\Windows\system32\msxml6.dll
2009-09-10 09:34:25 ----A---- C:\Windows\system32\Query.dll
2009-09-10 09:34:25 ----A---- C:\Windows\system32\qmgr.dll
2009-09-10 09:34:24 ----A---- C:\Windows\system32\msexch40.dll
2009-09-10 09:34:24 ----A---- C:\Windows\system32\diagperf.dll
2009-09-10 09:34:23 ----A---- C:\Windows\system32\P2PGraph.dll
2009-09-10 09:34:23 ----A---- C:\Windows\system32\ole32.dll
2009-09-10 09:34:22 ----A---- C:\Windows\system32\srchadmin.dll
2009-09-10 09:34:22 ----A---- C:\Windows\system32\ntdll.dll
2009-09-10 09:34:21 ----A---- C:\Windows\system32\winload.exe
2009-09-10 09:34:21 ----A---- C:\Windows\system32\msxml3.dll
2009-09-10 09:34:21 ----A---- C:\Windows\system32\mblctr.exe
2009-09-10 09:34:21 ----A---- C:\Windows\system32\EncDec.dll
2009-09-10 09:34:20 ----A---- C:\Windows\system32\uDWM.dll
2009-09-10 09:34:20 ----A---- C:\Windows\system32\mmc.exe
2009-09-10 09:34:20 ----A---- C:\Windows\system32\dfsr.exe
2009-09-10 09:34:19 ----A---- C:\Windows\system32\riched20.dll
2009-09-10 09:34:19 ----A---- C:\Windows\system32\IasMigPlugin.dll
2009-09-10 09:34:18 ----A---- C:\Windows\system32\fdBth.dll
2009-09-10 09:34:17 ----A---- C:\Windows\system32\RacEngn.dll
2009-09-10 09:34:16 ----A---- C:\Windows\system32\SearchProtocolHost.exe
2009-09-10 09:34:16 ----A---- C:\Windows\system32\SearchFilterHost.exe
2009-09-10 09:34:16 ----A---- C:\Windows\system32\kernel32.dll
2009-09-10 09:34:15 ----A---- C:\Windows\system32\spoolss.dll
2009-09-10 09:34:15 ----A---- C:\Windows\system32\milcore.dll
2009-09-10 09:34:15 ----A---- C:\Windows\system32\EhStorAPI.dll
2009-09-10 09:34:15 ----A---- C:\Windows\system32\CertEnroll.dll
2009-09-10 09:34:14 ----A---- C:\Windows\system32\schedsvc.dll
2009-09-10 09:34:14 ----A---- C:\Windows\system32\NaturalLanguage6.dll
2009-09-10 09:34:13 ----A---- C:\Windows\system32\msjtes40.dll
2009-09-10 09:34:12 ----A---- C:\Windows\system32\WinSAT.exe
2009-09-10 09:34:12 ----A---- C:\Windows\system32\msvcp60.dll
2009-09-10 09:34:12 ----A---- C:\Windows\system32\infocardapi.dll
2009-09-10 09:34:12 ----A---- C:\Windows\system32\gpedit.dll
2009-09-10 09:34:11 ----A---- C:\Windows\system32\Magnify.exe
2009-09-10 09:34:11 ----A---- C:\Windows\system32\es.dll
2009-09-10 09:34:10 ----A---- C:\Windows\system32\WebClnt.dll
2009-09-10 09:34:10 ----A---- C:\Windows\system32\mstext40.dll
2009-09-10 09:34:10 ----A---- C:\Windows\system32\advapi32.dll
2009-09-10 09:34:09 ----A---- C:\Windows\system32\WMPhoto.dll
2009-09-10 09:34:09 ----A---- C:\Windows\system32\slwmi.dll
2009-09-10 09:34:09 ----A---- C:\Windows\system32\msexcl40.dll
2009-09-10 09:34:09 ----A---- C:\Windows\system32\comsvcs.dll
2009-09-10 09:34:08 ----A---- C:\Windows\system32\WindowsAnytimeUpgradeCPL.dll
2009-09-10 09:34:08 ----A---- C:\Windows\system32\vssapi.dll
2009-09-10 09:34:08 ----A---- C:\Windows\system32\msxbde40.dll
2009-09-10 09:34:07 ----A---- C:\Windows\system32\authui.dll
2009-09-10 09:34:06 ----A---- C:\Windows\system32\PresentationHost.exe
2009-09-10 09:34:06 ----A---- C:\Windows\system32\newdev.dll
2009-09-10 09:34:06 ----A---- C:\Windows\system32\msrepl40.dll
2009-09-10 09:34:05 ----A---- C:\Windows\system32\propsys.dll
2009-09-10 09:34:05 ----A---- C:\Windows\system32\PresentationCFFRasterizerNative_v0300.dll
2009-09-10 09:34:05 ----A---- C:\Windows\system32\iasrecst.dll
2009-09-10 09:34:05 ----A---- C:\Windows\system32\gpsvc.dll
2009-09-10 09:34:05 ----A---- C:\Windows\system32\eudcedit.exe
2009-09-10 09:34:05 ----A---- C:\Windows\system32\crypt32.dll
2009-09-10 09:34:04 ----A---- C:\Windows\system32\rpcss.dll
2009-09-10 09:34:04 ----A---- C:\Windows\explorer.exe
2009-09-10 09:34:03 ----A---- C:\Windows\system32\setupapi.dll
2009-09-10 09:34:03 ----A---- C:\Windows\system32\mspbde40.dll
2009-09-10 09:34:03 ----A---- C:\Windows\system32\d3d9.dll
2009-09-10 09:34:02 ----A---- C:\Windows\system32\msltus40.dll
2009-09-10 09:34:02 ----A---- C:\Windows\system32\mfc42.dll
2009-09-10 09:34:02 ----A---- C:\Windows\system32\davclnt.dll
2009-09-10 09:34:01 ----A---- C:\Windows\system32\shlwapi.dll
2009-09-10 09:34:01 ----A---- C:\Windows\system32\msrd3x40.dll
2009-09-10 09:34:01 ----A---- C:\Windows\system32\msdtctm.dll
2009-09-10 09:34:01 ----A---- C:\Windows\system32\EhStorPwdMgr.dll
2009-09-10 09:34:01 ----A---- C:\Windows\system32\EhStorAuthn.dll
2009-09-10 09:34:00 ----A---- C:\Windows\system32\wevtapi.dll
2009-09-10 09:34:00 ----A---- C:\Windows\system32\photowiz.dll
2009-09-10 09:34:00 ----A---- C:\Windows\system32\nlhtml.dll
2009-09-10 09:34:00 ----A---- C:\Windows\system32\browseui.dll
2009-09-10 09:33:58 ----A---- C:\Windows\system32\user32.dll
2009-09-10 09:33:58 ----A---- C:\Windows\system32\samsrv.dll
2009-09-10 09:33:58 ----A---- C:\Windows\system32\quartz.dll
2009-09-10 09:33:58 ----A---- C:\Windows\system32\ci.dll
2009-09-10 09:33:57 ----A---- C:\Windows\system32\win32spl.dll
2009-09-10 09:33:57 ----A---- C:\Windows\system32\SLCommDlg.dll
2009-09-10 09:33:56 ----A---- C:\Windows\system32\WcnNetsh.dll
2009-09-10 09:33:56 ----A---- C:\Windows\system32\printfilterpipelinesvc.exe
2009-09-10 09:33:56 ----A---- C:\Windows\system32\oleaut32.dll
2009-09-10 09:33:56 ----A---- C:\Windows\system32\IKEEXT.DLL
2009-09-10 09:33:55 ----A---- C:\Windows\system32\netshell.dll
2009-09-10 09:33:55 ----A---- C:\Windows\system32\compcln.exe
2009-09-10 09:33:54 ----A---- C:\Windows\system32\winhttp.dll
2009-09-10 09:33:54 ----A---- C:\Windows\system32\mswstr10.dll
2009-09-10 09:33:54 ----A---- C:\Windows\system32\audiosrv.dll
2009-09-10 09:33:54 ----A---- C:\Windows\system32\apds.dll
2009-09-10 09:33:53 ----A---- C:\Windows\system32\xmlfilter.dll
2009-09-10 09:33:53 ----A---- C:\Windows\system32\msctf.dll
2009-09-10 09:33:53 ----A---- C:\Windows\system32\emdmgmt.dll
2009-09-10 09:33:52 ----A---- C:\Windows\system32\QAGENTRT.DLL
2009-09-10 09:33:52 ----A---- C:\Windows\system32\msvcrt.dll
2009-09-10 09:33:52 ----A---- C:\Windows\system32\gdi32.dll
2009-09-10 09:33:51 ----A---- C:\Windows\system32\VSSVC.exe
2009-09-10 09:33:51 ----A---- C:\Windows\system32\mfc42u.dll
2009-09-10 09:33:51 ----A---- C:\Windows\system32\iphlpsvc.dll
2009-09-10 09:33:50 ----A---- C:\Windows\system32\sqlsrv32.dll
2009-09-10 09:33:50 ----A---- C:\Windows\system32\SLUI.exe
2009-09-10 09:33:50 ----A---- C:\Windows\system32\msrd2x40.dll
2009-09-10 09:33:50 ----A---- C:\Windows\system32\eapphost.dll
2009-09-10 09:33:49 ----A---- C:\Windows\system32\propdefs.dll
2009-09-10 09:33:49 ----A---- C:\Windows\system32\odbc32.dll
2009-09-10 09:33:48 ----A---- C:\Windows\system32\winresume.exe
2009-09-10 09:33:48 ----A---- C:\Windows\system32\shdocvw.dll
2009-09-10 09:33:46 ----A---- C:\Windows\system32\wevtutil.exe
2009-09-10 09:33:46 ----A---- C:\Windows\system32\mssitlb.dll
2009-09-10 09:33:46 ----A---- C:\Windows\system32\dbgeng.dll
2009-09-10 09:33:45 ----A---- C:\Windows\system32\WsmSvc.dll
2009-09-10 09:33:44 ----A---- C:\Windows\system32\swprv.dll
2009-09-10 09:33:44 ----A---- C:\Windows\system32\mmcndmgr.dll
2009-09-10 09:33:43 ----A---- C:\Windows\system32\usp10.dll
2009-09-10 09:33:42 ----A---- C:\Windows\system32\vds.exe
2009-09-10 09:33:42 ----A---- C:\Windows\system32\netlogon.dll
2009-09-10 09:33:42 ----A---- C:\Windows\system32\msctfp.dll
2009-09-10 09:33:42 ----A---- C:\Windows\system32\fdBthProxy.dll
2009-09-10 09:33:42 ----A---- C:\Windows\system32\drvinst.exe
2009-09-10 09:33:42 ----A---- C:\Windows\system32\devmgr.dll
2009-09-10 09:33:41 ----A---- C:\Windows\system32\msscb.dll
2009-09-10 09:33:41 ----A---- C:\Windows\system32\evr.dll
2009-09-10 09:33:41 ----A---- C:\Windows\system32\DevicePairingProxy.dll
2009-09-10 09:33:41 ----A---- C:\Windows\system32\BFE.DLL
2009-09-10 09:33:41 ----A---- C:\Windows\system32\adsldpc.dll
2009-09-10 09:33:40 ----A---- C:\Windows\system32\WSDApi.dll
2009-09-10 09:33:40 ----A---- C:\Windows\system32\WMVSDECD.DLL
2009-09-10 09:33:40 ----A---- C:\Windows\system32\Wldap32.dll
2009-09-10 09:33:40 ----A---- C:\Windows\system32\wcnwiz.dll
2009-09-10 09:33:40 ----A---- C:\Windows\system32\PhotoMetadataHandler.dll
2009-09-10 09:33:39 ----A---- C:\Windows\system32\WindowsCodecs.dll
2009-09-10 09:33:39 ----A---- C:\Windows\system32\services.exe
2009-09-10 09:33:38 ----A---- C:\Windows\system32\wercon.exe
2009-09-10 09:33:38 ----A---- C:\Windows\system32\mimefilt.dll
2009-09-10 09:33:38 ----A---- C:\Windows\system32\comdlg32.dll
2009-09-10 09:33:38 ----A---- C:\Windows\system32\adtschema.dll
2009-09-10 09:33:37 ----A---- C:\Windows\system32\wcncsvc.dll
2009-09-10 09:33:37 ----A---- C:\Windows\system32\PortableDeviceApi.dll
2009-09-10 09:33:37 ----A---- C:\Windows\system32\msdtcprx.dll
2009-09-10 09:33:37 ----A---- C:\Windows\system32\msdrm.dll
2009-09-10 09:33:37 ----A---- C:\Windows\system32\certcli.dll
2009-09-10 09:33:36 ----A---- C:\Windows\system32\umpnpmgr.dll
2009-09-10 09:33:36 ----A---- C:\Windows\system32\taskeng.exe
2009-09-10 09:33:36 ----A---- C:\Windows\system32\rtffilt.dll
2009-09-10 09:33:36 ----A---- C:\Windows\system32\reg.exe
2009-09-10 09:33:36 ----A---- C:\Windows\system32\mswdat10.dll
2009-09-10 09:33:36 ----A---- C:\Windows\system32\msjter40.dll
2009-09-10 09:33:36 ----A---- C:\Windows\system32\ipsmsnap.dll
2009-09-10 09:33:36 ----A---- C:\Windows\system32\dnsapi.dll
2009-09-10 09:33:35 ----A---- C:\Windows\system32\WMNetMgr.dll
2009-09-10 09:33:35 ----A---- C:\Windows\system32\certutil.exe
2009-09-10 09:33:34 ----A---- C:\Windows\system32\w32time.dll
2009-09-10 09:33:34 ----A---- C:\Windows\system32\msshooks.dll
2009-09-10 09:33:34 ----A---- C:\Windows\system32\msscntrs.dll
2009-09-10 09:33:34 ----A---- C:\Windows\system32\IPSECSVC.DLL
2009-09-10 09:33:34 ----A---- C:\Windows\system32\bcrypt.dll
2009-09-10 09:33:33 ----A---- C:\Windows\system32\rsaenh.dll
2009-09-10 09:33:33 ----A---- C:\Windows\system32\msihnd.dll
2009-09-10 09:33:33 ----A---- C:\Windows\system32\bthserv.dll
2009-09-10 09:33:32 ----A---- C:\Windows\system32\TsWpfWrp.exe
2009-09-10 09:33:32 ----A---- C:\Windows\system32\msstrc.dll
2009-09-10 09:33:32 ----A---- C:\Windows\system32\MMDevAPI.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\netapi32.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\mtxclu.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\inetpp.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\inetcomm.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\fundisc.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\dfshim.dll
2009-09-10 09:33:31 ----A---- C:\Windows\system32\cryptsvc.dll
2009-09-10 09:33:30 ----A---- C:\Windows\system32\wmicmiplugin.dll
2009-09-10 09:33:30 ----A---- C:\Windows\system32\profsvc.dll
2009-09-10 09:33:30 ----A---- C:\Windows\system32\mscories.dll
2009-09-10 09:33:30 ----A---- C:\Windows\system32\hidserv.dll
2009-09-10 09:33:30 ----A---- C:\Windows\system32\dhcpcsvc6.dll
2009-09-10 09:33:29 ----A---- C:\Windows\system32\termsrv.dll
2009-09-10 09:33:28 ----A---- C:\Windows\system32\wdc.dll
2009-09-10 09:33:28 ----A---- C:\Windows\system32\shsvcs.dll
2009-09-10 09:33:28 ----A---- C:\Windows\system32\msiexec.exe
2009-09-10 09:33:28 ----A---- C:\Windows\system32\imapi.dll
2009-09-10 09:33:27 ----A---- C:\Windows\system32\rasmans.dll
2009-09-10 09:33:27 ----A---- C:\Windows\system32\iassdo.dll
2009-09-10 09:33:27 ----A---- C:\Windows\system32\chsbrkr.dll
2009-09-10 09:33:26 ----A---- C:\Windows\system32\spoolsv.exe
2009-09-10 09:33:26 ----A---- C:\Windows\system32\pnidui.dll
2009-09-10 09:33:26 ----A---- C:\Windows\system32\icardres.dll
2009-09-10 09:33:25 ----A---- C:\Windows\system32\autofmt.exe
2009-09-10 09:33:24 ----A---- C:\Windows\system32\wersvc.dll
2009-09-10 09:33:24 ----A---- C:\Windows\system32\slmgr.vbs
2009-09-10 09:33:24 ----A---- C:\Windows\system32\scrrun.dll
2009-09-10 09:33:24 ----A---- C:\Windows\system32\PSHED.DLL
2009-09-10 09:33:24 ----A---- C:\Windows\system32\pdh.dll
2009-09-10 09:33:23 ----A---- C:\Windows\system32\dhcpcsvc.dll
2009-09-10 09:33:23 ----A---- C:\Windows\system32\CertEnrollUI.dll
2009-09-10 09:33:23 ----A---- C:\Windows\system32\azroles.dll
2009-09-10 09:33:22 ----A---- C:\Windows\system32\wmpmde.dll
2009-09-10 09:33:22 ----A---- C:\Windows\system32\winlogon.exe
2009-09-10 09:33:22 ----A---- C:\Windows\system32\SyncCenter.dll
2009-09-10 09:33:22 ----A---- C:\Windows\system32\pidgenx.dll
2009-09-10 09:33:20 ----A---- C:\Windows\system32\SLUINotify.dll
2009-09-10 09:33:20 ----A---- C:\Windows\system32\msjetoledb40.dll
2009-09-10 09:33:20 ----A---- C:\Windows\system32\comuid.dll
2009-09-10 09:33:20 ----A---- C:\Windows\system32\certmgr.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\WindowsCodecsExt.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\untfs.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\spp.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\sethc.exe
2009-09-10 09:33:19 ----A---- C:\Windows\system32\scrobj.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\ncrypt.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\kd1394.dll
2009-09-10 09:33:19 ----A---- C:\Windows\system32\iassam.dll
2009-09-10 09:33:18 ----A---- C:\Windows\system32\wisptis.exe
2009-09-10 09:33:18 ----A---- C:\Windows\system32\taskcomp.dll
2009-09-10 09:33:18 ----A---- C:\Windows\system32\rtutils.dll
2009-09-10 09:33:18 ----A---- C:\Windows\system32\dwm.exe
2009-09-10 09:33:17 ----A---- C:\Windows\system32\autochk.exe
2009-09-10 09:33:16 ----A---- C:\Windows\system32\printui.dll
2009-09-10 09:33:16 ----A---- C:\Windows\system32\iasnap.dll
2009-09-10 09:33:16 ----A---- C:\Windows\system32\autoconv.exe
2009-09-10 09:33:15 ----A---- C:\Windows\system32\winsrv.dll
2009-09-10 09:33:15 ----A---- C:\Windows\system32\cscript.exe
2009-09-10 09:33:14 ----A---- C:\Windows\system32\wow32.dll
2009-09-10 09:33:14 ----A---- C:\Windows\system32\userenv.dll
2009-09-10 09:33:14 ----A---- C:\Windows\system32\osk.exe
2009-09-10 09:33:14 ----A---- C:\Windows\system32\onex.dll
2009-09-10 09:33:14 ----A---- C:\Windows\system32\kdcom.dll
2009-09-10 09:33:14 ----A---- C:\Windows\system32\basecsp.dll
2009-09-10 09:33:14 ----A---- C:\Windows\system32\audiodg.exe
2009-09-10 09:33:13 ----A---- C:\Windows\system32\spcmsg.dll
2009-09-10 09:33:13 ----A---- C:\Windows\system32\mswsock.dll
2009-09-10 09:33:13 ----A---- C:\Windows\system32\kdusb.dll
2009-09-10 09:33:12 ----A---- C:\Windows\system32\WinSCard.dll
2009-09-10 09:33:12 ----A---- C:\Windows\system32\winmm.dll
2009-09-10 09:33:12 ----A---- C:\Windows\system32\RelMon.dll
2009-09-10 09:33:12 ----A---- C:\Windows\system32\rdpencom.dll
2009-09-10 09:33:12 ----A---- C:\Windows\system32\msftedit.dll
2009-09-10 09:33:11 ----A---- C:\Windows\system32\WerFaultSecure.exe
2009-09-10 09:33:11 ----A---- C:\Windows\system32\offfilt.dll
2009-09-10 09:33:11 ----A---- C:\Windows\system32\dnsrslvr.dll
2009-09-10 09:33:10 ----A---- C:\Windows\system32\WerFault.exe
2009-09-10 09:33:10 ----A---- C:\Windows\system32\Utilman.exe
2009-09-10 09:33:10 ----A---- C:\Windows\system32\secproc_ssp_isv.dll
2009-09-10 09:33:10 ----A---- C:\Windows\system32\secproc_ssp.dll
2009-09-10 09:33:09 ----A---- C:\Windows\system32\wsepno.dll
2009-09-10 09:33:09 ----A---- C:\Windows\system32\stobject.dll
2009-09-10 09:33:09 ----A---- C:\Windows\system32\SndVol.exe
2009-09-10 09:33:09 ----A---- C:\Windows\system32\mscms.dll
2009-09-10 09:33:09 ----A---- C:\Windows\system32\mfplat.dll
2009-09-10 09:33:09 ----A---- C:\Windows\system32\diskraid.exe
2009-09-10 09:33:09 ----A---- C:\Windows\system32\apphelp.dll
2009-09-10 09:33:08 ----A---- C:\Windows\system32\wiaservc.dll
2009-09-10 09:33:08 ----A---- C:\Windows\system32\sysclass.dll
2009-09-10 09:33:08 ----A---- C:\Windows\system32\prnntfy.dll
2009-09-10 09:33:08 ----A---- C:\Windows\system32\odbccp32.dll
2009-09-10 09:33:08 ----A---- C:\Windows\system32\msnetobj.dll
2009-09-10 09:33:08 ----A---- C:\Windows\system32\adsmsext.dll
2009-09-10 09:33:07 ----A---- C:\Windows\system32\wscript.exe
2009-09-10 09:33:07 ----A---- C:\Windows\system32\ulib.dll
2009-09-10 09:33:07 ----A---- C:\Windows\system32\iasdatastore.dll
2009-09-10 09:33:07 ----A---- C:\Windows\system32\dsound.dll
2009-09-10 09:33:06 ----A---- C:\Windows\system32\wscntfy.dll
2009-09-10 09:33:06 ----A---- C:\Windows\system32\rastapi.dll
2009-09-10 09:33:06 ----A---- C:\Windows\system32\pnpsetup.dll
2009-09-10 09:33:06 ----A---- C:\Windows\system32\IPHLPAPI.DLL
2009-09-10 09:33:06 ----A---- C:\Windows\system32\fdProxy.dll
2009-09-10 09:33:06 ----A---- C:\Windows\system32\cryptui.dll
2009-09-10 09:33:05 ----A---- C:\Windows\system32\wlangpui.dll
2009-09-10 09:33:05 ----A---- C:\Windows\system32\rastls.dll
2009-09-10 09:33:05 ----A---- C:\Windows\system32\ipsecsnp.dll
2009-09-10 09:33:05 ----A---- C:\Windows\system32\iashlpr.dll
2009-09-10 09:33:05 ----A---- C:\Windows\system32\gpapi.dll
2009-09-10 09:33:05 ----A---- C:\Windows\system32\diskpart.exe
2009-09-10 09:33:05 ----A---- C:\Windows\system32\brcpl.dll
2009-09-10 09:33:04 ----A---- C:\Windows\system32\wscsvc.dll
2009-09-10 09:33:04 ----A---- C:\Windows\system32\WMVENCOD.DLL
2009-09-10 09:33:04 ----A---- C:\Windows\system32\vdsdyn.dll
2009-09-10 09:33:04 ----A---- C:\Windows\system32\rasapi32.dll
2009-09-10 09:33:04 ----A---- C:\Windows\system32\logman.exe
2009-09-10 09:33:03 ----A---- C:\Windows\system32\regsvc.dll
2009-09-10 09:33:03 ----A---- C:\Windows\system32\ntprint.dll
2009-09-10 09:33:03 ----A---- C:\Windows\system32\mscorier.dll
2009-09-10 09:33:02 ----A---- C:\Windows\system32\zipfldr.dll
2009-09-10 09:33:02 ----A---- C:\Windows\system32\wusa.exe
2009-09-10 09:33:02 ----A---- C:\Windows\system32\iasrad.dll
2009-09-10 09:33:02 ----A---- C:\Windows\system32\findstr.exe
2009-09-10 09:33:01 ----A---- C:\Windows\system32\wshext.dll
2009-09-10 09:33:01 ----A---- C:\Windows\system32\wpccpl.dll
2009-09-10 09:33:01 ----A---- C:\Windows\system32\netcenter.dll
2009-09-10 09:33:00 ----A---- C:\Windows\system32\wsnmp32.dll
2009-09-10 09:33:00 ----A---- C:\Windows\system32\wer.dll
2009-09-10 09:33:00 ----A---- C:\Windows\system32\rasdlg.dll
2009-09-10 09:33:00 ----A---- C:\Windows\system32\iassvcs.dll
2009-09-10 09:32:59 ----A---- C:\Windows\system32\themecpl.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\uxsms.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\tsbyuv.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\srvsvc.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\scansetting.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\ntmarta.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\mssprxy.dll
2009-09-10 09:32:58 ----A---- C:\Windows\system32\iasads.dll
2009-09-10 09:32:57 ----A---- C:\Windows\system32\slcc.dll
2009-09-10 09:32:57 ----A---- C:\Windows\system32\powrprof.dll
2009-09-10 09:32:57 ----A---- C:\Windows\system32\networkmap.dll
2009-09-10 09:32:57 ----A---- C:\Windows\system32\msutb.dll
2009-09-10 09:32:57 ----A---- C:\Windows\system32\mstsc.exe
2009-09-10 09:32:57 ----A---- C:\Windows\system32\mstlsapi.dll
2009-09-10 09:32:57 ----A---- C:\Windows\system32\iasacct.dll
2009-09-10 09:32:56 ----A---- C:\Windows\system32\powercpl.dll
2009-09-10 09:32:56 ----A---- C:\Windows\system32\PerfCenterCPL.dll
2009-09-10 09:32:56 ----A---- C:\Windows\system32\newdev.exe
2009-09-10 09:32:56 ----A---- C:\Windows\system32\authz.dll
2009-09-10 09:32:55 ----A---- C:\Windows\system32\systemcpl.dll
2009-09-10 09:32:55 ----A---- C:\Windows\system32\sud.dll
2009-09-10 09:32:55 ----A---- C:\Windows\system32\dot3svc.dll
2009-09-10 09:32:55 ----A---- C:\Windows\system32\connect.dll
2009-09-10 09:32:54 ----A---- C:\Windows\system32\themeui.dll
2009-09-10 09:32:54 ----A---- C:\Windows\system32\samlib.dll
2009-09-10 09:32:54 ----A---- C:\Windows\system32\pcaui.dll
2009-09-10 09:32:54 ----A---- C:\Windows\system32\accessibilitycpl.dll
2009-09-10 09:32:53 ----A---- C:\Windows\system32\wlanpref.dll
2009-09-10 09:32:53 ----A---- C:\Windows\system32\usercpl.dll
2009-09-10 09:32:53 ----A---- C:\Windows\system32\rpchttp.dll
2009-09-10 09:32:53 ----A---- C:\Windows\system32\qdvd.dll
2009-09-10 09:32:53 ----A---- C:\Windows\system32\mmci.dll
2009-09-10 09:32:53 ----A---- C:\Windows\system32\autoplay.dll
2009-09-10 09:32:52 ----A---- C:\Windows\system32\wpcao.dll
2009-09-10 09:32:52 ----A---- C:\Windows\system32\vdsutil.dll
2009-09-10 09:32:52 ----A---- C:\Windows\system32\regapi.dll
2009-09-10 09:32:52 ----A---- C:\Windows\system32\msinfo32.exe
2009-09-10 09:32:51 ----A---- C:\Windows\system32\tapisrv.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\scksp.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\scesrv.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\psisdecd.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\oleprn.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\mpr.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\feclient.dll
2009-09-10 09:32:51 ----A---- C:\Windows\system32\AudioSes.dll
2009-09-10 09:32:50 ----A---- C:\Windows\system32\wscisvif.dll
2009-09-10 09:32:50 ----A---- C:\Windows\system32\rekeywiz.exe
2009-09-10 09:32:50 ----A---- C:\Windows\system32\imm32.dll
2009-09-10 09:32:50 ----A---- C:\Windows\system32\iaspolcy.dll
2009-09-10 09:32:50 ----A---- C:\Windows\system32\Faultrep.dll
2009-09-10 09:32:50 ----A---- C:\Windows\system32\dot3msm.dll
2009-09-10 09:32:50 ----A---- C:\Windows\system32\DeviceEject.exe
2009-09-10 09:32:49 ----A---- C:\Windows\system32\sdclt.exe
2009-09-10 09:32:49 ----A---- C:\Windows\system32\qedit.dll
2009-09-10 09:32:49 ----A---- C:\Windows\system32\perfdisk.dll
2009-09-10 09:32:49 ----A---- C:\Windows\system32\ncryptui.dll
2009-09-10 09:32:49 ----A---- C:\Windows\system32\dpapimig.exe
2009-09-10 09:32:48 ----A---- C:\Windows\system32\scecli.dll
2009-09-10 09:32:48 ----A---- C:\Windows\system32\rasgcw.dll
2009-09-10 09:32:48 ----A---- C:\Windows\system32\pnpui.dll
2009-09-10 09:32:48 ----A---- C:\Windows\system32\hdwwiz.exe
2009-09-10 09:32:48 ----A---- C:\Windows\system32\FWPUCLNT.DLL
2009-09-10 09:32:48 ----A---- C:\Windows\system32\certreq.exe
2009-09-10 09:32:47 ----A---- C:\Windows\system32\TSTheme.exe
2009-09-10 09:32:47 ----A---- C:\Windows\system32\spwinsat.dll
2009-09-10 09:32:47 ----A---- C:\Windows\system32\SmartcardCredentialProvider.dll
2009-09-10 09:32:47 ----A---- C:\Windows\system32\rasplap.dll
2009-09-10 09:32:46 ----A---- C:\Windows\system32\whealogr.dll
2009-09-10 09:32:46 ----A---- C:\Windows\system32\tcpmon.dll
2009-09-10 09:32:46 ----A---- C:\Windows\system32\tcpipcfg.dll
2009-09-10 09:32:46 ----A---- C:\Windows\system32\PnPUnattend.exe
2009-09-10 09:32:46 ----A---- C:\Windows\system32\fdWSD.dll
2009-09-10 09:32:46 ----A---- C:\Windows\system32\cmmon32.exe
2009-09-10 09:32:45 ----A---- C:\Windows\system32\srcore.dll
2009-09-10 09:32:45 ----A---- C:\Windows\system32\SCardSvr.dll
2009-09-10 09:32:45 ----A---- C:\Windows\system32\conime.exe
2009-09-10 09:32:45 ----A---- C:\Windows\system32\cmdial32.dll
2009-09-10 09:32:44 ----A---- C:\Windows\system32\wiaaut.dll
2009-09-10 09:32:44 ----A---- C:\Windows\system32\raschap.dll
2009-09-10 09:32:44 ----A---- C:\Windows\system32\MSVidCtl.dll
2009-09-10 09:32:44 ----A---- C:\Windows\system32\fontext.dll
2009-09-10 09:32:43 ----A---- C:\Windows\system32\WMVXENCD.DLL
2009-09-10 09:32:43 ----A---- C:\Windows\system32\wlanui.dll
2009-09-10 09:32:43 ----A---- C:\Windows\system32\shwebsvc.dll
2009-09-10 09:32:43 ----A---- C:\Windows\system32\rasppp.dll
2009-09-10 09:32:43 ----A---- C:\Windows\system32\PnPutil.exe
2009-09-10 09:32:43 ----A---- C:\Windows\system32\dsprop.dll
2009-09-10 09:32:42 ----A---- C:\Windows\system32\oobefldr.dll
2009-09-10 09:32:42 ----A---- C:\Windows\system32\dimsroam.dll
2009-09-10 09:32:41 ----A---- C:\Windows\system32\shsetup.dll
2009-09-10 09:32:41 ----A---- C:\Windows\system32\rasmontr.dll
2009-09-10 09:32:41 ----A---- C:\Windows\system32\mscandui.dll
2009-09-10 09:32:41 ----A---- C:\Windows\system32\modemui.dll
2009-09-10 09:32:40 ----A---- C:\Windows\system32\wmdrmsdk.dll
2009-09-10 09:32:40 ----A---- C:\Windows\system32\wlgpclnt.dll
2009-09-10 09:32:40 ----A---- C:\Windows\system32\dataclen.dll
2009-09-10 09:32:40 ----A---- C:\Windows\system32\chtbrkr.dll
2009-09-10 09:32:39 ----A---- C:\Windows\system32\WSDMon.dll
2009-09-10 09:32:39 ----A---- C:\Windows\system32\wmpeffects.dll
2009-09-10 09:32:39 ----A---- C:\Windows\system32\smss.exe
2009-09-10 09:32:39 ----A---- C:\Windows\system32\rdpwsx.dll
2009-09-10 09:32:39 ----A---- C:\Windows\system32\netplwiz.dll
2009-09-10 09:32:39 ----A---- C:\Windows\system32\credui.dll
2009-09-10 09:32:39 ----A---- C:\Windows\system32\blackbox.dll
2009-09-10 09:32:38 ----A---- C:\Windows\system32\networkexplorer.dll
2009-09-10 09:32:38 ----A---- C:\Windows\system32\certprop.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\wscapi.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\wpcsvc.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\msscp.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\msimtf.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\logagent.exe
2009-09-10 09:32:37 ----A---- C:\Windows\system32\InkEd.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\ifmon.dll
2009-09-10 09:32:37 ----A---- C:\Windows\system32\gpresult.exe
2009-09-10 09:32:37 ----A---- C:\Windows\system32\cipher.exe
2009-09-10 09:32:36 ----A---- C:\Windows\system32\thawbrkr.dll
2009-09-10 09:32:36 ----A---- C:\Windows\system32\softkbd.dll
2009-09-10 09:32:36 ----A---- C:\Windows\system32\sendmail.dll
2009-09-10 09:32:36 ----A---- C:\Windows\system32\MediaMetadataHandler.dll
2009-09-10 09:32:35 ----A---- C:\Windows\system32\olepro32.dll
2009-09-10 09:32:35 ----A---- C:\Windows\system32\msctfui.dll
2009-09-10 09:32:35 ----A---- C:\Windows\system32\dmsynth.dll
2009-09-10 09:32:34 ----A---- C:\Windows\system32\puiapi.dll
2009-09-10 09:32:34 ----A---- C:\Windows\system32\input.dll
2009-09-10 09:32:34 ----A---- C:\Windows\system32\ExplorerFrame.dll
2009-09-10 09:32:34 ----A---- C:\Windows\system32\drmmgrtn.dll
2009-09-10 09:32:34 ----A---- C:\Windows\system32\cdd.dll
2009-09-10 09:32:33 ----A---- C:\Windows\system32\wshbth.dll
2009-09-10 09:32:33 ----A---- C:\Windows\system32\version.dll
2009-09-10 09:32:33 ----A---- C:\Windows\system32\SLLUA.exe
2009-09-10 09:32:33 ----A---- C:\Windows\system32\msisip.dll
2009-09-10 09:32:33 ----A---- C:\Windows\system32\mprapi.dll
2009-09-10 09:32:33 ----A---- C:\Windows\system32\fc.exe
2009-09-10 09:32:32 ----A---- C:\Windows\system32\fdSSDP.dll
2009-09-10 09:32:32 ----A---- C:\Windows\system32\dmusic.dll
2009-09-10 09:32:31 ----A---- C:\Windows\system32\printfilterpipelineprxy.dll
2009-09-10 09:32:31 ----A---- C:\Windows\system32\msjint40.dll
2009-09-10 09:32:31 ----A---- C:\Windows\system32\MsCtfMonitor.dll
2009-09-10 09:32:31 ----A---- C:\Windows\system32\l2nacp.dll
2009-09-10 09:32:31 ----A---- C:\Windows\system32\ftp.exe
2009-09-10 09:32:31 ----A---- C:\Windows\system32\eapp3hst.dll
2009-09-10 09:32:31 ----A---- C:\Windows\system32\cscapi.dll
2009-09-10 09:32:30 ----A---- C:\Windows\system32\wsdchngr.dll
2009-09-10 09:32:30 ----A---- C:\Windows\system32\SMBHelperClass.dll
2009-09-10 09:32:30 ----A---- C:\Windows\system32\PortableDeviceTypes.dll
2009-09-10 09:32:30 ----A---- C:\Windows\system32\PortableDeviceClassExtension.dll
2009-09-10 09:32:30 ----A---- C:\Windows\system32\cscdll.dll
2009-09-10 09:32:30 ----A---- C:\Windows\system32\bthci.dll
2009-09-10 09:32:29 ----A---- C:\Windows\system32\Storprop.dll
2009-09-10 09:32:29 ----A---- C:\Windows\system32\rasdial.exe
2009-09-10 09:32:29 ----A---- C:\Windows\system32\rasdiag.dll
2009-09-10 09:32:29 ----A---- C:\Windows\system32\fdWCN.dll
2009-09-10 09:32:29 ----A---- C:\Windows\system32\eappcfg.dll
2009-09-10 09:32:29 ----A---- C:\Windows\system32\dot3cfg.dll
2009-09-10 09:32:29 ----A---- C:\Windows\system32\bthudtask.exe
2009-09-10 09:32:28 ----A---- C:\Windows\system32\tscupgrd.exe
2009-09-10 09:32:28 ----A---- C:\Windows\system32\slcinst.dll
2009-09-10 09:32:28 ----A---- C:\Windows\system32\nslookup.exe
2009-09-10 09:32:28 ----A---- C:\Windows\system32\networkitemfactory.dll
2009-09-10 09:32:28 ----A---- C:\Windows\system32\ipconfig.exe
2009-09-10 09:32:28 ----A---- C:\Windows\system32\CHxReadingStringIME.dll
2009-09-10 09:32:27 ----A---- C:\Windows\system32\ocsetup.exe
2009-09-10 09:32:27 ----A---- C:\Windows\system32\hbaapi.dll
2009-09-10 09:32:27 ----A---- C:\Windows\system32\FwRemoteSvr.dll
2009-09-10 09:32:27 ----A---- C:\Windows\system32\fdeploy.dll
2009-09-10 09:32:27 ----A---- C:\Windows\system32\eappgnui.dll
2009-09-10 09:32:26 ----A---- C:\Windows\system32\PNPXAssoc.dll
2009-09-10 09:32:26 ----A---- C:\Windows\system32\mmcico.dll
2009-09-10 09:32:25 ----A---- C:\Windows\system32\gpupdate.exe
2009-09-10 09:32:24 ----A---- C:\Windows\system32\cbsra.exe
2009-09-10 09:32:23 ----A---- C:\Windows\system32\NcdProp.dll
2009-09-10 09:32:23 ----A---- C:\Windows\system32\iscsilog.dll
2009-09-10 09:32:23 ----A---- C:\Windows\system32\csrstub.exe
2009-09-10 09:32:23 ----A---- C:\Windows\system32\bitsigd.dll
2009-09-10 09:32:21 ----A---- C:\Windows\system32\vdmdbg.dll
2009-09-10 09:32:21 ----A---- C:\Windows\system32\slwga.dll
2009-09-10 09:32:21 ----A---- C:\Windows\system32\odbcconf.dll
2009-09-10 09:32:21 ----A---- C:\Windows\system32\inetppui.dll
2009-09-10 09:32:20 ----A---- C:\Windows\system32\winrnr.dll
2009-09-10 09:32:20 ----A---- C:\Windows\system32\midimap.dll
2009-09-10 09:32:15 ----A---- C:\Windows\system32\f3ahvoas.dll
2009-09-10 09:32:14 ----A---- C:\Windows\system32\msimsg.dll
2009-09-10 09:31:29 ----A---- C:\Windows\system32\SmiEngine.dll
2009-09-10 09:31:23 ----A---- C:\Windows\system32\wdscore.dll
2009-09-10 09:31:23 ----A---- C:\Windows\system32\PkgMgr.exe
2009-09-10 09:31:03 ----A---- C:\Windows\system32\drvstore.dll
2009-09-09 18:08:56 ----D---- C:\Program Files\Windows Live
2009-09-09 18:05:20 ----A---- C:\Windows\system32\occache.dll
2009-09-09 18:05:19 ----A---- C:\Windows\system32\jsproxy.dll
2009-09-09 18:05:19 ----A---- C:\Windows\system32\iepeers.dll
2009-09-09 18:05:18 ----A---- C:\Windows\system32\msfeedsbs.dll
2009-09-09 18:05:18 ----A---- C:\Windows\system32\msfeeds.dll
2009-09-09 18:05:17 ----A---- C:\Windows\system32\ieui.dll
2009-09-09 18:05:17 ----A---- C:\Windows\system32\iesetup.dll
2009-09-09 18:05:15 ----A---- C:\Windows\system32\wininet.dll
2009-09-09 18:05:15 ----A---- C:\Windows\system32\iernonce.dll
2009-09-09 18:05:14 ----A---- C:\Windows\system32\msfeedssync.exe
2009-09-09 18:05:14 ----A---- C:\Windows\system32\iertutil.dll
2009-09-09 18:05:14 ----A---- C:\Windows\system32\ie4uinit.exe
2009-09-09 18:05:13 ----A---- C:\Windows\system32\ieUnatt.exe
2009-09-09 18:05:13 ----A---- C:\Windows\system32\iedkcs32.dll
2009-09-09 18:05:12 ----A---- C:\Windows\system32\urlmon.dll
2009-09-09 18:05:12 ----A---- C:\Windows\system32\iesysprep.dll
2009-09-09 18:05:09 ----A---- C:\Windows\system32\ieframe.dll
2009-09-09 18:05:07 ----A---- C:\Windows\system32\mshtml.dll
2009-09-09 18:02:44 ----A---- C:\Windows\system32\mshtmled.dll
2009-09-09 18:02:44 ----A---- C:\Windows\system32\icardie.dll
2009-09-09 18:02:43 ----A---- C:\Windows\system32\msls31.dll
2009-09-09 18:02:43 ----A---- C:\Windows\system32\mshtmler.dll
2009-09-09 18:02:43 ----A---- C:\Windows\system32\admparse.dll
2009-09-09 18:02:42 ----A---- C:\Windows\system32\ieakeng.dll
2009-09-09 18:02:42 ----A---- C:\Windows\system32\corpol.dll
2009-09-09 18:02:41 ----A---- C:\Windows\system32\imgutil.dll
2009-09-09 18:02:41 ----A---- C:\Windows\system32\dxtrans.dll
2009-09-09 18:02:41 ----A---- C:\Windows\system32\dxtmsft.dll
2009-09-09 18:02:40 ----A---- C:\Windows\system32\licmgr10.dll
2009-09-09 18:02:40 ----A---- C:\Windows\system32\inseng.dll
2009-09-09 18:02:39 ----A---- C:\Windows\system32\webcheck.dll
2009-09-09 18:02:39 ----A---- C:\Windows\system32\msrating.dll
2009-09-09 18:02:39 ----A---- C:\Windows\system32\ieaksie.dll
2009-09-09 18:02:38 ----A---- C:\Windows\system32\WinFXDocObj.exe
2009-09-09 18:02:38 ----A---- C:\Windows\system32\wextract.exe
2009-09-09 18:02:38 ----A---- C:\Windows\system32\ieakui.dll
2009-09-09 18:02:37 ----A---- C:\Windows\system32\mstime.dll
2009-09-09 18:02:37 ----A---- C:\Windows\system32\advpack.dll
2009-09-09 18:02:36 ----A---- C:\Windows\system32\pngfilt.dll
2009-09-09 18:02:36 ----A---- C:\Windows\system32\ieapfltr.dll
2009-09-09 18:02:35 ----A---- C:\Windows\system32\vbscript.dll
2009-09-09 18:02:34 ----A---- C:\Windows\system32\url.dll
2009-09-09 18:02:31 ----A---- C:\Windows\system32\mshta.exe
2009-09-09 18:02:31 ----A---- C:\Windows\system32\iexpress.exe
2009-09-09 18:02:30 ----A---- C:\Windows\system32\SetIEInstalledDate.exe
2009-09-09 18:02:30 ----A---- C:\Windows\system32\SetDepNx.exe
2009-09-09 18:02:30 ----A---- C:\Windows\system32\RegisterIEPKEYs.exe
2009-09-09 18:02:30 ----A---- C:\Windows\system32\PDMSetup.exe
2009-09-09 15:30:39 ----A---- C:\Windows\system32\netiohlp.dll
2009-09-09 15:30:37 ----A---- C:\Windows\system32\NETSTAT.EXE
2009-09-09 15:30:36 ----A---- C:\Windows\system32\ARP.EXE
2009-09-09 15:30:35 ----A---- C:\Windows\system32\TCPSVCS.EXE
2009-09-09 15:30:33 ----A---- C:\Windows\system32\HOSTNAME.EXE
2009-09-09 15:30:33 ----A---- C:\Windows\system32\finger.exe
2009-09-09 15:30:32 ----A---- C:\Windows\system32\ROUTE.EXE
2009-09-09 15:30:32 ----A---- C:\Windows\system32\MRINFO.EXE
2009-09-09 15:30:29 ----A---- C:\Windows\system32\netevent.dll
2009-09-09 15:29:09 ----A---- C:\Windows\system32\wlansvc.dll
2009-09-09 15:29:09 ----A---- C:\Windows\system32\wlanhlp.dll
2009-09-09 15:29:08 ----A---- C:\Windows\system32\wlansec.dll
2009-09-09 15:29:08 ----A---- C:\Windows\system32\wlanmsm.dll
2009-09-09 15:29:08 ----A---- C:\Windows\system32\L2SecHC.dll
2009-09-09 15:29:07 ----A---- C:\Windows\system32\wlanapi.dll
2009-09-09 15:28:55 ----A---- C:\Windows\system32\WMVCORE.DLL
2009-09-09 15:28:54 ----A---- C:\Windows\system32\mf.dll
2009-09-09 15:28:52 ----A---- C:\Windows\system32\rrinstaller.exe
2009-09-09 15:28:52 ----A---- C:\Windows\system32\mfps.dll
2009-09-09 15:28:52 ----A---- C:\Windows\system32\mfpmp.exe
2009-09-09 15:28:50 ----A---- C:\Windows\system32\mferror.dll
2009-09-07 22:26:18 ----D---- C:\Program Files\Microsoft Office Outlook Connector
2009-09-03 02:13:37 ----A---- C:\Windows\system32\Apphlpdm.dll
2009-09-03 02:13:35 ----A---- C:\Windows\system32\GameUXLegacyGDFs.dll
2009-08-31 11:20:46 ----D---- C:\Program Files\uTorrent
2009-08-30 13:17:43 ----D---- C:\Program Files\Common Files\DivX Shared
2009-08-30 13:17:40 ----D---- C:\Program Files\DivX

======List of files/folders modified in the last 1 months======

2009-09-27 23:12:24 ----D---- C:\Windows\Prefetch
2009-09-27 23:12:13 ----RD---- C:\Program Files
2009-09-27 23:11:56 ----D---- C:\Windows\Temp
2009-09-27 23:09:22 ----D---- C:\Windows
2009-09-27 23:09:13 ----D---- C:\Windows\system32\LogFiles
2009-09-27 23:08:16 ----D---- C:\Users\LoO\AppData\Roaming\uTorrent
2009-09-27 23:02:39 ----D---- C:\Windows\system32\drivers
2009-09-27 23:02:39 ----D---- C:\Windows\SchCache
2009-09-27 13:03:45 ----D---- C:\Windows\System32
2009-09-27 12:59:16 ----D---- C:\Windows\system32\catroot2
2009-09-27 02:10:17 ----A---- C:\Windows\system32\PerfStringBackup.INI
2009-09-27 02:10:16 ----D---- C:\Windows\inf
2009-09-27 01:55:54 ----HD---- C:\ProgramData
2009-09-26 15:34:09 ----SHD---- C:\Windows\Installer
2009-09-26 15:32:19 ----D---- C:\Program Files\Mozilla Firefox
2009-09-26 14:25:13 ----D---- C:\Windows\winsxs
2009-09-25 17:19:24 ----D---- C:\Windows\Debug
2009-09-25 15:17:10 ----D---- C:\Windows\Tasks
2009-09-25 15:08:29 ----D---- C:\Program Files\Common Files
2009-09-25 15:08:28 ----D---- C:\ProgramData\McAfee
2009-09-25 14:37:14 ----D---- C:\Windows\system32\catroot
2009-09-25 14:36:41 ----D---- C:\Program Files\CCleaner
2009-09-25 11:41:49 ----D---- C:\Program Files\VS Revo Group
2009-09-25 00:16:09 ----D---- C:\Windows\system
2009-09-25 00:12:51 ----A---- C:\MSVCRT.DLL
2009-09-25 00:05:29 ----RSD---- C:\Windows\Fonts
2009-09-24 23:47:43 ----SD---- C:\Users\LoO\AppData\Roaming\Microsoft
2009-09-24 23:19:55 ----SD---- C:\Windows\Downloaded Program Files
2009-09-21 16:26:56 ----D---- C:\Windows\system32\Tasks
2009-09-19 02:16:59 ----SHD---- C:\System Volume Information
2009-09-18 19:34:38 ----D---- C:\Windows\Microsoft.NET
2009-09-18 19:34:19 ----RSD---- C:\Windows\assembly
2009-09-18 19:32:35 ----D---- C:\Windows\rescache
2009-09-18 19:20:19 ----SHD---- C:\Boot
2009-09-18 19:14:02 ----HD---- C:\Program Files\InstallShield Installation Information
2009-09-18 19:06:45 ----D---- C:\Program Files\Windows Mail
2009-09-18 19:06:45 ----D---- C:\Program Files\Windows Calendar
2009-09-18 19:06:44 ----D---- C:\Program Files\Movie Maker
2009-09-18 19:06:41 ----D---- C:\Program Files\Windows Sidebar
2009-09-18 19:06:40 ----D---- C:\Program Files\Windows Media Player
2009-09-18 19:06:40 ----D---- C:\Program Files\Internet Explorer
2009-09-18 19:06:38 ----D---- C:\Program Files\Windows Collaboration
2009-09-18 19:06:34 ----D---- C:\Program Files\Windows Photo Gallery
2009-09-18 19:06:34 ----D---- C:\Program Files\Common Files\System
2009-09-18 19:06:17 ----D---- C:\Windows\servicing
2009-09-18 19:06:17 ----D---- C:\Program Files\Windows Defender
2009-09-18 19:05:36 ----D---- C:\Windows\IME
2009-09-18 19:05:35 ----D---- C:\Windows\system32\XPSViewer
2009-09-18 19:05:35 ----D---- C:\Windows\system32\lv-LV
2009-09-18 19:05:34 ----D---- C:\Windows\system32\hr-HR
2009-09-18 19:05:34 ----D---- C:\Windows\system32\et-EE
2009-09-18 19:05:34 ----D---- C:\Windows\system32\da-DK
2009-09-18 19:05:33 ----D---- C:\Windows\system32\sk-SK
2009-09-18 19:05:33 ----D---- C:\Windows\system32\ko-KR
2009-09-18 19:05:32 ----D---- C:\Windows\system32\it-IT
2009-09-18 19:05:32 ----D---- C:\Windows\system32\en-US
2009-09-18 19:05:32 ----D---- C:\Windows\system32\de-DE
2009-09-18 19:05:31 ----D---- C:\Windows\system32\el-GR
2009-09-18 19:05:30 ----D---- C:\Windows\system32\oobe
2009-09-18 19:05:29 ----D---- C:\Windows\system32\migration
2009-09-18 19:05:29 ----D---- C:\Windows\system32\fr
2009-09-18 19:05:19 ----D---- C:\Windows\system32\AdvancedInstallers
2009-09-18 19:05:18 ----D---- C:\Windows\system32\ru-RU
2009-09-18 19:05:12 ----D---- C:\Windows\system32\fr-FR
2009-09-18 19:04:57 ----D---- C:\Windows\system32\sv-SE
2009-09-18 19:04:57 ----D---- C:\Windows\system32\he-IL
2009-09-18 19:04:56 ----D---- C:\Windows\system32\setup
2009-09-18 19:04:56 ----D---- C:\Windows\system32\fi-FI
2009-09-18 19:04:55 ----D---- C:\Windows\system32\SLUI
2009-09-18 19:04:55 ----D---- C:\Windows\system32\pt-PT
2009-09-18 19:04:55 ----D---- C:\Windows\system32\hu-HU
2009-09-18 19:04:55 ----D---- C:\Windows\system32\cs-CZ
2009-09-18 19:04:49 ----D---- C:\Windows\system32\zh-CN
2009-09-18 19:04:46 ----D---- C:\Windows\system32\sr-Latn-CS
2009-09-18 19:04:46 ----D---- C:\Windows\system32\manifeststore
2009-09-18 19:04:46 ----D---- C:\Windows\system32\es-ES
2009-09-18 19:04:45 ----D---- C:\Windows\system32\zh-TW
2009-09-18 19:04:45 ----D---- C:\Windows\system32\sl-SI
2009-09-18 19:04:45 ----D---- C:\Windows\system32\pl-PL
2009-09-18 19:04:44 ----D---- C:\Windows\system32\uk-UA
2009-09-18 19:04:44 ----D---- C:\Windows\system32\ja-JP
2009-09-18 19:04:44 ----D---- C:\Windows\system32\bg-BG
2009-09-18 19:04:43 ----D---- C:\Windows\system32\ro-RO
2009-09-18 19:04:41 ----D---- C:\Windows\system32\th-TH
2009-09-18 19:04:35 ----D---- C:\Windows\system32\tr-TR
2009-09-18 19:04:33 ----D---- C:\Windows\system32\wbem
2009-09-18 19:04:25 ----D---- C:\Windows\system32\nb-NO
2009-09-18 19:04:24 ----D---- C:\Windows\system32\nl-NL
2009-09-18 19:04:24 ----D---- C:\Windows\system32\lt-LT
2009-09-18 19:04:23 ----D---- C:\Windows\system32\ar-SA
2009-09-18 19:04:20 ----D---- C:\Windows\system32\pt-BR
2009-09-18 19:04:20 ----D---- C:\Windows\system32\migwiz
2009-09-18 19:01:20 ----D---- C:\Windows\AppPatch
2009-09-18 19:00:32 ----D---- C:\Windows\system32\Boot
2009-09-18 18:54:42 ----D---- C:\Windows\system32\RTCOM
2009-09-18 10:47:17 ----D---- C:\Users\LoO\AppData\Roaming\Samsung
2009-09-18 10:40:12 ----D---- C:\Program Files\Java
2009-09-12 12:58:41 ----D---- C:\Program Files\Google
2009-09-12 11:43:15 ----D---- C:\Users\LoO\AppData\Roaming\PlayFirst
2009-09-12 11:43:15 ----D---- C:\ProgramData\PlayFirst
2009-09-12 11:42:39 ----D---- C:\My Games
2009-09-12 10:36:23 ----D---- C:\Program Files\Common Files\Real
2009-09-12 10:36:20 ----A---- C:\Windows\system32\pncrt.dll
2009-09-12 10:36:02 ----D---- C:\ProgramData\Google
2009-09-09 19:28:35 ----D---- C:\Program Files\Microsoft Silverlight
2009-09-09 19:26:21 ----D---- C:\Windows\PolicyDefinitions
2009-09-09 18:00:57 ----D---- C:\ProgramData\Microsoft Help
2009-09-09 03:07:03 ----D---- C:\Program Files\Common Files\microsoft shared
2009-09-09 03:06:25 ----D---- C:\Program Files\Microsoft Works
2009-09-07 21:10:58 ----DC---- C:\Windows\system32\DRVSTORE
2009-09-04 10:29:32 ----D---- C:\Windows\system32\Samsung_USB_Drivers
2009-09-03 18:27:40 ----D---- C:\Program Files\Dofus
2009-08-31 11:49:54 ----D---- C:\Users\LoO\AppData\Roaming\LimeWire
2009-08-28 23:38:20 ----A---- C:\Windows\system32\mrt.exe

3 updates, last one at Wed, Dec 31, 1969, 7:00pm.

Embed code:

Add/Update

View existing clipboard:

Search: