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. | OTL logfile created on: 2009-12-06 19:48:15 - Run 1
OTL by OldTimer - Version 3.1.11.6 Folder = C:\\Users\\weronika\\Downloads
Windows Vista Home Basic Edition Service Pack 1 (Version = 6.0.6001) - Type = NTWorkstation
Internet Explorer (Version = 7.0.6001.18000)
Locale: 00000415 | Country: Polska | Language: PLK | Date Format: yyyy-MM-dd
2,00 Gb Total Physical Memory | 2,00 Gb Available Physical Memory | 100,00% Memory free
4,00 Gb Paging File | 4,00 Gb Available in Paging File | 100,00% Paging File free
Paging file location(s): ?:\\pagefile.sys [binary data]
%SystemDrive% = C: | %SystemRoot% = C:\\Windows | %ProgramFiles% = C:\\Program Files
Drive C: | 149,04 Gb Total Space | 104,39 Gb Free Space | 70,04% Space Free | Partition Type: NTFS
Drive D: | 137,33 Gb Total Space | 137,29 Gb Free Space | 99,98% Space Free | Partition Type: NTFS
E: Drive not present or media not loaded
F: Drive not present or media not loaded
G: Drive not present or media not loaded
H: Drive not present or media not loaded
I: Drive not present or media not loaded
Computer Name: WERONIKA-PC
Current User Name: weronika
Logged in as Administrator.
Current Boot Mode: Normal
Scan Mode: Current user
Company Name Whitelist: Off
Skip Microsoft Files: Off
File Age = 30 Days
Output = Standard
[color=#E56717]========== Processes (SafeList) ==========[/color]
PRC - [2009-12-05 00:26:53 | 00,536,064 | ---- | M] (OldTimer Tools) -- C:\\Users\\weronika\\Downloads\\OTL.exe
PRC - [2009-11-10 22:22:00 | 00,908,248 | ---- | M] (Mozilla Corporation) -- C:\\Program Files\\Mozilla Firefox\\firefox.exe
PRC - [2009-08-31 17:07:34 | 11,391,592 | ---- | M] (GG Network S.A.) -- C:\\Program Files\\Nowe Gadu-Gadu\\gg.exe
PRC - [2009-08-31 15:56:26 | 00,077,824 | ---- | M] () -- C:\\Program Files\\Nowe Gadu-Gadu\\spellchecker_gg.exe
PRC - [2009-08-26 01:09:09 | 00,117,640 | R--- | M] (Symantec Corporation) -- C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\ccSvcHst.exe
PRC - [2009-06-30 07:38:38 | 02,927,104 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\explorer.exe
PRC - [2009-04-16 07:52:06 | 00,091,432 | ---- | M] (CyberLink Corp.) -- C:\\Program Files\\ASUSTek\\ASUSDVD 8\\PDVD8Serv.exe
PRC - [2009-04-15 16:56:31 | 00,271,760 | ---- | M] () -- C:\\Program Files\\Cyberlink\\Shared files\\RichVideo.exe
PRC - [2009-04-15 05:01:51 | 00,211,488 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\System32\\nvvsvc.exe
PRC - [2009-04-07 18:04:36 | 00,070,880 | ---- | M] (SRS Labs, Inc.) -- C:\\Program Files\\SRS Labs\\SRS Premium Sound\\SRS_VolSync.exe
PRC - [2009-04-07 18:02:10 | 03,405,048 | ---- | M] (SRS Labs, Inc.) -- C:\\Program Files\\SRS Labs\\SRS Premium Sound\\SRSPremiumSoundBig_Small.exe
PRC - [2009-04-07 17:34:26 | 00,159,744 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Media\\DMedia.exe
PRC - [2009-04-02 19:49:12 | 00,211,512 | ---- | M] (ATK) -- C:\\Program Files\\P4G\\BatteryLife.exe
PRC - [2009-03-30 05:06:15 | 00,424,864 | ---- | M] (ELAN Microelectronic Corp.) -- C:\\Program Files\\Elantech\\ETDCtrl.exe
PRC - [2009-03-24 12:10:25 | 07,289,376 | ---- | M] (Realtek Semiconductor) -- C:\\Program Files\\Realtek\\Audio\\HDA\\RtHDVCpl.exe
PRC - [2009-03-21 04:37:18 | 00,174,648 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Hotkey\\HControl.exe
PRC - [2009-03-04 18:26:24 | 08,392,704 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATKOSD2\\ATKOSD2.exe
PRC - [2009-02-07 00:13:16 | 01,593,344 | ---- | M] () -- C:\\Program Files\\ASUS\\Wireless Console 3\\wcourier.exe
PRC - [2008-12-23 01:15:34 | 00,174,648 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Hotkey\\WDC.exe
PRC - [2008-12-09 23:00:58 | 00,297,528 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\SmartLogon\\sensorsrv.exe
PRC - [2008-10-01 07:02:48 | 00,851,968 | ---- | M] (ATK) -- C:\\Program Files\\ASUS\\Splendid\\ACMON.exe
PRC - [2008-09-30 23:17:32 | 00,237,568 | ---- | M] (AlcorMicro Co., Ltd.) -- C:\\Program Files\\AmIcoSingLun\\AmIcoSinglun.exe
PRC - [2008-08-18 19:27:32 | 00,117,304 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Hotkey\\MsgTranAgt.exe
PRC - [2008-08-18 18:56:22 | 00,098,304 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Hotkey\\HControlUser.exe
PRC - [2008-08-14 05:00:08 | 00,113,208 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Hotkey\\KBFiltr.exe
PRC - [2008-08-14 04:59:52 | 00,100,920 | ---- | M] () -- C:\\Program Files\\ASUS\\ATK Hotkey\\AsLdrSrv.exe
PRC - [2008-08-14 00:21:56 | 02,482,176 | ---- | M] (ASUS) -- C:\\Program Files\\ASUS\\ATK Hotkey\\ATKOSD.exe
PRC - [2008-07-19 03:52:16 | 00,104,936 | ---- | M] (CyberLink) -- C:\\Program Files\\Cyberlink\\Power2Go\\CLMLSvc.exe
PRC - [2008-06-09 18:21:58 | 00,073,728 | ---- | M] (Hewlett-Packard Company) -- C:\\Program Files\\Common Files\\LightScribe\\LSSrvc.exe
PRC - [2008-06-09 18:16:32 | 02,363,392 | ---- | M] (Hewlett-Packard Company) -- C:\\Program Files\\Common Files\\LightScribe\\LightScribeControlPanel.exe
PRC - [2008-04-01 07:09:30 | 00,266,240 | ---- | M] (ASUSTek Computer Inc.) -- C:\\Program Files\\ASUS\\ASUS Data Security Manager\\ADSMTray.exe
PRC - [2008-03-31 10:55:48 | 00,225,280 | ---- | M] (ASUSTek Computer Inc.) -- C:\\Program Files\\ASUS\\ASUS Data Security Manager\\ADSMSrv.exe
PRC - [2008-01-21 03:35:20 | 00,202,240 | ---- | M] (Microsoft Corporation) -- C:\\Program Files\\Windows Media Player\\wmpnscfg.exe
PRC - [2007-11-30 19:20:44 | 00,051,768 | ---- | M] () -- C:\\Program Files\\ASUS\\ASUS Live Update\\ALU.exe
PRC - [2007-08-08 08:08:40 | 00,094,208 | ---- | M] () -- C:\\Program Files\\ATKGFNEX\\GFNEXSrv.exe
PRC - [2005-07-06 23:43:42 | 00,155,648 | ---- | M] (ASUSTeK) -- C:\\Windows\\System32\\ACEngSvr.exe
[color=#E56717]========== Modules (All) ==========[/color]
MOD - [2009-12-05 00:26:53 | 00,536,064 | ---- | M] (OldTimer Tools) -- C:\\Users\\weronika\\Downloads\\OTL.exe
MOD - [2009-08-27 14:32:28 | 01,174,528 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\urlmon.dll
MOD - [2009-08-27 14:29:28 | 00,270,848 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\iertutil.dll
MOD - [2009-08-27 14:29:27 | 06,069,248 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ieframe.dll
MOD - [2009-07-17 15:35:11 | 00,071,680 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\atl.dll
MOD - [2009-06-30 07:50:01 | 00,888,832 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\kernel32.dll
MOD - [2009-06-30 07:42:48 | 00,296,960 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\gdi32.dll
MOD - [2009-06-30 07:39:38 | 11,580,928 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\shell32.dll
MOD - [2009-06-30 07:37:50 | 00,466,944 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\netapi32.dll
MOD - [2009-06-30 07:27:27 | 00,754,176 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\propsys.dll
MOD - [2009-06-30 07:19:42 | 00,040,960 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\srclient.dll
MOD - [2009-06-15 16:24:05 | 00,072,704 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\secur32.dll
MOD - [2009-04-23 13:43:04 | 00,784,896 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\rpcrt4.dll
MOD - [2009-03-30 04:48:13 | 00,245,760 | ---- | M] (ELAN Microelectronic Corp.) -- C:\\Program Files\\Elantech\\ETDApix.dll
MOD - [2008-11-27 05:35:06 | 01,748,992 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\winsxs\\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18175_none_9e7bbe54c9c04bca\\GdiPlus.dll
MOD - [2008-01-21 03:35:05 | 02,537,472 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wpdshext.dll
MOD - [2008-01-21 03:34:50 | 01,203,792 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ntdll.dll
MOD - [2008-01-21 03:34:50 | 00,563,200 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\oleaut32.dll
MOD - [2008-01-21 03:34:48 | 00,142,336 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\fontext.dll
MOD - [2008-01-21 03:34:47 | 01,315,328 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ole32.dll
MOD - [2008-01-21 03:34:46 | 00,806,912 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\msctf.dll
MOD - [2008-01-21 03:34:36 | 00,179,200 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ws2_32.dll
MOD - [2008-01-21 03:34:35 | 00,008,192 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\nsi.dll
MOD - [2008-01-21 03:34:34 | 01,590,272 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\setupapi.dll
MOD - [2008-01-21 03:34:22 | 00,450,048 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\comdlg32.dll
MOD - [2008-01-21 03:34:22 | 00,351,744 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\shlwapi.dll
MOD - [2008-01-21 03:34:21 | 00,183,296 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\xmllite.dll
MOD - [2008-01-21 03:34:21 | 00,057,344 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\samlib.dll
MOD - [2008-01-21 03:34:20 | 00,680,448 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\msvcrt.dll
MOD - [2008-01-21 03:34:11 | 00,798,720 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\advapi32.dll
MOD - [2008-01-21 03:34:07 | 01,076,224 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\vssapi.dll
MOD - [2008-01-21 03:34:07 | 00,069,120 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\vsstrace.dll
MOD - [2008-01-21 03:34:05 | 00,523,776 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\clbcatq.dll
MOD - [2008-01-21 03:34:05 | 00,114,688 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\imm32.dll
MOD - [2008-01-21 03:34:03 | 00,121,344 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ntmarta.dll
MOD - [2008-01-21 03:34:03 | 00,079,360 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\authz.dll
MOD - [2008-01-21 03:34:02 | 00,627,200 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\user32.dll
MOD - [2008-01-21 03:33:53 | 00,501,760 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\usp10.dll
MOD - [2008-01-21 03:33:53 | 00,023,552 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lpk.dll
MOD - [2008-01-21 03:33:52 | 00,289,280 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\Wldap32.dll
MOD - [2008-01-21 03:33:52 | 00,068,608 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\mpr.dll
MOD - [2008-01-21 03:33:49 | 00,189,952 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\winmm.dll
MOD - [2008-01-21 03:33:48 | 00,020,480 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\version.dll
MOD - [2008-01-21 03:33:47 | 00,171,008 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\apphelp.dll
MOD - [2008-01-21 03:33:46 | 00,108,032 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\userenv.dll
MOD - [2008-01-21 03:33:25 | 00,215,040 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\oleacc.dll
MOD - [2008-01-21 03:33:20 | 00,258,048 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\winspool.drv
MOD - [2008-01-21 03:33:15 | 01,067,520 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\shdocvw.dll
MOD - [2008-01-21 03:33:14 | 01,684,480 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\winsxs\\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\\comctl32.dll
MOD - [2008-01-21 03:33:14 | 00,240,128 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\uxtheme.dll
MOD - [2008-01-21 03:33:12 | 00,088,576 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\olepro32.dll
MOD - [2008-01-21 03:32:53 | 00,142,336 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\spp.dll
MOD - [2006-11-02 10:46:12 | 00,012,288 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\psapi.dll
MOD - [2006-11-02 10:46:07 | 00,004,608 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\msimg32.dll
[color=#E56717]========== Win32 Services (All) ==========[/color]
SRV - File not found -- -- (QuestService Service)
SRV - [2009-08-26 01:09:09 | 00,117,640 | R--- | M] (Symantec Corporation) -- C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\ccSvcHst.exe -- (Norton Internet Security)
SRV - [2009-08-07 03:23:45 | 01,929,952 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wuaueng.dll -- (wuauserv)
SRV - [2009-07-11 20:32:52 | 00,513,024 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wlansvc.dll -- (Wlansvc)
SRV - [2009-06-30 07:50:27 | 00,376,832 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\winhttp.dll -- (WinHttpAutoProxySvc)
SRV - [2009-06-30 07:49:30 | 00,551,424 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\rpcss.dll -- (RpcSs) Zdalne wywoływanie procedur (RPC)
SRV - [2009-06-30 07:49:30 | 00,551,424 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\rpcss.dll -- (DcomLaunch)
SRV - [2009-06-30 07:31:27 | 00,565,248 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\emdmgmt.dll -- (EMDMgmt)
SRV - [2009-06-30 07:29:12 | 00,361,984 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\IPSECSVC.DLL -- (PolicyAgent)
SRV - [2009-06-30 07:27:54 | 00,269,312 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\es.dll -- (EventSystem)
SRV - [2009-06-30 07:27:30 | 00,439,808 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\SearchIndexer.exe -- (WSearch)
SRV - [2009-06-15 13:57:59 | 00,009,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lsass.exe -- (SamSs)
SRV - [2009-06-15 13:57:59 | 00,009,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lsass.exe -- (ProtectedStorage)
SRV - [2009-06-15 13:57:59 | 00,009,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lsass.exe -- (Netlogon)
SRV - [2009-06-15 13:57:59 | 00,009,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lsass.exe -- (KeyIso)
SRV - [2009-06-10 13:12:29 | 00,160,256 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wkssvc.dll -- (LanmanWorkstation)
SRV - [2009-04-15 16:56:31 | 00,271,760 | ---- | M] () -- C:\\Program Files\\Cyberlink\\Shared files\\RichVideo.exe -- (RichVideo) Cyberlink RichVideo Service(CRVS)
SRV - [2009-04-15 05:01:51 | 00,211,488 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\System32\\nvvsvc.exe -- (nvsvc)
SRV - [2009-04-07 18:04:36 | 00,070,880 | ---- | M] (SRS Labs, Inc.) -- C:\\Program Files\\SRS Labs\\SRS Premium Sound\\SRS_VolSync.exe -- (SRS_VolSync_Service)
SRV - [2008-12-08 16:01:58 | 00,533,344 | ---- | M] (Microsoft Corporation) -- C:\\Program Files\\Windows Live\\Family Safety\\fsssvc.exe -- (fsssvc)
SRV - [2008-09-18 05:56:07 | 00,125,952 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wersvc.dll -- (WerSvc)
SRV - [2008-08-14 04:59:52 | 00,100,920 | ---- | M] () -- C:\\Program Files\\ASUS\\ATK Hotkey\\AsLdrSrv.exe -- (ASLDRService)
SRV - [2008-07-27 19:03:13 | 00,069,632 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\mscorsvw.exe -- (clr_optimization_v2.0.50727_32)
SRV - [2008-06-20 02:14:44 | 00,046,104 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\Microsoft.NET\\Framework\\v3.0\\WPF\\PresentationFontCache.exe -- (FontCache3.0.0.0)
SRV - [2008-06-20 02:14:31 | 00,881,664 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\Microsoft.NET\\Framework\\v3.0\\Windows Communication Foundation\\infocard.exe -- (idsvc)
SRV - [2008-06-20 02:14:31 | 00,132,096 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\Microsoft.NET\\Framework\\v3.0\\Windows Communication Foundation\\SMSvcHost.exe -- (NetTcpPortSharing)
SRV - [2008-06-09 18:21:58 | 00,073,728 | ---- | M] (Hewlett-Packard Company) -- C:\\Program Files\\Common Files\\LightScribe\\LSSrvc.exe -- (LightScribeService)
SRV - [2008-03-31 10:55:48 | 00,225,280 | ---- | M] (ASUSTek Computer Inc.) -- C:\\Program Files\\ASUS\\ASUS Data Security Manager\\ADSMSrv.exe -- (ADSMService)
SRV - [2008-01-21 03:35:20 | 00,896,512 | ---- | M] (Microsoft Corporation) -- C:\\Program Files\\Windows Media Player\\wmpnetwk.exe -- (WMPNetworkSvc)
SRV - [2008-01-21 03:35:17 | 00,658,944 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\p2psvc.dll -- (PNRPsvc) Protokół PNRP (Peer Name Resolution Protocol)
SRV - [2008-01-21 03:35:17 | 00,658,944 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\p2psvc.dll -- (PNRPAutoReg)
SRV - [2008-01-21 03:35:17 | 00,658,944 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\p2psvc.dll -- (p2psvc)
SRV - [2008-01-21 03:35:17 | 00,658,944 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\p2psvc.dll -- (p2pimsvc)
SRV - [2008-01-21 03:35:17 | 00,140,288 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wpcsvc.dll -- (WPCSvc)
SRV - [2008-01-21 03:35:05 | 00,070,144 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wpdbusenum.dll -- (WPDBusEnum)
SRV - [2008-01-21 03:34:56 | 00,116,736 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\sstpsvc.dll -- (SstpSvc)
SRV - [2008-01-21 03:34:51 | 00,057,344 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\eapsvc.dll -- (EapHost) Protokół uwierzytelniania rozszerzonego (EAP)
SRV - [2008-01-21 03:34:50 | 02,623,488 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\SLsvc.exe -- (slsvc)
SRV - [2008-01-21 03:34:50 | 00,382,976 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\vds.exe -- (vds)
SRV - [2008-01-21 03:34:50 | 00,188,928 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lltdsvc.dll -- (lltdsvc)
SRV - [2008-01-21 03:34:49 | 00,758,272 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\qmgr.dll -- (BITS)
SRV - [2008-01-21 03:34:49 | 00,161,792 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wbem\\WMIsvc.dll -- (Winmgmt)
SRV - [2008-01-21 03:34:48 | 00,055,296 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\WUDFSvc.dll -- (wudfsvc)
SRV - [2008-01-21 03:34:45 | 00,302,080 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\QAGENTRT.DLL -- (napagent)
SRV - [2008-01-21 03:34:44 | 00,574,464 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\gpsvc.dll -- (gpsvc)
SRV - [2008-01-21 03:34:44 | 00,122,880 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\srvsvc.dll -- (LanmanServer)
SRV - [2008-01-21 03:34:44 | 00,084,992 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\SessEnv.dll -- (SessionEnv)
SRV - [2008-01-21 03:34:43 | 00,314,368 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\audiosrv.dll -- (Audiosrv)
SRV - [2008-01-21 03:34:43 | 00,314,368 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\audiosrv.dll -- (AudioEndpointBuilder)
SRV - [2008-01-21 03:34:43 | 00,242,688 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\tapisrv.dll -- (TapiSrv)
SRV - [2008-01-21 03:34:43 | 00,045,056 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\mmcss.dll -- (THREADORDER)
SRV - [2008-01-21 03:34:43 | 00,045,056 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\mmcss.dll -- (MMCSS)
SRV - [2008-01-21 03:34:42 | 00,574,976 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\sysmain.dll -- (SysMain)
SRV - [2008-01-21 03:34:37 | 00,155,648 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ssdpsrv.dll -- (SSDPSRV)
SRV - [2008-01-21 03:34:35 | 00,393,216 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\MPSSVC.dll -- (MpsSvc)
SRV - [2008-01-21 03:34:35 | 00,018,432 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\nsisvc.dll -- (nsi)
SRV - [2008-01-21 03:34:33 | 00,125,952 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\spoolsv.exe -- (Spooler)
SRV - [2008-01-21 03:34:32 | 00,047,104 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\Sens.dll -- (SENS)
SRV - [2008-01-21 03:34:32 | 00,028,672 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\uxsms.dll -- (UxSms)
SRV - [2008-01-21 03:34:30 | 00,057,856 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\SLUINotify.dll -- (SLUINotify)
SRV - [2008-01-21 03:34:24 | 00,745,472 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\WsmSvc.dll -- (WinRM) Zdalne zarządzanie systemem Windows (WS-Management)
SRV - [2008-01-21 03:34:21 | 00,073,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wdi.dll -- (WdiSystemHost)
SRV - [2008-01-21 03:34:21 | 00,073,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wdi.dll -- (WdiServiceHost)
SRV - [2008-01-21 03:34:20 | 00,260,608 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\rasmans.dll -- (RasMan)
SRV - [2008-01-21 03:34:20 | 00,081,920 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\browser.dll -- (Browser)
SRV - [2008-01-21 03:34:19 | 00,134,656 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\dps.dll -- (DPS)
SRV - [2008-01-21 03:34:19 | 00,128,000 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\cryptsvc.dll -- (CryptSvc)
SRV - [2008-01-21 03:34:19 | 00,019,968 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\seclogon.dll -- (seclogon)
SRV - [2008-01-21 03:34:18 | 00,596,992 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\schedsvc.dll -- (Schedule)
SRV - [2008-01-21 03:34:18 | 00,068,096 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\KMSVC.DLL -- (hkmsvc)
SRV - [2008-01-21 03:34:17 | 00,056,320 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\tbssvc.dll -- (TBS)
SRV - [2008-01-21 03:34:08 | 00,106,496 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\regsvc.dll -- (RemoteRegistry)
SRV - [2008-01-21 03:34:08 | 00,086,528 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\dnsrslvr.dll -- (Dnscache)
SRV - [2008-01-21 03:34:08 | 00,071,680 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\msiexec.exe -- (msiserver)
SRV - [2008-01-21 03:34:06 | 00,188,416 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\iphlpsvc.dll -- (iphlpsvc)
SRV - [2008-01-21 03:34:04 | 00,237,056 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\netprofm.dll -- (netprofm)
SRV - [2008-01-21 03:34:03 | 00,310,784 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\swprv.dll -- (swprv)
SRV - [2008-01-21 03:34:03 | 00,175,104 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\dot3svc.dll -- (dot3svc)
SRV - [2008-01-21 03:34:03 | 00,145,408 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wecsvc.dll -- (Wecsvc)
SRV - [2008-01-21 03:34:02 | 00,282,624 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\w32time.dll -- (W32Time)
SRV - [2008-01-21 03:34:02 | 00,013,312 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\fdPHost.dll -- (fdPHost)
SRV - [2008-01-21 03:34:01 | 00,095,232 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\SCardSvr.dll -- (SCardSvr)
SRV - [2008-01-21 03:34:01 | 00,040,448 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\certprop.dll -- (SCPolicySvc)
SRV - [2008-01-21 03:34:01 | 00,040,448 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\certprop.dll -- (CertPropSvc)
SRV - [2008-01-21 03:34:00 | 00,090,624 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\rasauto.dll -- (RasAuto)
SRV - [2008-01-21 03:34:00 | 00,068,608 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\mprdim.dll -- (RemoteAccess)
SRV - [2008-01-21 03:33:59 | 00,074,240 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\IPBusEnum.dll -- (IPBusEnum)
SRV - [2008-01-21 03:33:55 | 00,344,576 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\msdtckrm.dll -- (KtmRm)
SRV - [2008-01-21 03:33:55 | 00,105,984 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\msdtc.exe -- (MSDTC)
SRV - [2008-01-21 03:33:54 | 00,033,280 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\appinfo.dll -- (Appinfo)
SRV - [2008-01-21 03:33:53 | 00,059,392 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\alg.exe -- (ALG)
SRV - [2008-01-21 03:33:51 | 00,448,512 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\termsrv.dll -- (TermService)
SRV - [2008-01-21 03:33:50 | 00,274,432 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\netman.dll -- (Netman)
SRV - [2008-01-21 03:33:47 | 00,039,424 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\servicing\\TrustedInstaller.exe -- (TrustedInstaller)
SRV - [2008-01-21 03:33:46 | 00,288,256 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\ipnathlp.dll -- (SharedAccess) Udostępnianie połączenia internetowego (ICS)
SRV - [2008-01-21 03:33:45 | 00,035,840 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\UI0Detect.exe -- (UI0Detect)
SRV - [2008-01-21 03:33:41 | 00,075,264 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\trkwks.dll -- (TrkWks)
SRV - [2008-01-21 03:33:40 | 00,259,072 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\upnphost.dll -- (upnphost)
SRV - [2008-01-21 03:33:40 | 00,153,600 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\profsvc.dll -- (ProfSvc)
SRV - [2008-01-21 03:33:39 | 01,502,208 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\pla.dll -- (pla)
SRV - [2008-01-21 03:33:37 | 00,204,288 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\dhcpcsvc.dll -- (Dhcp)
SRV - [2008-01-21 03:33:36 | 00,221,696 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\umpnpmgr.dll -- (PlugPlay)
SRV - [2008-01-21 03:33:27 | 00,438,272 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\IKEEXT.DLL -- (IKEEXT)
SRV - [2008-01-21 03:33:27 | 00,328,704 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\BFE.DLL -- (BFE)
SRV - [2008-01-21 03:33:26 | 00,062,976 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wercplsupport.dll -- (wercplsupport)
SRV - [2008-01-21 03:33:24 | 00,137,728 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wbem\\WmiApSrv.exe -- (wmiApSrv)
SRV - [2008-01-21 03:33:23 | 00,247,296 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\shsvcs.dll -- (Themes)
SRV - [2008-01-21 03:33:23 | 00,247,296 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\shsvcs.dll -- (ShellHWDetection)
SRV - [2008-01-21 03:33:20 | 01,054,720 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\VSSVC.exe -- (VSS)
SRV - [2008-01-21 03:33:19 | 00,111,616 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\iscsiexe.dll -- (MSiSCSI)
SRV - [2008-01-21 03:33:18 | 01,013,760 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wevtsvc.dll -- (Eventlog)
SRV - [2008-01-21 03:33:15 | 00,168,448 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\nlasvc.dll -- (NlaSvc)
SRV - [2008-01-21 03:33:11 | 02,091,520 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\dfsr.exe -- (DFSR)
SRV - [2008-01-21 03:33:08 | 00,412,672 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wcncsvc.dll -- (wcncsvc)
SRV - [2008-01-21 03:33:06 | 00,452,608 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wiaservc.dll -- (stisvc) Windows Image Acquisition (WIA)
SRV - [2008-01-21 03:33:06 | 00,196,608 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\WebClnt.dll -- (WebClient)
SRV - [2008-01-21 03:33:06 | 00,061,440 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\wscsvc.dll -- (wscsvc)
SRV - [2008-01-21 03:33:00 | 00,272,952 | ---- | M] (Microsoft Corporation) -- C:\\Program Files\\Windows Defender\\MpSvc.dll -- (WinDefend)
SRV - [2008-01-21 03:32:58 | 00,243,712 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\qwave.dll -- (QWAVE)
SRV - [2008-01-21 03:32:56 | 00,037,888 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\pcasvc.dll -- (PcaSvc)
SRV - [2008-01-21 03:32:53 | 00,104,960 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\sdrsvc.dll -- (SDRSVC)
SRV - [2007-08-24 02:19:12 | 00,443,776 | ---- | M] (Microsoft Corporation) -- C:\\Program Files\\Common Files\\Microsoft Shared\\OFFICE12\\ODSERV.EXE -- (odserv)
SRV - [2007-08-08 08:08:40 | 00,094,208 | ---- | M] () -- C:\\Program Files\\ATKGFNEX\\GFNEXSrv.exe -- (ATKGFNEXSrv)
SRV - [2006-11-02 13:34:40 | 00,068,096 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\TabSvc.dll -- (TabletInputService)
SRV - [2006-11-02 10:46:13 | 00,032,256 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\WcsPlugInService.dll -- (WcsPlugInService)
SRV - [2006-11-02 10:46:05 | 00,025,600 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\hidserv.dll -- (hidserv)
SRV - [2006-11-02 10:46:05 | 00,018,944 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\lmhsvc.dll -- (lmhosts)
SRV - [2006-11-02 10:46:04 | 00,027,648 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\FDResPub.dll -- (FDResPub)
SRV - [2006-11-02 10:46:02 | 00,024,576 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\aelupsvc.dll -- (AeLookupSvc)
SRV - [2006-11-02 10:45:46 | 00,012,800 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\snmptrap.exe -- (SNMPTRAP)
SRV - [2006-11-02 10:45:21 | 00,007,680 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\Locator.exe -- (RpcLocator) Lokalizator usługi zdalnego wywołania procedury (RPC)
SRV - [2006-11-02 10:45:02 | 00,007,168 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\dllhost.exe -- (COMSysApp)
SRV - [2006-10-26 21:03:08 | 00,145,184 | ---- | M] (Microsoft Corporation) -- C:\\Program Files\\Common Files\\Microsoft Shared\\Source Engine\\OSE.EXE -- (ose)
[color=#E56717]========== Driver Services (SafeList) ==========[/color]
DRV - [2009-10-28 23:37:22 | 00,343,088 | ---- | M] (Symantec Corporation) -- C:\\ProgramData\\Norton\\{0C55C096-0F1D-4F28-AAA2-85EF591126E7}\\Norton\\Definitions\\IPSDefs\\20091111.001\\IDSvix86.sys -- (IDSVix86)
DRV - [2009-10-06 07:34:54 | 00,124,976 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\drivers\\SYMEVENT.SYS -- (SymEvent)
DRV - [2009-10-06 07:34:31 | 00,482,432 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\Drivers\\NIS\\1007020.00B\\ccHPx86.sys -- (ccHP)
DRV - [2009-10-05 09:00:00 | 01,323,568 | ---- | M] (Symantec Corporation) -- C:\\ProgramData\\Norton\\{0C55C096-0F1D-4F28-AAA2-85EF591126E7}\\Norton\\Definitions\\VirusDefs\\20091206.005\\NAVEX15.SYS -- (NAVEX15)
DRV - [2009-10-05 09:00:00 | 00,371,248 | ---- | M] (Symantec Corporation) -- C:\\Program Files\\Common Files\\Symantec Shared\\EENGINE\\eeCtrl.sys -- (eeCtrl)
DRV - [2009-10-05 09:00:00 | 00,102,448 | ---- | M] (Symantec Corporation) -- C:\\Program Files\\Common Files\\Symantec Shared\\EENGINE\\EraserUtilRebootDrv.sys -- (EraserUtilRebootDrv)
DRV - [2009-10-05 09:00:00 | 00,084,912 | ---- | M] (Symantec Corporation) -- C:\\ProgramData\\Norton\\{0C55C096-0F1D-4F28-AAA2-85EF591126E7}\\Norton\\Definitions\\VirusDefs\\20091206.005\\NAVENG.SYS -- (NAVENG)
DRV - [2009-08-26 01:09:10 | 00,310,320 | ---- | M] (Symantec Corporation) -- C:\\Windows\\system32\\drivers\\NIS\\1007020.00B\\SYMEFA.SYS -- (SymEFA)
DRV - [2009-08-26 01:09:10 | 00,308,272 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\Drivers\\NIS\\1007020.00B\\SRTSP.SYS -- (SRTSP)
DRV - [2009-08-26 01:09:10 | 00,259,632 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\Drivers\\NIS\\1007020.00B\\BHDrvx86.sys -- (BHDrvx86)
DRV - [2009-08-26 01:09:10 | 00,217,136 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\Drivers\\NIS\\1007020.00B\\SYMTDI.SYS -- (SYMTDI)
DRV - [2009-08-26 01:09:10 | 00,089,904 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\Drivers\\NIS\\1007020.00B\\SYMFW.SYS -- (SYMFW)
DRV - [2009-08-26 01:09:10 | 00,048,688 | ---- | M] (Symantec Corporation) -- C:\\Windows\\System32\\Drivers\\NIS\\1007020.00B\\SYMNDISV.SYS -- (SYMNDISV)
DRV - [2009-08-26 01:09:10 | 00,043,696 | ---- | M] (Symantec Corporation) -- C:\\Windows\\system32\\drivers\\NIS\\1007020.00B\\SRTSPX.SYS -- (SRTSPX) Symantec Real Time Storage Protection (PEL)
DRV - [2009-08-26 01:08:51 | 00,025,648 | R--- | M] (Symantec Corporation) -- C:\\Windows\\System32\\drivers\\SymIMV.sys -- (SymIM)
DRV - [2009-06-30 07:52:23 | 00,030,264 | ---- | M] (ASUSTek Computer Inc) -- C:\\Windows\\System32\\drivers\\AsDsm.sys -- (AsDsm)
DRV - [2009-04-15 05:01:49 | 09,561,472 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\System32\\drivers\\nvlddmkm.sys -- (nvlddmkm)
DRV - [2009-04-01 22:12:48 | 00,233,128 | ---- | M] () -- C:\\Windows\\System32\\drivers\\SRS_PremiumSound_i386.sys -- (SRS_PremiumSound_Service)
DRV - [2009-03-30 08:33:17 | 00,129,536 | ---- | M] (ELAN Microelectronic Corp.) -- C:\\Windows\\System32\\drivers\\ETD.sys -- (ETD)
DRV - [2009-03-24 12:33:27 | 02,346,016 | ---- | M] (Realtek Semiconductor Corp.) -- C:\\Windows\\System32\\drivers\\RTKVHDA.sys -- (IntcAzAudAddService) Service for Realtek HD Audio (WDM)
DRV - [2009-02-18 04:01:34 | 01,093,632 | ---- | M] (Atheros Communications, Inc.) -- C:\\Windows\\System32\\drivers\\athr.sys -- (athr)
DRV - [2008-12-08 16:01:52 | 00,055,264 | ---- | M] (Microsoft Corporation) -- C:\\Windows\\System32\\drivers\\fssfltr.sys -- (fssfltr)
DRV - [2008-11-27 12:16:47 | 00,135,680 | ---- | M] (Realtek Corporation ) -- C:\\Windows\\System32\\drivers\\Rtlh86.sys -- (RTL8169)
DRV - [2008-11-13 02:02:17 | 00,146,464 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\system32\\DRIVERS\\nvstor32.sys -- (nvstor32)
DRV - [2008-11-03 08:03:27 | 00,013,880 | ---- | M] ( ) -- C:\\Windows\\System32\\drivers\\kbfiltr.sys -- (kbfiltr)
DRV - [2008-08-25 11:22:51 | 00,015,872 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\System32\\drivers\\nvsmu.sys -- (nvsmu)
DRV - [2008-08-11 03:14:11 | 01,752,704 | ---- | M] () -- C:\\Windows\\System32\\drivers\\snp2uvc.sys -- (SNP2UVC) USB2.0 PC Camera (SNP2UVC)
DRV - [2008-01-21 03:32:53 | 00,149,560 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\adpu320.sys -- (adpu320)
DRV - [2008-01-21 03:32:53 | 00,031,288 | ---- | M] (LSI Corporation) -- C:\\Windows\\system32\\drivers\\megasas.sys -- (megasas)
DRV - [2008-01-21 03:32:52 | 00,386,616 | ---- | M] (LSI Corporation, Inc.) -- C:\\Windows\\system32\\drivers\\megasr.sys -- (MegaSR)
DRV - [2008-01-21 03:32:52 | 00,101,432 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\adpu160m.sys -- (adpu160m)
DRV - [2008-01-21 03:32:52 | 00,074,808 | ---- | M] (Silicon Integrated Systems) -- C:\\Windows\\system32\\drivers\\sisraid4.sys -- (SiSRaid4)
DRV - [2008-01-21 03:32:52 | 00,040,504 | ---- | M] (Hewlett-Packard Company) -- C:\\Windows\\system32\\drivers\\hpcisss.sys -- (HpCISSs)
DRV - [2008-01-21 03:32:51 | 00,300,600 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\adpahci.sys -- (adpahci)
DRV - [2008-01-21 03:32:51 | 00,089,656 | ---- | M] (LSI Logic) -- C:\\Windows\\system32\\drivers\\lsi_sas.sys -- (LSI_SAS)
DRV - [2008-01-21 03:32:50 | 01,122,360 | ---- | M] (QLogic Corporation) -- C:\\Windows\\system32\\drivers\\ql2300.sys -- (ql2300)
DRV - [2008-01-21 03:32:50 | 00,118,784 | ---- | M] (Intel Corporation) -- C:\\Windows\\System32\\drivers\\E1G60I32.sys -- (E1G60) Intel(R)
DRV - [2008-01-21 03:32:50 | 00,079,928 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\arcsas.sys -- (arcsas)
DRV - [2008-01-21 03:32:49 | 00,235,064 | ---- | M] (Intel Corporation) -- C:\\Windows\\system32\\drivers\\iastorv.sys -- (iaStorV)
DRV - [2008-01-21 03:32:49 | 00,130,616 | ---- | M] (VIA Technologies Inc.,Ltd) -- C:\\Windows\\system32\\drivers\\vsmraid.sys -- (vsmraid)
DRV - [2008-01-21 03:32:49 | 00,115,816 | ---- | M] (Promise Technology, Inc.) -- C:\\Windows\\system32\\drivers\\ulsata2.sys -- (ulsata2)
DRV - [2008-01-21 03:32:49 | 00,096,312 | ---- | M] (LSI Logic) -- C:\\Windows\\system32\\drivers\\lsi_fc.sys -- (LSI_FC)
DRV - [2008-01-21 03:32:49 | 00,079,416 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\arc.sys -- (arc)
DRV - [2008-01-21 03:32:48 | 00,342,584 | ---- | M] (Emulex) -- C:\\Windows\\system32\\drivers\\elxstor.sys -- (elxstor)
DRV - [2008-01-21 03:32:48 | 00,096,312 | ---- | M] (LSI Logic) -- C:\\Windows\\system32\\drivers\\lsi_scsi.sys -- (LSI_SCSI)
DRV - [2008-01-21 03:32:47 | 00,102,968 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\system32\\drivers\\nvraid.sys -- (nvraid)
DRV - [2008-01-21 03:32:47 | 00,045,112 | ---- | M] (NVIDIA Corporation) -- C:\\Windows\\system32\\drivers\\nvstor.sys -- (nvstor)
DRV - [2008-01-21 03:32:46 | 00,422,968 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\adp94xx.sys -- (adp94xx)
DRV - [2008-01-21 03:32:45 | 00,238,648 | ---- | M] (ULi Electronics Inc.) -- C:\\Windows\\system32\\drivers\\uliahci.sys -- (uliahci)
DRV - [2008-01-21 03:32:21 | 00,020,024 | ---- | M] (VIA Technologies, Inc.) -- C:\\Windows\\system32\\drivers\\viaide.sys -- (viaide)
DRV - [2008-01-21 03:32:21 | 00,019,000 | ---- | M] (CMD Technology, Inc.) -- C:\\Windows\\system32\\drivers\\cmdide.sys -- (cmdide)
DRV - [2008-01-21 03:32:21 | 00,017,464 | ---- | M] (Acer Laboratories Inc.) -- C:\\Windows\\system32\\drivers\\aliide.sys -- (aliide)
DRV - [2007-07-24 19:09:04 | 00,013,880 | ---- | M] () -- C:\\Program Files\\ATKGFNEX\\ASMMAP.sys -- (ASMMAP)
DRV - [2006-12-14 08:11:57 | 00,007,680 | ---- | M] (ATK0100) -- C:\\Windows\\System32\\drivers\\ATKACPI.sys -- (MTsensor)
DRV - [2006-11-02 10:50:35 | 00,106,088 | ---- | M] (QLogic Corporation) -- C:\\Windows\\system32\\drivers\\ql40xx.sys -- (ql40xx)
DRV - [2006-11-02 10:50:35 | 00,098,408 | ---- | M] (Promise Technology, Inc.) -- C:\\Windows\\system32\\drivers\\ulsata.sys -- (UlSata)
DRV - [2006-11-02 10:50:19 | 00,045,160 | ---- | M] (IBM Corporation) -- C:\\Windows\\system32\\drivers\\nfrd960.sys -- (nfrd960)
DRV - [2006-11-02 10:50:17 | 00,041,576 | ---- | M] (Intel Corp./ICP vortex GmbH) -- C:\\Windows\\system32\\drivers\\iirsp.sys -- (iirsp)
DRV - [2006-11-02 10:50:11 | 00,071,272 | ---- | M] (Adaptec, Inc.) -- C:\\Windows\\system32\\drivers\\djsvs.sys -- (aic78xx)
DRV - [2006-11-02 10:50:09 | 00,035,944 | ---- | M] (Integrated Technology Express, Inc.) -- C:\\Windows\\system32\\drivers\\iteraid.sys -- (iteraid)
DRV - [2006-11-02 10:50:07 | 00,035,944 | ---- | M] (Integrated Technology Express, Inc.) -- C:\\Windows\\system32\\drivers\\iteatapi.sys -- (iteatapi)
DRV - [2006-11-02 10:50:05 | 00,035,944 | ---- | M] (LSI Logic) -- C:\\Windows\\system32\\drivers\\symc8xx.sys -- (Symc8xx)
DRV - [2006-11-02 10:50:03 | 00,034,920 | ---- | M] (LSI Logic) -- C:\\Windows\\system32\\drivers\\sym_u3.sys -- (Sym_u3)
DRV - [2006-11-02 10:49:59 | 00,033,384 | ---- | M] (LSI Logic Corporation) -- C:\\Windows\\system32\\drivers\\mraid35x.sys -- (Mraid35x)
DRV - [2006-11-02 10:49:56 | 00,031,848 | ---- | M] (LSI Logic) -- C:\\Windows\\system32\\drivers\\sym_hi.sys -- (Sym_hi)
DRV - [2006-11-02 09:25:24 | 00,071,808 | ---- | M] (Brother Industries Ltd.) -- C:\\Windows\\system32\\drivers\\brserid.sys -- (Brserid) Brother MFC Serial Port Interface Driver (WDM)
DRV - [2006-11-02 09:24:47 | 00,011,904 | ---- | M] (Brother Industries Ltd.) -- C:\\Windows\\system32\\drivers\\brusbser.sys -- (BrUsbSer)
DRV - [2006-11-02 09:24:46 | 00,005,248 | ---- | M] (Brother Industries, Ltd.) -- C:\\Windows\\system32\\drivers\\brfiltup.sys -- (BrFiltUp)
DRV - [2006-11-02 09:24:45 | 00,013,568 | ---- | M] (Brother Industries, Ltd.) -- C:\\Windows\\system32\\drivers\\brfiltlo.sys -- (BrFiltLo)
DRV - [2006-11-02 09:24:44 | 00,062,336 | ---- | M] (Brother Industries Ltd.) -- C:\\Windows\\system32\\drivers\\brserwdm.sys -- (BrSerWdm)
DRV - [2006-11-02 09:24:44 | 00,012,160 | ---- | M] (Brother Industries Ltd.) -- C:\\Windows\\system32\\drivers\\brusbmdm.sys -- (BrUsbMdm)
DRV - [2006-11-02 08:41:49 | 01,010,560 | ---- | M] (Motorola Inc.) -- C:\\Windows\\System32\\drivers\\smserial.sys -- (smserial)
DRV - [2006-11-02 08:36:50 | 00,020,608 | ---- | M] (N-trig Innovative Technologies) -- C:\\Windows\\system32\\drivers\\ntrigdigi.sys -- (ntrigdigi)
DRV - [2006-11-02 08:30:56 | 00,194,048 | ---- | M] (Marvell) -- C:\\Windows\\System32\\drivers\\yk60x86.sys -- (yukonwlh)
DRV - [2006-11-02 07:37:21 | 00,020,480 | ---- | M] (Macrovision Corporation, Macrovision Europe Limited, and Macrovision Japan and Asia K.K.) -- C:\\Windows\\System32\\drivers\\secdrv.sys -- (secdrv)
[color=#E56717]========== Standard Registry (SafeList) ==========[/color]
[color=#E56717]========== Internet Explorer ==========[/color]
IE - HKLM\\SOFTWARE\\Microsoft\\Internet Explorer\\Main,Default_Page_URL = http://www.google.com/ig/redirectdomain?brand=ASUS&bmod=ASUS
IE - HKLM\\SOFTWARE\\Microsoft\\Internet Explorer\\Main,Local Page = %SystemRoot%\\system32\\blank.htm
IE - HKLM\\SOFTWARE\\Microsoft\\Internet Explorer\\Main,Start Page = http://www.google.com/ig/redirectdomain?brand=ASUS&bmod=ASUS
IE - HKCU\\SOFTWARE\\Microsoft\\Internet Explorer\\Main,Default_Page_URL = http://www.google.com/ig/redirectdomain?brand=ASUS&bmod=ASUS
IE - HKCU\\SOFTWARE\\Microsoft\\Internet Explorer\\Main,Start Page = http://www.google.com/ig/redirectdomain?brand=ASUS&bmod=ASUS
IE - HKCU\\SOFTWARE\\Microsoft\\Internet Explorer\\Main,StartPageCache = 1
IE - HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings: \"ProxyEnable\" = 0
[color=#E56717]========== FireFox ==========[/color]
FF - prefs.js..browser.search.selectedEngine: \"Wikipedia (pl)\"
FF - prefs.js..extensions.enabledItems: {8141440E-08F0-4339-9959-5C31C6A69F23}:4.1.0.5190
FF - prefs.js..extensions.enabledItems: {E889F097-B0BE-471B-89AD-B86B6F04B506}:4.1.0.1800
FF - prefs.js..extensions.enabledItems: {F2DDDB92-1605-4260-9B25-45A4DAE87B50}:1.0
FF - prefs.js..extensions.enabledItems: {E63605FC-D583-4C81-867F-9457BDB3EA1B}:3.1.0.1840
FF - HKLM\\software\\mozilla\\Firefox\\Extensions\\\\{E63605FC-D583-4C81-867F-9457BDB3EA1B}: C:\\Program Files\\Web Search Operator\\3.1.0.1840\\FF [2009-12-04 22:43:27 | 00,000,000 | ---D | M]
FF - HKLM\\software\\mozilla\\Firefox\\Extensions\\\\{8141440E-08F0-4339-9959-5C31C6A69F23}: C:\\Program Files\\Automated Content Enhancer\\4.1.0.5190\\FF [2009-12-04 22:43:39 | 00,000,000 | ---D | M]
FF - HKLM\\software\\mozilla\\Firefox\\Extensions\\\\{E889F097-B0BE-471B-89AD-B86B6F04B506}: C:\\Program Files\\Customized Platform Advancer\\4.1.0.1800\\FF [2009-12-04 22:43:53 | 00,000,000 | ---D | M]
FF - HKLM\\software\\mozilla\\Mozilla Firefox 3.5.5\\extensions\\\\Components: C:\\Program Files\\Mozilla Firefox\\components [2009-11-10 22:22:16 | 00,000,000 | ---D | M]
FF - HKLM\\software\\mozilla\\Mozilla Firefox 3.5.5\\extensions\\\\Plugins: C:\\Program Files\\Mozilla Firefox\\plugins [2009-11-10 22:22:19 | 00,000,000 | ---D | M]
[2009-10-14 20:23:07 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Roaming\\mozilla\\Extensions
[2009-12-05 23:21:06 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Roaming\\mozilla\\Firefox\\Profiles\\sgl4hiiz.default\\extensions
[2009-12-06 18:00:32 | 00,000,000 | ---D | M] -- C:\\Program Files\\Mozilla Firefox\\extensions
[2009-12-04 22:49:04 | 00,000,000 | ---D | M] -- C:\\Program Files\\Mozilla Firefox\\extensions\\{F2DDDB92-1605-4260-9B25-45A4DAE87B50}
[2009-11-10 22:22:09 | 00,002,767 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\allegro-pl.xml
[2009-11-10 22:22:09 | 00,001,406 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\fbc-pl.xml
[2009-11-10 22:22:09 | 00,000,917 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\merlin-pl.xml
[2009-11-10 22:22:09 | 00,000,858 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\pwn-pl.xml
[2009-12-04 22:49:04 | 00,002,405 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\questservice129.xml
[2009-11-10 22:22:09 | 00,001,183 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\wikipedia-pl.xml
[2009-11-10 22:22:09 | 00,001,683 | ---- | M] () -- C:\\Program Files\\Mozilla Firefox\\searchplugins\\wp-pl.xml
O1 HOSTS File: (761 bytes) - C:\\Windows\\System32\\drivers\\etc\\hosts
O1 - Hosts: 127.0.0.1 localhost
O1 - Hosts: ::1 localhost
O2 - BHO: (Adobe PDF Link Helper) - {18DF081C-E8AD-4283-A596-FA578C2EBDC3} - C:\\Program Files\\Common Files\\Adobe\\Acrobat\\ActiveX\\AcroIEHelperShim.dll (Adobe Systems Incorporated)
O2 - BHO: (Symantec NCO BHO) - {602ADB0E-4AFF-4217-8AA1-95DAC4DFA408} - C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\CoIEPlg.dll (Symantec Corporation)
O2 - BHO: (Symantec Intrusion Prevention) - {6D53EC84-6AAE-4787-AEEE-F4628F01010C} - C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\IPSBHO.dll (Symantec Corporation)
O2 - BHO: (TCP) - {CAC89FF9-34A9-4431-8CFE-292A47F843BC} - C:\\Program Files\\Textual Content Provider\\1.1.0.1610\\TCPIE.dll ()
O2 - BHO: (Web Search Operator) - {EB4A577D-BCAD-4b1c-8AF2-9A74B8DD3431} - C:\\Program Files\\Web Search Operator\\3.1.0.1840\\WSO.dll ()
O3 - HKLM\\..\\Toolbar: (Norton Toolbar) - {7FEBEFE3-6B19-4349-98D2-FFB09D4B49CA} - C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\CoIEPlg.dll (Symantec Corporation)
O3 - HKCU\\..\\Toolbar\\WebBrowser: (Norton Toolbar) - {7FEBEFE3-6B19-4349-98D2-FFB09D4B49CA} - C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\CoIEPlg.dll (Symantec Corporation)
O4 - HKLM..\\Run: [ACMON] C:\\Program Files\\ASUS\\Splendid\\ACMON.exe (ATK)
O4 - HKLM..\\Run: [Adobe Reader Speed Launcher] C:\\Program Files\\Adobe\\Reader 9.0\\Reader\\Reader_sl.exe (Adobe Systems Incorporated)
O4 - HKLM..\\Run: [ADSMTray] C:\\Program Files\\ASUS\\ASUS Data Security Manager\\ADSMTray.exe (ASUSTek Computer Inc.)
O4 - HKLM..\\Run: [AmIcoSinglun] C:\\Program Files\\AmIcoSingLun\\AmIcoSinglun.exe (AlcorMicro Co., Ltd.)
O4 - HKLM..\\Run: [ASUS Camera ScreenSaver] C:\\Windows\\AsScrProlog.exe ()
O4 - HKLM..\\Run: [ATKMEDIA] C:\\Program Files\\ASUS\\ATK Media\\DMedia.exe (ASUS)
O4 - HKLM..\\Run: [ATKOSD2] C:\\Program Files\\ASUS\\ATKOSD2\\ATKOSD2.exe (ASUS)
O4 - HKLM..\\Run: [CLMLServer] C:\\Program Files\\Cyberlink\\Power2Go\\CLMLSvc.exe (CyberLink)
O4 - HKLM..\\Run: [DisableS3S4] c:\\DisableS3S4.cmd File not found
O4 - HKLM..\\Run: [ETDWare] C:\\Program Files\\Elantech\\ETDCtrl.exe (ELAN Microelectronic Corp.)
O4 - HKLM..\\Run: [HControlUser] C:\\Program Files\\ASUS\\ATK Hotkey\\HControlUser.exe (ASUS)
O4 - HKLM..\\Run: [NvCplDaemon] C:\\Windows\\System32\\NvCpl.DLL (NVIDIA Corporation)
O4 - HKLM..\\Run: [P2Go_Menu] C:\\Program Files\\CyberLink\\Power2Go\\MUITransfer\\MUIStartMenu.exe (CyberLink Corp.)
O4 - HKLM..\\Run: [PDVD8LanguageShortcut] C:\\Program Files\\ASUSTek\\ASUSDVD 8\\Language\\Language.exe (CyberLink Corp.)
O4 - HKLM..\\Run: [RemoteControl8] C:\\Program Files\\ASUSTek\\ASUSDVD 8\\PDVD8Serv.exe (CyberLink Corp.)
O4 - HKLM..\\Run: [RtHDVCpl] C:\\Program Files\\Realtek\\Audio\\HDA\\RtHDVCpl.exe (Realtek Semiconductor)
O4 - HKLM..\\Run: [Windows Defender] C:\\Program Files\\Windows Defender\\MSASCui.exe (Microsoft Corporation)
O4 - HKLM..\\Run: [Wireless Console 3] C:\\Program Files\\ASUS\\Wireless Console 3\\wcourier.exe ()
O4 - HKCU..\\Run: [LightScribe Control Panel] C:\\Program Files\\Common Files\\LightScribe\\LightScribeControlPanel.exe (Hewlett-Packard Company)
O4 - HKCU..\\Run: [Nowe Gadu-Gadu] C:\\Program Files\\Nowe Gadu-Gadu\\gg.exe (GG Network S.A.)
O4 - HKCU..\\Run: [SRS Premium Sound] C:\\Program Files\\SRS Labs\\SRS Premium Sound\\SRSPremiumSoundBig_Small.exe (SRS Labs, Inc.)
O4 - HKCU..\\Run: [WMPNSCFG] C:\\Program Files\\Windows Media Player\\wmpnscfg.exe (Microsoft Corporation)
O9 - Extra Button: Wpis w blogu - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - C:\\Program Files\\Windows Live\\Writer\\WriterBrowserExtension.dll (Microsoft Corporation)
O9 - Extra \'Tools\' menuitem : &Wpis w blogu w Windows Live Writer - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - C:\\Program Files\\Windows Live\\Writer\\WriterBrowserExtension.dll (Microsoft Corporation)
O9 - Extra Button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\\Program Files\\Microsoft Office\\Office12\\REFIEBAR.DLL (Microsoft Corporation)
O13 - gopher Prefix: missing
O17 - HKLM\\System\\CCS\\Services\\Tcpip\\Parameters: DhcpNameServer = 192.168.9.7
O18 - Protocol\\Handler\\livecall {828030A1-22C1-4009-854F-8E305202313F} - C:\\Program Files\\Windows Live\\Messenger\\msgrapp.14.0.8050.1202.dll (Microsoft Corporation)
O18 - Protocol\\Handler\\ms-help {314111c7-a502-11d2-bbca-00c04f8ec294} - C:\\Program Files\\Common Files\\microsoft shared\\Help\\hxds.dll (Microsoft Corporation)
O18 - Protocol\\Handler\\msnim {828030A1-22C1-4009-854F-8E305202313F} - C:\\Program Files\\Windows Live\\Messenger\\msgrapp.14.0.8050.1202.dll (Microsoft Corporation)
O18 - Protocol\\Handler\\symres {AA1061FE-6C41-421f-9344-69640C9732AB} - C:\\Program Files\\Norton Internet Security\\Engine\\16.7.2.11\\CoIEPlg.dll (Symantec Corporation)
O18 - Protocol\\Handler\\wlmailhtml {03C514A3-1EFB-4856-9F99-10D7BE1653C0} - C:\\Program Files\\Windows Live\\Mail\\mailcomm.dll (Microsoft Corporation)
O18 - Protocol\\Filter\\text/xml {807563E5-5146-11D5-A672-00B0D022E945} - C:\\Program Files\\Common Files\\microsoft shared\\OFFICE12\\MSOXMLMF.DLL (Microsoft Corporation)
O20 - HKLM Winlogon: Shell - (explorer.exe) - C:\\Windows\\explorer.exe (Microsoft Corporation)
O32 - HKLM CDRom: AutoRun - 1
O32 - AutoRun File - [2006-09-18 22:43:36 | 00,000,024 | ---- | M] () - C:\\autoexec.bat -- [ NTFS ]
O34 - HKLM BootExecute: (autocheck autochk *) - File not found
O35 - comfile [open] -- \"%1\" %*
O35 - exefile [open] -- \"%1\" %*
NetSvcs: FastUserSwitchingCompatibility - File not found
NetSvcs: Ias - C:\\Windows\\System32\\ias [2008-01-21 03:46:39 | 00,000,000 | ---D | M]
NetSvcs: Irmon - C:\\Windows\\System32\\irmon.dll (Microsoft Corporation)
NetSvcs: Nla - File not found
NetSvcs: Ntmssvc - File not found
NetSvcs: NWCWorkstation - File not found
NetSvcs: Nwsapagent - File not found
NetSvcs: SRService - File not found
NetSvcs: Wmi - C:\\Windows\\System32\\wmi.dll (Microsoft Corporation)
NetSvcs: WmdmPmSp - File not found
NetSvcs: LogonHours - File not found
NetSvcs: PCAudit - File not found
NetSvcs: helpsvc - File not found
NetSvcs: uploadmgr - File not found
SafeBootMin: AppMgmt - Service
SafeBootMin: Base - Driver Group
SafeBootMin: Boot Bus Extender - Driver Group
SafeBootMin: Boot file system - Driver Group
SafeBootMin: File system - Driver Group
SafeBootMin: Filter - Driver Group
SafeBootMin: HelpSvc - Service
SafeBootMin: NTDS - File not found
SafeBootMin: PCI Configuration - Driver Group
SafeBootMin: PNP Filter - Driver Group
SafeBootMin: Primary disk - Driver Group
SafeBootMin: sacsvr - Service
SafeBootMin: SCSI Class - Driver Group
SafeBootMin: SymEFA.sys - C:\\Windows\\system32\\drivers\\NIS\\1007020.00B\\SYMEFA.SYS (Symantec Corporation)
SafeBootMin: System Bus Extender - Driver Group
SafeBootMin: WinDefend - C:\\Program Files\\Windows Defender\\MpSvc.dll (Microsoft Corporation)
SafeBootMin: {36FC9E60-C465-11CF-8056-444553540000} - Universal Serial Bus controllers
SafeBootMin: {4D36E965-E325-11CE-BFC1-08002BE10318} - CD-ROM Drive
SafeBootMin: {4D36E967-E325-11CE-BFC1-08002BE10318} - DiskDrive
SafeBootMin: {4D36E969-E325-11CE-BFC1-08002BE10318} - Standard floppy disk controller
SafeBootMin: {4D36E96A-E325-11CE-BFC1-08002BE10318} - Hdc
SafeBootMin: {4D36E96B-E325-11CE-BFC1-08002BE10318} - Keyboard
SafeBootMin: {4D36E96F-E325-11CE-BFC1-08002BE10318} - Mouse
SafeBootMin: {4D36E977-E325-11CE-BFC1-08002BE10318} - PCMCIA Adapters
SafeBootMin: {4D36E97B-E325-11CE-BFC1-08002BE10318} - SCSIAdapter
SafeBootMin: {4D36E97D-E325-11CE-BFC1-08002BE10318} - System
SafeBootMin: {4D36E980-E325-11CE-BFC1-08002BE10318} - Floppy disk drive
SafeBootMin: {533C5B84-EC70-11D2-9505-00C04F79DEAF} - Volume shadow copy
SafeBootMin: {6BDD1FC1-810F-11D0-BEC7-08002BE2092F} - IEEE 1394 Bus host controllers
SafeBootMin: {71A27CDD-812A-11D0-BEC7-08002BE2092F} - Volume
SafeBootMin: {745A17A0-74D3-11D0-B6FE-00A0C90F57DA} - Human Interface Devices
SafeBootMin: {D48179BE-EC20-11D1-B6B8-00C04FA372A7} - SBP2 IEEE 1394 Devices
SafeBootMin: {D94EE5D8-D189-4994-83D2-F68D7D41B0E6} - SecurityDevices
SafeBootNet: AppMgmt - Service
SafeBootNet: Base - Driver Group
SafeBootNet: Boot Bus Extender - Driver Group
SafeBootNet: Boot file system - Driver Group
SafeBootNet: File system - Driver Group
SafeBootNet: Filter - Driver Group
SafeBootNet: HelpSvc - Service
SafeBootNet: Messenger - Service
SafeBootNet: NDIS Wrapper - Driver Group
SafeBootNet: NetBIOSGroup - Driver Group
SafeBootNet: NetDDEGroup - Driver Group
SafeBootNet: Network - Driver Group
SafeBootNet: NetworkProvider - Driver Group
SafeBootNet: NTDS - File not found
SafeBootNet: PCI Configuration - Driver Group
SafeBootNet: PNP Filter - Driver Group
SafeBootNet: PNP_TDI - Driver Group
SafeBootNet: Primary disk - Driver Group
SafeBootNet: rdsessmgr - Service
SafeBootNet: sacsvr - Service
SafeBootNet: SCSI Class - Driver Group
SafeBootNet: Streams Drivers - Driver Group
SafeBootNet: SymEFA.sys - C:\\Windows\\system32\\drivers\\NIS\\1007020.00B\\SYMEFA.SYS (Symantec Corporation)
SafeBootNet: System Bus Extender - Driver Group
SafeBootNet: TDI - Driver Group
SafeBootNet: WinDefend - C:\\Program Files\\Windows Defender\\MpSvc.dll (Microsoft Corporation)
SafeBootNet: {36FC9E60-C465-11CF-8056-444553540000} - Universal Serial Bus controllers
SafeBootNet: {4D36E965-E325-11CE-BFC1-08002BE10318} - CD-ROM Drive
SafeBootNet: {4D36E967-E325-11CE-BFC1-08002BE10318} - DiskDrive
SafeBootNet: {4D36E969-E325-11CE-BFC1-08002BE10318} - Standard floppy disk controller
SafeBootNet: {4D36E96A-E325-11CE-BFC1-08002BE10318} - Hdc
SafeBootNet: {4D36E96B-E325-11CE-BFC1-08002BE10318} - Keyboard
SafeBootNet: {4D36E96F-E325-11CE-BFC1-08002BE10318} - Mouse
SafeBootNet: {4D36E972-E325-11CE-BFC1-08002BE10318} - Net
SafeBootNet: {4D36E973-E325-11CE-BFC1-08002BE10318} - NetClient
SafeBootNet: {4D36E974-E325-11CE-BFC1-08002BE10318} - NetService
SafeBootNet: {4D36E975-E325-11CE-BFC1-08002BE10318} - NetTrans
SafeBootNet: {4D36E977-E325-11CE-BFC1-08002BE10318} - PCMCIA Adapters
SafeBootNet: {4D36E97B-E325-11CE-BFC1-08002BE10318} - SCSIAdapter
SafeBootNet: {4D36E97D-E325-11CE-BFC1-08002BE10318} - System
SafeBootNet: {4D36E980-E325-11CE-BFC1-08002BE10318} - Floppy disk drive
SafeBootNet: {50DD5230-BA8A-11D1-BF5D-0000F805F530} - Smart card readers
SafeBootNet: {533C5B84-EC70-11D2-9505-00C04F79DEAF} - Volume shadow copy
SafeBootNet: {6BDD1FC1-810F-11D0-BEC7-08002BE2092F} - IEEE 1394 Bus host controllers
SafeBootNet: {71A27CDD-812A-11D0-BEC7-08002BE2092F} - Volume
SafeBootNet: {745A17A0-74D3-11D0-B6FE-00A0C90F57DA} - Human Interface Devices
SafeBootNet: {D48179BE-EC20-11D1-B6B8-00C04FA372A7} - SBP2 IEEE 1394 Devices
SafeBootNet: {D94EE5D8-D189-4994-83D2-F68D7D41B0E6} - SecurityDevices
[color=#E56717]========== Files/Folders - Created Within 30 Days ==========[/color]
[2009-12-06 17:26:45 | 00,000,000 | ---D | C] -- C:\\Program Files\\Trend Micro
[2009-12-06 17:26:03 | 00,812,344 | ---- | C] (Trend Micro Inc.) -- C:\\Users\\weronika\\Desktop\\HJTInstall.exe
[2009-12-04 22:45:22 | 00,000,000 | ---D | C] -- C:\\Users\\weronika\\AppData\\Local\\Textual Content Provider
[2009-12-04 22:45:06 | 00,000,000 | ---D | C] -- C:\\Program Files\\QuestService
[2009-12-04 22:44:49 | 00,000,000 | ---D | C] -- C:\\Program Files\\Textual Content Provider
[2009-12-04 22:44:36 | 00,000,000 | ---D | C] -- C:\\Program Files\\Content Management Wizard
[2009-12-04 22:44:17 | 00,000,000 | ---D | C] -- C:\\Users\\weronika\\AppData\\Local\\Internet Today
[2009-12-04 22:44:17 | 00,000,000 | ---D | C] -- C:\\Program Files\\Internet Today
[2009-12-04 22:43:53 | 00,000,000 | ---D | C] -- C:\\Program Files\\Customized Platform Advancer
[2009-12-04 22:43:39 | 00,000,000 | ---D | C] -- C:\\Program Files\\Automated Content Enhancer
[2009-12-04 22:43:28 | 00,000,000 | ---D | C] -- C:\\Users\\weronika\\AppData\\Local\\Web Search Operator
[2009-12-04 22:43:27 | 00,000,000 | ---D | C] -- C:\\Program Files\\Web Search Operator
[2009-12-04 22:43:03 | 00,000,000 | ---D | C] -- C:\\Program Files\\Gameztar Toolbar
[2009-12-04 22:42:49 | 00,000,000 | -H-D | C] -- C:\\ProgramData\\{BD3B18D5-71F9-496D-96D1-6FF9D99F2130}
[2009-11-26 08:31:23 | 00,002,048 | ---- | C] (Microsoft Corporation) -- C:\\Windows\\System32\\tzres.dll
[2009-11-25 11:00:19 | 00,714,240 | ---- | C] (Microsoft Corporation) -- C:\\Windows\\System32\\timedate.cpl
[2009-11-11 20:43:22 | 02,035,712 | ---- | C] (Microsoft Corporation) -- C:\\Windows\\System32\\win32k.sys
[2009-11-11 20:42:49 | 00,351,232 | ---- | C] (Microsoft Corporation) -- C:\\Windows\\System32\\WSDApi.dll
[2008-11-03 08:03:27 | 00,013,880 | ---- | C] ( ) -- C:\\Windows\\System32\\drivers\\kbfiltr.sys
[color=#E56717]========== Files - Modified Within 30 Days ==========[/color]
[2009-12-06 19:47:46 | 01,048,576 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT
[2009-12-06 18:05:43 | 01,468,980 | ---- | M] () -- C:\\Windows\\System32\\PerfStringBackup.INI
[2009-12-06 18:05:43 | 00,662,056 | ---- | M] () -- C:\\Windows\\System32\\perfh015.dat
[2009-12-06 18:05:43 | 00,587,178 | ---- | M] () -- C:\\Windows\\System32\\perfh009.dat
[2009-12-06 18:05:43 | 00,126,908 | ---- | M] () -- C:\\Windows\\System32\\perfc015.dat
[2009-12-06 18:05:43 | 00,101,250 | ---- | M] () -- C:\\Windows\\System32\\perfc009.dat
[2009-12-06 18:02:12 | 00,048,924 | ---- | M] () -- C:\\ProgramData\\nvModes.001
[2009-12-06 18:01:46 | 00,048,924 | ---- | M] () -- C:\\ProgramData\\nvModes.dat
[2009-12-06 18:00:25 | 00,003,616 | -H-- | M] () -- C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-1.C7483456-A289-439d-8115-601632D005A0
[2009-12-06 18:00:25 | 00,003,616 | -H-- | M] () -- C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-0.C7483456-A289-439d-8115-601632D005A0
[2009-12-06 18:00:24 | 00,000,006 | -H-- | M] () -- C:\\Windows\\tasks\\SA.DAT
[2009-12-06 18:00:18 | 00,067,584 | --S- | M] () -- C:\\Windows\\bootstat.dat
[2009-12-06 18:00:15 | 37,572,44416 | -HS- | M] () -- C:\\hiberfil.sys
[2009-12-06 17:59:36 | 00,524,288 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT{d8932e6d-6a6f-11db-b6ab-a038f15a5785}.TMContainer00000000000000000001.regtrans-ms
[2009-12-06 17:59:36 | 00,065,536 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT{d8932e6d-6a6f-11db-b6ab-a038f15a5785}.TM.blf
[2009-12-06 17:59:10 | 02,254,032 | -H-- | M] () -- C:\\Users\\weronika\\AppData\\Local\\IconCache.db
[2009-12-06 17:26:46 | 00,001,881 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\HijackThis.lnk
[2009-12-02 11:44:54 | 00,812,344 | ---- | M] (Trend Micro Inc.) -- C:\\Users\\weronika\\Desktop\\HJTInstall.exe
[2009-11-29 21:25:14 | 00,045,056 | ---- | M] () -- C:\\Windows\\System32\\acovcnt.exe
[2009-11-28 18:14:04 | 00,033,422 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\ro od cp 2.jpg
[2009-11-28 17:36:46 | 00,034,657 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\ro od cp.jpg
[2009-11-12 11:40:48 | 00,373,184 | ---- | M] () -- C:\\Windows\\System32\\FNTCACHE.DAT
[color=#E56717]========== Files Created - No Company Name ==========[/color]
[2009-12-06 17:26:46 | 00,001,881 | ---- | C] () -- C:\\Users\\weronika\\Desktop\\HijackThis.lnk
[2009-11-29 22:59:44 | 00,034,657 | ---- | C] () -- C:\\Users\\weronika\\Desktop\\ro od cp.jpg
[2009-11-29 22:59:43 | 00,033,422 | ---- | C] () -- C:\\Users\\weronika\\Desktop\\ro od cp 2.jpg
[2009-10-09 13:38:44 | 03,596,288 | ---- | C] () -- C:\\Windows\\System32\\qt-dx331.dll
[2009-10-09 13:38:44 | 00,617,984 | ---- | C] () -- C:\\Windows\\System32\\xvidcore.dll
[2009-10-09 13:38:44 | 00,178,688 | ---- | C] () -- C:\\Windows\\System32\\xvidvfw.dll
[2009-10-03 21:38:39 | 00,000,024 | ---- | C] () -- C:\\Windows\\ATKPF.ini
[2009-06-30 07:52:43 | 00,233,128 | ---- | C] () -- C:\\Windows\\System32\\drivers\\SRS_PremiumSound_i386.sys
[2009-06-30 07:44:46 | 00,048,924 | ---- | C] () -- C:\\ProgramData\\nvModes.001
[2009-06-30 07:44:30 | 00,048,924 | ---- | C] () -- C:\\ProgramData\\nvModes.dat
[2008-08-11 03:14:11 | 01,752,704 | ---- | C] () -- C:\\Windows\\System32\\drivers\\snp2uvc.sys
[2008-05-12 04:20:31 | 00,028,672 | ---- | C] () -- C:\\Windows\\System32\\drivers\\sncduvc.sys
[2008-04-17 21:06:52 | 00,000,010 | ---- | C] () -- C:\\Windows\\System32\\ABLKSR.ini
[2006-11-02 08:40:29 | 00,013,750 | ---- | C] () -- C:\\Windows\\System32\\pacerprf.ini
[color=#E56717]========== Custom Scans ==========[/color]
[color=#A23BEC]< %systemdrive%\\*.* >[/color]
[2006-12-30 00:22:36 | 00,000,007 | ---- | M] () -- C:\\AF21.txt
[2009-03-12 03:11:47 | 00,000,023 | ---- | M] () -- C:\\app3.LOG
[2006-09-18 22:43:36 | 00,000,024 | ---- | M] () -- C:\\autoexec.bat
[2008-01-21 03:34:29 | 00,333,203 | RHS- | M] () -- C:\\bootmgr
[2008-04-17 10:48:23 | 00,008,192 | R-S- | M] () -- C:\\BOOTSECT.BAK
[2006-09-18 22:43:37 | 00,000,010 | ---- | M] () -- C:\\config.sys
[2009-06-30 07:56:18 | 00,014,388 | ---- | M] () -- C:\\devlist.txt
[2009-05-15 07:17:37 | 00,000,041 | ---- | M] () -- C:\\DVD.LOG
[2009-06-29 18:38:54 | 00,000,912 | ---- | M] () -- C:\\faclog.txt
[2009-06-30 07:56:17 | 00,000,009 | ---- | M] () -- C:\\Finish.log
[2009-06-07 16:31:15 | 00,000,021 | ---- | M] () -- C:\\Fix.log
[2009-12-06 18:00:15 | 37,572,44416 | -HS- | M] () -- C:\\hiberfil.sys
[2009-06-30 07:27:00 | 00,000,481 | ---- | M] () -- C:\\igoogle_log.txt
[2009-06-30 07:53:03 | 19,922,944 | ---- | M] () -- C:\\inject.log
[2009-06-30 07:53:04 | 16,493,724 | ---- | M] () -- C:\\inject.log.txt
[2009-04-16 13:47:23 | 01,048,576 | RH-- | M] () -- C:\\K40IN.BIN
[2009-04-27 08:41:04 | 00,000,019 | ---- | M] () -- C:\\K50IN_VISTA.10
[2008-08-08 08:22:19 | 00,000,030 | ---- | M] () -- C:\\NERO.LOG
[2009-01-07 10:16:08 | 00,000,030 | ---- | M] () -- C:\\NIS2009.TXT
[2007-03-16 00:18:45 | 00,000,025 | ---- | M] () -- C:\\OFFICE2007_F.TXT
[2009-12-06 18:00:14 | 40,708,99712 | -HS- | M] () -- C:\\pagefile.sys
[2009-06-29 18:39:16 | 00,000,105 | ---- | M] () -- C:\\Pass.txt
[2009-06-04 09:00:23 | 00,003,412 | ---- | M] () -- C:\\Patch.LOG
[2009-01-16 03:14:05 | 00,000,017 | ---- | M] () -- C:\\READER_F.TXT
[2009-04-27 08:41:04 | 00,000,007 | ---- | M] () -- C:\\RECOVERY.DAT
[2009-06-30 07:42:03 | 00,002,650 | ---- | M] () -- C:\\RHDSetup.log
[2009-06-30 07:51:31 | 00,000,090 | ---- | M] () -- C:\\setup.log
[2006-05-14 17:22:24 | 00,000,005 | ---- | M] () -- C:\\store.log
[2009-06-30 07:09:58 | 00,000,170 | ---- | M] () -- C:\\SumHidd.txt
[2009-06-30 07:09:14 | 00,000,098 | ---- | M] () -- C:\\SumOS.txt
[2009-06-02 12:11:40 | 00,000,024 | ---- | M] () -- C:\\v55.txt
[2009-02-09 06:31:15 | 00,000,043 | ---- | M] () -- C:\\WindowsLive_F.TXT
< End of report >
[2009-12-06 19:47:46 | 01,048,576 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT
[2009-12-06 19:47:44 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Temp
[2009-12-06 18:05:43 | 01,468,980 | ---- | M] () -- C:\\Windows\\System32\\PerfStringBackup.INI
[2009-12-06 18:05:43 | 00,662,056 | ---- | M] () -- C:\\Windows\\System32\\perfh015.dat
[2009-12-06 18:05:43 | 00,587,178 | ---- | M] () -- C:\\Windows\\System32\\perfh009.dat
[2009-12-06 18:05:43 | 00,126,908 | ---- | M] () -- C:\\Windows\\System32\\perfc015.dat
[2009-12-06 18:05:43 | 00,101,250 | ---- | M] () -- C:\\Windows\\System32\\perfc009.dat
[2009-12-06 18:02:12 | 00,048,924 | ---- | M] () -- C:\\ProgramData\\nvModes.001
[2009-12-06 18:01:46 | 00,048,924 | ---- | M] () -- C:\\ProgramData\\nvModes.dat
[2009-12-06 18:00:24 | 00,000,006 | -H-- | M] () -- C:\\Windows\\tasks\\SA.DAT
[2009-12-06 18:00:18 | 00,067,584 | --S- | M] () -- C:\\Windows\\bootstat.dat
[2009-12-06 17:59:36 | 00,524,288 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT{d8932e6d-6a6f-11db-b6ab-a038f15a5785}.TMContainer00000000000000000001.regtrans-ms
[2009-12-06 17:59:36 | 00,065,536 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT{d8932e6d-6a6f-11db-b6ab-a038f15a5785}.TM.blf
[2009-12-06 17:59:10 | 02,254,032 | -H-- | M] () -- C:\\Users\\weronika\\AppData\\Local\\IconCache.db
[2009-12-06 17:42:41 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\VirtualStore
[2009-12-06 17:26:46 | 00,001,881 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\HijackThis.lnk
[2009-12-06 17:26:45 | 00,000,000 | ---D | M] -- C:\\Program Files\\Trend Micro
[2009-12-05 01:09:25 | 00,000,000 | ---D | M] -- C:\\Program Files\\Google
[2009-12-05 01:09:24 | 00,000,000 | ---D | M] -- C:\\Program Files\\QuestService
[2009-12-04 23:33:32 | 00,000,000 | ---D | M] -- C:\\Program Files\\Common Files\\PX Storage Engine
[2009-12-04 23:33:32 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Google
[2009-12-04 22:49:05 | 00,000,000 | ---D | M] -- C:\\Program Files\\Gameztar Toolbar
[2009-12-04 22:49:02 | 00,000,000 | -H-D | M] -- C:\\ProgramData\\{BD3B18D5-71F9-496D-96D1-6FF9D99F2130}
[2009-12-04 22:45:22 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Textual Content Provider
[2009-12-04 22:44:49 | 00,000,000 | ---D | M] -- C:\\Program Files\\Textual Content Provider
[2009-12-04 22:44:36 | 00,000,000 | ---D | M] -- C:\\Program Files\\Content Management Wizard
[2009-12-04 22:44:17 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Internet Today
[2009-12-04 22:44:17 | 00,000,000 | ---D | M] -- C:\\Program Files\\Internet Today
[2009-12-04 22:43:53 | 00,000,000 | ---D | M] -- C:\\Program Files\\Customized Platform Advancer
[2009-12-04 22:43:39 | 00,000,000 | ---D | M] -- C:\\Program Files\\Automated Content Enhancer
[2009-12-04 22:43:28 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Web Search Operator
[2009-12-04 22:43:27 | 00,000,000 | ---D | M] -- C:\\Program Files\\Web Search Operator
[2009-12-02 19:21:09 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Microsoft
[2009-12-02 11:44:54 | 00,812,344 | ---- | M] (Trend Micro Inc.) -- C:\\Users\\weronika\\Desktop\\HJTInstall.exe
[2009-11-28 18:14:04 | 00,033,422 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\ro od cp 2.jpg
[2009-11-28 17:36:46 | 00,034,657 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\ro od cp.jpg
[2009-11-16 22:06:19 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Local\\Microsoft Games
[2009-11-12 11:40:48 | 00,373,184 | ---- | M] () -- C:\\Windows\\System32\\FNTCACHE.DAT
[2009-11-12 11:39:23 | 00,000,000 | ---D | M] -- C:\\Program Files\\Windows Mail
[2009-11-12 10:52:07 | 00,000,000 | ---D | M] -- C:\\ProgramData\\Microsoft Help
[2009-11-11 14:30:15 | 00,000,000 | ---D | M] -- C:\\Users\\weronika\\AppData\\Roaming\\Nowe Gadu-Gadu
[2009-11-10 22:22:22 | 00,000,000 | ---D | M] -- C:\\Program Files\\Mozilla Firefox
[2009-10-03 15:24:57 | 00,099,864 | ---- | M] () -- C:\\Users\\weronika\\AppData\\Local\\GDIPFONTCACHEV1.DAT
[2008-01-21 03:57:01 | 00,000,174 | -HS- | M] () -- C:\\Program Files\\desktop.ini
[2006-11-02 13:35:34 | 00,030,808 | ---- | M] () -- C:\\Windows\\Fonts\\GlobalUserInterface.CompositeFont
[2006-11-02 13:35:34 | 00,029,779 | ---- | M] () -- C:\\Windows\\Fonts\\GlobalSerif.CompositeFont
[2006-11-02 13:35:34 | 00,026,489 | ---- | M] () -- C:\\Windows\\Fonts\\GlobalSansSerif.CompositeFont
[2006-11-02 13:35:34 | 00,026,040 | ---- | M] () -- C:\\Windows\\Fonts\\GlobalMonospace.CompositeFont
[color=#E56717]========== Files - Modified Within 30 Days ==========[/color]
[2009-12-06 19:53:12 | 01,048,576 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT
[2009-12-06 18:05:43 | 01,468,980 | ---- | M] () -- C:\\Windows\\System32\\PerfStringBackup.INI
[2009-12-06 18:05:43 | 00,662,056 | ---- | M] () -- C:\\Windows\\System32\\perfh015.dat
[2009-12-06 18:05:43 | 00,587,178 | ---- | M] () -- C:\\Windows\\System32\\perfh009.dat
[2009-12-06 18:05:43 | 00,126,908 | ---- | M] () -- C:\\Windows\\System32\\perfc015.dat
[2009-12-06 18:05:43 | 00,101,250 | ---- | M] () -- C:\\Windows\\System32\\perfc009.dat
[2009-12-06 18:02:12 | 00,048,924 | ---- | M] () -- C:\\ProgramData\\nvModes.001
[2009-12-06 18:01:46 | 00,048,924 | ---- | M] () -- C:\\ProgramData\\nvModes.dat
[2009-12-06 18:00:25 | 00,003,616 | -H-- | M] () -- C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-1.C7483456-A289-439d-8115-601632D005A0
[2009-12-06 18:00:25 | 00,003,616 | -H-- | M] () -- C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-0.C7483456-A289-439d-8115-601632D005A0
[2009-12-06 18:00:24 | 00,000,006 | -H-- | M] () -- C:\\Windows\\tasks\\SA.DAT
[2009-12-06 18:00:18 | 00,067,584 | --S- | M] () -- C:\\Windows\\bootstat.dat
[2009-12-06 18:00:15 | 37,572,44416 | -HS- | M] () -- C:\\hiberfil.sys
[2009-12-06 17:59:36 | 00,524,288 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT{d8932e6d-6a6f-11db-b6ab-a038f15a5785}.TMContainer00000000000000000001.regtrans-ms
[2009-12-06 17:59:36 | 00,065,536 | -HS- | M] () -- C:\\Users\\weronika\\NTUSER.DAT{d8932e6d-6a6f-11db-b6ab-a038f15a5785}.TM.blf
[2009-12-06 17:59:10 | 02,254,032 | -H-- | M] () -- C:\\Users\\weronika\\AppData\\Local\\IconCache.db
[2009-12-06 17:26:46 | 00,001,881 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\HijackThis.lnk
[2009-12-02 11:44:54 | 00,812,344 | ---- | M] (Trend Micro Inc.) -- C:\\Users\\weronika\\Desktop\\HJTInstall.exe
[2009-11-29 21:25:14 | 00,045,056 | ---- | M] () -- C:\\Windows\\System32\\acovcnt.exe
[2009-11-28 18:14:04 | 00,033,422 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\ro od cp 2.jpg
[2009-11-28 17:36:46 | 00,034,657 | ---- | M] () -- C:\\Users\\weronika\\Desktop\\ro od cp.jpg
[2009-11-12 11:40:48 | 00,373,184 | ---- | M] () -- C:\\Windows\\System32\\FNTCACHE.DAT
[color=#E56717]========== Custom Scans ==========[/color]
[color=#A23BEC]< %systemdrive%\\*.* >[/color]
[2006-12-30 00:22:36 | 00,000,007 | ---- | M] () -- C:\\AF21.txt
[2009-03-12 03:11:47 | 00,000,023 | ---- | M] () -- C:\\app3.LOG
[2006-09-18 22:43:36 | 00,000,024 | ---- | M] () -- C:\\autoexec.bat
[2008-01-21 03:34:29 | 00,333,203 | RHS- | M] () -- C:\\bootmgr
[2008-04-17 10:48:23 | 00,008,192 | R-S- | M] () -- C:\\BOOTSECT.BAK
[2006-09-18 22:43:37 | 00,000,010 | ---- | M] () -- C:\\config.sys
[2009-06-30 07:56:18 | 00,014,388 | ---- | M] () -- C:\\devlist.txt
[2009-05-15 07:17:37 | 00,000,041 | ---- | M] () -- C:\\DVD.LOG
[2009-06-29 18:38:54 | 00,000,912 | ---- | M] () -- C:\\faclog.txt
[2009-06-30 07:56:17 | 00,000,009 | ---- | M] () -- C:\\Finish.log
[2009-06-07 16:31:15 | 00,000,021 | ---- | M] () -- C:\\Fix.log
[2009-12-06 18:00:15 | 37,572,44416 | -HS- | M] () -- C:\\hiberfil.sys
[2009-06-30 07:27:00 | 00,000,481 | ---- | M] () -- C:\\igoogle_log.txt
[2009-06-30 07:53:03 | 19,922,944 | ---- | M] () -- C:\\inject.log
[2009-06-30 07:53:04 | 16,493,724 | ---- | M] () -- C:\\inject.log.txt
[2009-04-16 13:47:23 | 01,048,576 | RH-- | M] () -- C:\\K40IN.BIN
[2009-04-27 08:41:04 | 00,000,019 | ---- | M] () -- C:\\K50IN_VISTA.10
[2008-08-08 08:22:19 | 00,000,030 | ---- | M] () -- C:\\NERO.LOG
[2009-01-07 10:16:08 | 00,000,030 | ---- | M] () -- C:\\NIS2009.TXT
[2007-03-16 00:18:45 | 00,000,025 | ---- | M] () -- C:\\OFFICE2007_F.TXT
[2009-12-06 18:00:14 | 40,708,99712 | -HS- | M] () -- C:\\pagefile.sys
[2009-06-29 18:39:16 | 00,000,105 | ---- | M] () -- C:\\Pass.txt
[2009-06-04 09:00:23 | 00,003,412 | ---- | M] () -- C:\\Patch.LOG
[2009-01-16 03:14:05 | 00,000,017 | ---- | M] () -- C:\\READER_F.TXT
[2009-04-27 08:41:04 | 00,000,007 | ---- | M] () -- C:\\RECOVERY.DAT
[2009-06-30 07:42:03 | 00,002,650 | ---- | M] () -- C:\\RHDSetup.log
[2009-06-30 07:51:31 | 00,000,090 | ---- | M] () -- C:\\setup.log
[2006-05-14 17:22:24 | 00,000,005 | ---- | M] () -- C:\\store.log
[2009-06-30 07:09:58 | 00,000,170 | ---- | M] () -- C:\\SumHidd.txt
[2009-06-30 07:09:14 | 00,000,098 | ---- | M] () -- C:\\SumOS.txt
[2009-06-02 12:11:40 | 00,000,024 | ---- | M] () -- C:\\v55.txt
[2009-02-09 06:31:15 | 00,000,043 | ---- | M] () -- C:\\WindowsLive_F.TXT
< End of report >
|