1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
427.
428.
429.
430.
431.
432.
433.
434.
435.
436.
437.
438.
439.
440.
441.
442.
443.
444.
445.
446.
447.
448.
449.
450.
451.
452.
453.
454.
455.
456.
457.
458.
459.
460.
461.
462.
463.
464.
465.
466.
467.
468.
469.
470.
471.
472.
473.
474.
475.
476.
477.
478.
479.
480.
481.
482.
483.
484.
485.
486.
487.
488.
489.
490.
491.
492.
493.
494.
495.
496.
497.
498.
499.
500.
501.
502.
503.
504.
505.
506.
507.
508.
509.
510.
511.
512.
513.
514.
515.
516.
517.
518.
519.
520.
521.
522.
523.
524.
525.
526.
527.
528.
529.
530.
531.
532.
533.
534.
535.
536.
537.
538.
539.
540.
541.
542.
543.
544.
545.
546.
547.
548.
549.
550.
551.
552.
553.
554.
555.
556.
557.
558.
559.
560.
561.
562.
563.
564.
565.
566.
567.
568.
569.
570.
571.
572.
573.
574.
575.
576.
577.
578.
579.
580.
581.
582.
583.
584.
585.
586.
587.
588.
589.
590.
591.
592.
593.
594.
595.
596.
597.
598.
599.
600.
601.
602.
603.
604.
605.
606.
607.
608.
609.
610.
611.
612.
613.
614.
615.
616.
617.
618.
619.
620.
621.
622.
623.
624.
625.
626.
627.
628.
629.
630.
631.
632.
633.
634.
635.
636.
637.
638.
639.
640.
641.
642.
643.
644.
645.
646.
647.
648.
649.
650.
651.
652.
653.
654.
655.
656.
657.
658.
659.
660.
661.
662.
663.
664.
665.
666.
667.
668.
669.
670.
671.
672.
673.
674.
675.
676.
677.
678.
679.
680.
681.
682.
683.
684.
685.
686.
687.
688.
689.
690.
691.
692.
693.
694.
695.
696.
697.
698.
699.
700.
701.
702.
703.
704.
705.
706.
707.
708.
709.
710.
711.
712.
713.
714.
715.
716.
717.
718.
719.
720.
721.
722.
723.
724.
725.
726.
727.
728.
729.
730.
731.
732.
733.
734.
735.
736.
737.
738.
739.
740.
741.
742.
743.
744.
745.
746.
747.
748.
749.
750.
751.
752.
753.
754.
755.
756.
757.
758.
759.
760.
761.
762.
763.
764.
765.
766.
767.
768.
769.
770.
771.
772.
773.
774.
775.
776.
777.
778.
779.
780.
781.
782.
783.
784.
785.
786.
787.
788.
789.
790.
791.
792.
793.
794.
795.
796.
797.
798.
799.
800.
801.
802.
803.
804.
805.
806.
807.
808.
809.
810.
811.
812.
813.
814.
815.
816.
817.
818.
819.
820.
821.
822.
823.
824.
825.
826.
827.
828.
829.
830.
831.
832.
833.
834.
835.
836.
837.
838.
839.
840.
841.
842.
843.
844.
845.
846.
847.
848.
849.
850.
851.
852.
853.
854.
855.
856.
857.
858.
859.
860.
861.
862.
863.
864.
865.
866.
867.
868.
869.
870.
871.
872.
873.
874.
875.
876.
877.
878.
879.
880.
881.
882.
883.
884.
885.
886.
887.
888.
889.
890.
891.
892.
893.
894.
895.
896.
897.
898.
899.
900.
901.
902.
903.
904.
905.
906.
907.
908.
909.
910.
911.
912.
913.
914.
915.
916.
917.
918.
919.
920.
921.
922.
923.
924.
925.
926.
927.
928.
929.
930.
931.
932.
933.
934.
935.
936.
937.
938.
939.
940.
941.
942.
943.
944.
945.
946.
947.
948.
949.
950.
951.
952.
953.
954.
955.
956.
957.
958.
959.
960.
961.
962.
963.
964.
965.
966.
967.
968.
969.
970.
971.
972.
973.
974.
975.
976.
977.
978.
979.
980.
981.
982.
983.
984.
985.
986.
987.
988.
989.
990.
991.
992.
993.
994.
995.
996.
997.
998.
999.
1000.
1001.
1002.
1003.
1004.
1005.
1006.
1007.
1008.
1009.
1010.
1011.
1012.
1013.
1014.
1015.
1016.
1017.
1018.
1019.
1020.
1021.
1022.
1023.
1024.
1025.
1026.
1027.
1028.
1029.
1030.
1031.
1032.
1033.
1034.
1035.
1036.
1037.
1038.
1039.
1040.
1041.
1042.
1043.
1044.
1045.
1046.
1047.
1048.
1049.
1050.
1051.
1052.
1053.
1054.
1055.
1056.
1057.
1058.
1059.
1060.
1061.
1062.
1063.
1064.
1065.
1066.
1067.
1068.
1069.
1070.
1071.
1072.
1073.
1074.
1075.
1076.
1077.
1078.
1079.
1080.
1081.
1082.
1083.
1084.
1085.
1086.
1087.
1088.
1089.
1090.
1091.
1092.
1093.
1094.
1095.
1096.
1097.
1098.
1099.
1100.
1101.
1102.
1103.
1104.
1105.
1106.
1107.
1108.
1109.
1110.
1111.
1112.
1113.
1114.
1115.
1116.
1117.
1118.
1119.
1120.
1121.
1122.
1123.
1124.
1125.
1126.
1127.
1128.
1129.
1130.
1131.
1132.
1133.
1134.
1135.
1136.
1137.
1138.
1139.
1140.
1141.
1142.
1143.
1144.
1145.
1146.
1147.
1148.
1149.
1150.
1151.
1152.
1153.
1154.
1155.
1156.
1157.
1158.
1159.
1160.
1161.
1162.
1163.
1164.
1165.
1166.
1167.
1168.
1169.
1170.
1171.
1172.
1173.
1174.
1175.
1176.
1177.
1178.
1179.
1180.
1181.
1182.
1183.
1184.
1185.
1186.
1187.
1188.
1189.
1190.
1191.
1192.
1193.
1194.
1195.
1196.
1197.
1198.
1199.
1200.
1201.
1202.
1203.
1204.
1205.
1206.
1207.
1208.
1209.
1210.
1211.
1212.
1213.
1214.
1215.
1216.
1217.
1218.
1219.
1220.
1221.
1222.
1223.
1224.
1225.
1226.
1227.
1228.
1229.
1230.
1231.
1232.
1233.
1234.
1235.
1236.
1237.
1238.
1239.
1240.
1241.
1242.
1243.
1244.
1245.
1246.
1247.
1248.
1249.
1250.
1251.
1252.
1253.
1254.
1255.
1256.
1257.
1258.
1259.
1260.
1261.
1262.
1263.
1264.
1265.
1266.
1267.
1268.
1269.
1270.
1271.
1272.
1273.
1274.
1275.
1276.
1277.
1278.
1279.
1280.
1281.
1282.
1283.
1284.
1285.
1286.
1287.
1288.
1289.
1290.
1291.
1292.
1293.
1294.
1295.
1296.
1297.
1298.
1299.
1300.
1301.
1302.
1303.
1304.
1305.
1306.
1307.
1308.
1309.
1310.
1311.
1312.
1313.
1314.
1315.
1316.
1317.
1318.
1319.
1320.
1321.
1322.
1323.
1324.
1325.
1326.
1327.
1328.
1329.
1330.
1331.
1332.
1333.
1334.
1335.
1336.
1337.
1338.
1339.
1340.
1341.
1342.
1343.
1344.
1345.
1346.
1347.
1348.
1349.
1350.
1351.
1352.
1353.
1354.
1355.
1356.
1357.
1358.
1359.
1360.
1361.
1362.
1363.
1364.
1365.
1366.
1367.
1368.
1369.
1370.
1371.
1372.
1373.
1374.
1375.
1376.
1377.
1378.
1379.
1380.
1381.
1382.
1383.
1384.
1385.
1386.
1387.
1388.
1389.
1390.
1391.
1392.
1393.
1394.
1395.
1396.
1397.
1398.
1399.
1400.
1401.
1402.
1403.
1404.
1405.
1406.
1407.
1408.
1409.
1410.
1411.
1412.
1413.
1414.
1415.
1416.
1417.
1418.
1419.
1420.
1421.
1422.
1423.
1424.
1425.
1426.
1427.
1428.
1429.
1430.
1431.
1432.
1433.
1434.
1435.
1436.
1437.
1438.
1439.
1440.
1441.
1442.
1443.
1444.
1445.
1446.
1447.
1448.
1449.
1450.
1451.
1452.
1453.
1454.
1455.
1456.
1457.
1458.
1459.
1460.
1461.
1462.
1463.
1464.
1465.
1466.
1467.
1468.
1469.
1470.
1471.
1472.
1473.
1474.
1475.
1476.
1477.
1478.
1479.
1480.
1481.
1482.
1483.
1484.
1485.
1486.
1487.
1488.
1489.
1490.
1491.
1492.
1493.
1494.
1495.
1496.
1497.
1498.
1499.
1500.
1501.
1502.
1503.
1504.
1505.
1506.
1507.
1508.
1509.
1510.
1511.
1512.
1513.
1514.
1515.
1516.
1517.
1518.
1519.
1520.
1521.
1522.
1523.
1524.
1525.
1526.
1527.
1528.
1529.
1530.
1531.
1532.
1533.
1534.
1535.
1536.
1537.
1538.
1539.
1540.
1541.
1542.
1543.
1544.
1545.
1546.
1547.
1548.
1549.
1550.
1551.
1552.
1553.
1554.
1555.
1556.
1557.
1558.
1559.
1560.
1561.
1562.
1563.
1564.
1565.
1566.
1567.
1568.
1569.
1570.
1571.
1572.
1573.
1574.
1575.
1576.
1577.
1578.
1579.
1580.
1581.
1582.
1583.
1584.
1585.
1586.
1587.
1588.
1589.
1590.
1591.
1592.
1593.
1594.
1595.
1596.
1597.
1598.
1599.
1600.
1601.
1602.
1603.
1604.
1605.
1606.
1607.
1608.
1609.
1610.
1611.
1612.
1613.
1614.
1615.
1616.
1617.
1618.
1619.
1620.
1621.
1622.
1623.
1624.
1625.
1626.
1627.
1628.
1629.
1630.
1631.
1632.
1633.
1634.
1635.
1636.
1637.
1638.
1639.
1640.
1641.
1642.
1643.
1644.
1645.
1646.
1647.
1648.
1649.
1650.
1651.
1652.
1653.
1654.
1655.
1656.
1657.
1658.
1659.
1660.
1661.
1662.
1663.
1664.
1665.
1666.
1667.
1668.
1669.
1670.
1671.
1672.
1673.
1674.
1675.
1676.
1677.
1678.
1679.
1680.
1681.
1682.
1683.
1684.
1685.
1686.
1687.
1688.
1689.
1690.
1691.
1692.
1693.
1694.
1695.
1696.
1697.
1698.
1699.
1700.
1701.
1702.
1703.
1704.
1705.
1706.
1707.
1708.
1709.
1710.
1711.
1712.
1713.
1714.
1715.
1716.
1717.
1718.
1719.
1720.
1721.
1722.
1723.
1724.
1725.
1726.
1727.
1728.
1729.
1730.
1731.
1732.
1733.
1734.
1735.
1736.
1737.
1738.
1739.
1740.
1741.
1742.
1743.
1744.
1745.
1746.
1747.
1748.
1749.
1750.
1751.
1752.
1753.
1754.
1755.
1756.
1757.
1758.
1759.
1760.
1761.
1762.
1763.
1764.
1765.
1766.
1767.
1768.
1769.
1770.
1771.
1772.
1773.
1774.
1775.
1776.
1777.
1778.
1779.
1780.
1781.
1782.
1783.
1784.
1785.
1786.
1787.
1788.
1789.
1790.
1791.
1792.
1793.
1794.
1795.
1796.
1797.
1798.
1799.
1800.
1801.
1802.
1803.
1804.
1805.
1806.
1807.
1808.
1809.
1810.
1811.
1812.
1813.
1814.
1815.
1816.
1817.
1818.
1819.
1820.
1821.
1822.
1823.
1824.
1825.
1826.
1827.
1828.
1829.
1830.
1831.
1832.
1833.
1834.
1835.
1836.
1837.
1838.
1839.
1840.
1841.
1842.
1843.
1844.
1845.
1846.
1847.
1848.
1849.
1850.
1851.
1852.
1853.
1854.
1855.
1856.
1857.
1858.
1859.
1860.
1861.
1862.
1863.
1864.
1865.
1866.
1867.
1868.
1869.
1870.
1871.
1872.
1873.
1874.
1875.
1876.
1877.
1878.
1879.
1880.
1881.
1882.
1883.
1884.
1885.
1886.
1887.
1888.
1889.
1890.
1891.
1892.
1893.
1894.
1895.
1896.
1897.
1898.
1899.
1900.
1901.
1902.
1903.
1904.
1905.
1906.
1907.
1908.
1909.
1910.
1911.
1912.
1913.
1914.
1915.
1916.
1917.
1918.
1919.
1920.
1921.
1922.
1923.
1924.
1925.
1926.
1927.
1928.
1929.
1930.
1931.
1932.
1933.
1934.
1935.
1936.
1937.
1938.
1939.
1940.
1941.
1942.
1943.
1944.
1945.
1946.
1947.
1948.
1949.
1950.
1951.
1952.
1953.
1954.
1955.
1956.
1957.
1958.
1959.
1960.
1961.
1962.
1963.
1964.
1965.
1966.
1967.
1968.
1969.
1970.
1971.
1972.
1973.
1974.
1975.
1976.
1977.
1978.
1979.
1980.
1981.
1982.
1983.
1984.
1985.
1986.
1987.
1988.
1989.
1990.
1991.
1992.
1993.
1994.
1995.
1996.
1997.
1998.
1999.
2000.
2001.
2002.
2003.
2004.
2005.
2006.
2007.
2008.
2009.
2010.
2011.
2012.
2013.
2014.
2015.
2016.
2017.
2018.
2019.
2020.
2021.
2022.
2023.
2024.
2025.
2026.
2027.
2028.
2029.
2030.
2031.
2032.
2033.
2034.
2035.
2036.
2037.
2038.
2039.
2040.
2041.
2042.
2043.
2044.
2045.
2046.
2047.
2048.
2049.
2050.
2051.
2052.
2053.
2054.
2055.
2056.
2057.
2058.
2059.
2060.
2061.
2062.
2063.
2064.
2065.
2066.
2067.
2068.
2069.
2070.
2071.
2072.
2073.
2074.
2075.
2076.
2077.
2078.
2079.
2080.
2081.
2082.
2083.
2084.
2085.
2086.
2087.
2088.
2089.
2090.
2091.
2092.
2093.
2094.
2095.
2096.
2097.
2098.
2099.
2100.
2101.
2102.
2103.
2104.
2105.
2106.
2107.
2108.
2109.
2110.
2111.
2112.
2113.
2114.
2115.
2116.
2117.
2118.
2119.
2120.
2121.
2122.
2123.
2124.
2125.
2126.
2127.
2128.
2129.
2130.
2131.
2132.
2133.
2134.
2135.
2136.
2137.
2138.
2139.
2140.
2141.
2142.
2143.
2144.
2145.
2146.
2147.
2148.
2149.
2150.
2151.
2152.
2153.
2154.
2155.
2156.
2157.
2158.
2159.
2160.
2161.
2162.
2163.
2164.
2165.
2166.
2167.
2168.
2169.
2170.
2171.
2172.
2173.
2174.
2175.
2176.
2177.
2178.
2179.
2180.
2181.
2182.
2183.
2184.
2185.
2186.
2187.
2188.
2189.
2190.
2191.
2192.
2193.
2194.
2195.
2196.
2197.
2198.
2199.
2200.
2201.
2202.
2203.
2204.
2205.
2206.
2207.
2208.
2209.
2210.
2211.
2212.
2213.
2214.
2215.
2216.
2217.
2218.
2219.
2220.
2221.
2222.
2223.
2224.
2225.
2226.
2227.
2228.
2229.
2230.
2231.
2232.
2233.
2234.
2235.
2236.
2237.
2238.
2239.
2240.
2241.
2242.
2243.
2244.
2245.
2246.
2247.
2248.
2249.
2250.
2251.
2252.
2253.
2254.
2255.
2256.
2257.
2258.
2259.
2260.
2261.
2262.
2263.
2264.
2265.
2266.
2267.
2268.
2269.
2270.
2271.
2272.
2273.
2274.
2275.
2276.
2277.
2278.
2279.
2280.
2281.
2282.
2283.
2284.
2285.
2286.
2287.
2288.
2289.
2290.
2291.
2292.
2293.
2294.
2295.
2296.
2297.
2298.
2299.
2300.
2301.
2302.
2303.
2304.
2305.
2306.
2307.
2308.
2309.
2310.
2311.
2312.
2313.
2314.
2315.
2316.
2317.
2318.
2319.
2320.
2321.
2322.
2323.
2324.
2325.
2326.
2327.
2328.
2329.
2330.
2331.
2332.
2333.
2334.
2335.
2336.
2337.
2338.
2339.
2340.
2341.
2342.
2343.
2344.
2345.
2346.
2347.
2348.
2349.
2350.
2351.
2352.
2353.
2354.
2355.
2356.
2357.
2358.
2359.
2360.
2361.
2362.
2363.
2364.
2365.
2366.
2367.
2368.
2369.
2370.
2371.
2372.
2373.
2374.
2375.
2376.
2377.
2378.
2379.
2380.
2381.
2382.
2383.
2384.
2385.
2386.
2387.
2388.
2389.
2390.
2391.
2392.
2393.
2394.
2395.
2396.
2397.
2398.
2399.
2400.
2401.
2402.
2403.
2404.
2405.
2406.
2407.
2408.
2409.
2410.
2411.
2412.
2413.
2414.
2415.
2416.
2417.
2418.
2419.
2420.
2421.
2422.
2423.
2424.
2425.
2426.
2427.
2428.
2429.
2430.
2431.
2432.
2433.
2434.
2435.
2436.
2437.
2438.
2439.
2440.
2441.
2442.
2443.
2444.
2445.
2446.
2447.
2448.
2449.
2450.
2451.
2452.
2453.
2454.
2455.
2456.
2457.
2458.
2459.
2460.
2461.
2462.
2463.
2464.
2465.
2466.
2467.
2468.
2469.
2470.
2471.
2472.
2473.
2474.
2475.
2476.
2477.
2478.
2479.
2480.
2481.
2482.
2483.
2484.
2485.
2486.
2487.
2488.
2489.
2490.
2491.
2492.
2493.
2494.
2495.
2496.
2497.
2498.
2499.
2500.
2501.
2502.
2503.
2504.
2505.
2506.
2507.
2508.
2509.
2510.
2511.
2512.
2513.
2514.
2515.
2516.
2517.
2518.
2519.
2520.
2521.
2522.
2523.
2524.
2525.
2526.
2527.
2528.
2529.
2530.
2531.
2532.
2533.
2534.
2535.
2536.
2537.
2538.
2539.
2540.
2541.
2542.
2543.
2544.
2545.
2546.
2547.
2548.
2549.
2550.
2551.
2552.
2553.
2554.
2555.
2556.
2557.
2558.
2559.
2560.
2561.
2562.
2563.
2564.
2565.
2566.
2567.
2568.
2569.
2570.
2571.
2572.
2573.
2574.
2575.
2576.
2577.
2578.
2579.
2580.
2581.
2582.
2583.
2584.
2585.
2586.
2587.
2588.
2589.
2590.
2591.
2592.
2593.
2594.
2595.
2596.
2597.
2598.
2599.
2600.
2601.
2602.
2603.
2604.
2605.
2606.
2607.
2608.
2609.
2610.
2611.
2612.
2613.
2614.
2615.
2616.
2617.
2618.
2619.
2620.
2621.
2622.
2623.
2624.
2625.
2626.
2627.
2628.
2629.
2630.
2631.
2632.
2633.
2634.
2635.
2636.
2637.
2638.
2639.
2640.
2641.
2642.
2643.
2644.
2645.
2646.
2647.
2648.
2649.
2650.
2651.
2652.
2653.
2654.
2655.
2656.
2657.
2658.
2659.
2660.
2661.
2662.
2663.
2664.
2665.
2666.
2667.
2668.
2669.
2670.
2671.
2672.
2673.
2674.
2675.
2676.
2677.
2678.
2679.
2680.
2681.
2682.
2683.
2684.
2685.
2686.
2687.
2688.
2689.
2690.
2691.
2692.
2693.
2694.
2695.
2696.
2697.
2698.
2699.
2700.
2701.
2702.
2703.
2704.
2705.
2706.
2707.
2708.
2709.
2710.
2711.
2712.
2713.
2714.
2715.
2716.
2717.
2718.
2719.
2720.
2721.
2722.
2723.
2724.
2725.
2726.
2727.
2728.
2729.
2730.
2731.
2732.
2733.
2734.
2735.
2736.
2737.
2738.
2739.
2740.
2741.
2742.
2743.
2744.
2745.
2746.
2747.
2748.
2749.
2750.
2751.
2752.
2753.
2754.
2755.
2756.
2757.
2758.
2759.
2760.
2761.
2762.
2763.
2764.
2765.
2766.
2767.
2768.
2769.
2770.
2771.
2772.
2773.
2774.
2775.
2776.
2777.
2778.
2779.
2780.
2781.
2782.
2783.
2784.
2785.
2786.
2787.
2788.
2789.
2790.
2791.
2792.
2793.
2794.
2795.
2796.
2797.
2798.
2799.
2800.
2801.
2802.
2803.
2804.
2805.
2806.
2807.
2808.
2809.
2810.
2811.
2812.
2813.
2814.
2815.
2816.
2817.
2818.
2819.
2820.
2821.
2822.
2823.
2824.
2825.
2826.
2827.
2828.
2829.
2830.
2831.
2832.
2833.
2834.
2835.
2836.
2837.
2838.
2839.
2840.
2841.
2842.
2843.
2844.
2845.
2846.
2847.
2848.
2849.
2850.
2851.
2852.
2853.
2854.
2855.
2856.
2857.
2858.
2859.
2860.
2861.
2862.
2863.
2864.
2865.
2866.
2867.
2868.
2869.
2870.
2871.
2872.
2873.
2874.
2875.
2876.
2877.
2878.
2879.
2880.
2881.
2882.
2883.
2884.
2885.
2886.
2887.
2888.
2889.
2890.
2891.
2892.
2893.
2894.
2895.
2896.
2897.
2898.
2899.
2900.
2901.
2902.
2903.
2904.
2905.
2906.
2907.
2908.
2909.
2910.
2911.
2912.
2913.
2914.
2915.
2916.
2917.
2918.
2919.
2920.
2921.
2922.
2923.
2924.
2925.
2926.
2927.
2928.
2929.
2930.
2931.
2932.
2933.
2934.
2935.
2936.
2937.
2938.
2939.
2940.
2941.
2942.
2943.
2944.
2945.
2946.
2947.
2948.
2949.
2950.
2951.
2952.
2953.
2954.
2955.
2956.
2957.
2958.
2959.
2960.
2961.
2962.
2963.
2964.
2965.
2966.
2967.
2968.
2969.
2970.
2971.
2972.
2973.
2974.
2975.
2976.
2977.
2978.
2979.
2980.
2981.
2982.
2983.
2984.
2985.
2986.
2987.
2988.
2989.
2990.
2991.
2992.
2993.
2994.
2995.
2996.
2997.
2998.
2999.
3000.
3001.
3002.
3003.
3004.
3005.
3006.
3007.
3008.
3009.
3010.
3011.
3012.
3013.
3014.
3015.
3016.
3017.
3018.
3019.
3020.
3021.
3022.
3023.
3024.
3025.
3026.
3027.
3028.
3029.
3030.
3031.
3032.
3033.
3034.
3035.
3036.
3037.
3038.
3039.
3040.
3041.
3042.
3043.
3044.
3045.
3046.
3047.
3048.
3049.
3050.
3051.
3052.
3053.
3054.
3055.
3056.
3057.
3058.
3059.
3060.
3061.
3062.
3063.
3064.
3065.
3066.
3067.
3068.
3069.
3070.
3071.
3072.
3073.
3074.
3075.
3076.
3077.
3078.
3079.
3080.
3081.
3082.
3083.
3084.
3085.
3086.
3087.
3088.
3089.
3090.
3091.
3092.
3093.
3094.
3095.
3096.
3097.
3098.
3099.
3100.
3101.
3102.
3103.
3104.
3105.
3106.
3107.
3108.
3109.
3110.
3111.
3112.
3113.
3114.
3115.
3116.
3117.
3118.
3119.
3120.
3121.
3122.
3123.
3124.
3125.
3126.
3127.
3128.
3129.
3130.
3131.
3132.
3133.
3134.
3135.
3136.
3137.
3138.
3139.
3140.
3141.
3142.
3143.
3144.
3145.
3146.
3147.
3148.
3149.
3150.
3151.
3152.
3153.
3154.
3155.
3156.
3157.
3158.
3159.
3160.
3161.
3162.
3163.
3164.
3165.
3166.
3167.
3168.
3169.
3170.
3171.
3172.
3173.
3174.
3175.
3176.
3177.
3178.
3179.
3180.
3181.
3182.
3183.
3184.
3185.
3186.
3187.
3188.
3189.
3190.
3191.
3192.
3193.
3194.
3195.
3196.
3197.
3198.
3199.
3200.
3201.
3202.
3203.
3204.
3205.
3206.
3207.
3208.
3209.
3210.
3211.
3212.
3213.
3214.
3215.
3216.
3217.
3218.
3219.
3220.
3221.
3222.
3223.
3224.
3225.
3226.
3227.
3228.
3229.
3230.
3231.
3232.
3233.
3234.
3235.
3236.
3237.
3238.
3239.
3240.
3241.
3242.
3243.
3244.
3245.
3246.
3247.
3248.
3249.
3250.
3251.
3252.
3253.
3254.
3255.
3256.
3257.
3258.
3259.
3260.
3261.
3262.
3263.
3264.
3265.
3266.
3267.
3268.
3269.
3270.
3271.
3272.
3273.
3274.
3275.
3276.
3277.
3278.
3279.
3280.
3281.
3282.
3283.
3284.
3285.
3286.
3287.
3288.
3289.
3290.
3291.
3292.
3293.
3294.
3295.
3296.
3297.
3298.
3299.
3300.
3301.
3302.
3303.
3304.
3305.
3306.
3307.
3308.
3309.
3310.
3311.
3312.
3313.
3314.
3315.
3316.
3317.
3318.
3319.
3320.
3321.
3322.
3323.
3324.
3325.
3326.
3327.
3328.
3329.
3330.
3331.
3332.
3333.
3334.
3335.
3336.
3337.
3338.
3339.
3340.
3341.
3342.
3343.
3344.
3345.
3346.
3347.
3348.
3349.
3350.
3351.
3352.
3353.
3354.
3355.
3356.
3357.
3358.
3359.
3360.
3361.
3362.
3363.
3364.
3365.
3366.
3367.
3368.
3369.
3370.
3371.
3372.
3373.
3374.
3375.
3376.
3377.
3378.
3379.
3380.
3381.
3382.
3383.
3384.
3385.
3386.
3387.
3388.
3389.
3390.
3391.
3392.
3393.
3394.
3395.
3396.
3397.
3398.
3399.
3400.
3401.
3402.
3403.
3404.
3405.
3406.
3407.
3408.
3409.
3410.
3411.
3412.
3413.
3414.
3415.
3416.
3417.
3418.
3419.
3420.
3421.
3422.
3423.
3424.
3425.
3426.
3427.
3428.
3429.
3430.
3431.
3432.
3433.
3434.
3435.
3436.
3437.
3438.
3439.
3440.
3441.
3442.
3443.
3444.
3445.
3446.
3447.
3448.
3449.
3450.
3451.
3452.
3453.
3454.
3455.
3456.
3457.
3458.
3459.
3460.
3461.
3462.
3463.
3464.
3465.
3466.
3467.
3468.
3469.
3470.
3471.
3472.
3473.
3474.
3475.
3476.
3477.
3478.
3479.
3480.
3481.
3482.
3483.
3484.
3485.
3486.
3487.
3488.
3489.
3490.
3491.
3492.
3493.
3494.
3495.
3496.
3497.
3498.
3499.
3500.
3501.
3502.
3503.
3504.
3505.
3506.
3507.
3508.
3509.
3510.
3511.
3512.
3513.
3514.
3515.
3516.
3517.
3518.
3519.
3520.
3521.
3522.
3523.
3524.
3525.
3526.
3527.
3528.
3529.
3530.
3531.
3532.
3533.
3534.
3535.
3536.
3537.
3538.
3539.
3540.
3541.
3542.
3543.
3544.
3545.
3546.
3547.
3548.
3549.
3550.
3551.
3552.
3553.
3554.
3555.
3556.
3557.
3558.
3559.
3560.
3561.
3562.
3563.
3564.
3565.
3566.
3567.
3568.
3569.
3570.
3571.
3572.
3573.
3574.
3575.
3576.
3577.
3578.
3579.
3580.
3581.
3582.
3583.
3584.
3585.
3586.
3587.
3588.
3589.
3590.
3591.
3592.
3593.
3594.
3595.
3596.
3597.
3598.
3599.
3600.
3601.
3602.
3603.
3604.
3605.
3606.
3607.
3608.
3609.
3610.
3611.
3612.
3613.
3614.
3615.
3616.
3617.
3618.
3619.
3620.
3621.
3622.
3623.
3624.
3625.
3626.
3627.
3628.
3629.
3630.
3631.
3632.
3633.
3634.
3635.
3636.
3637.
3638.
3639.
3640.
3641.
3642.
3643.
3644.
3645.
3646.
3647.
3648.
3649.
3650.
3651.
3652.
3653.
3654.
3655.
3656.
3657.
3658.
3659.
3660.
3661.
3662.
3663.
3664.
3665.
3666.
3667.
3668.
3669.
3670.
3671.
3672.
3673.
3674.
3675.
3676.
3677.
3678.
3679.
3680.
3681.
3682.
3683.
3684.
3685.
3686.
3687.
3688.
3689.
3690.
3691.
3692.
3693.
3694.
3695.
3696.
3697.
3698.
3699.
3700.
3701.
3702.
3703.
3704.
3705.
3706.
3707.
3708.
3709.
3710.
3711.
3712.
3713.
3714.
3715.
3716.
3717.
3718.
3719.
3720.
3721.
3722.
3723.
3724.
3725.
3726.
3727.
3728.
3729.
3730.
3731.
3732.
3733.
3734.
3735.
3736.
3737.
3738.
3739.
3740.
3741.
3742.
3743.
3744.
3745.
3746.
3747.
3748.
3749.
3750.
3751.
3752.
3753.
3754.
3755.
3756.
3757.
3758.
3759.
3760.
3761.
3762.
3763.
3764.
3765.
3766.
3767.
3768.
3769.
3770.
3771.
3772.
3773.
3774.
3775.
3776.
3777.
3778.
3779.
3780.
3781.
3782.
3783.
3784.
3785.
3786.
3787.
3788.
3789.
3790.
3791.
3792.
3793.
3794.
3795.
3796.
3797.
3798.
3799.
3800.
3801.
3802.
3803.
3804.
3805.
3806.
3807.
3808.
3809.
3810.
3811.
3812.
3813.
3814.
3815.
3816.
3817.
3818.
3819.
3820.
3821.
3822.
3823.
3824.
3825.
3826.
3827.
3828.
3829.
3830.
3831.
3832.
3833.
3834.
3835.
3836.
3837.
3838.
3839.
3840.
3841.
3842.
3843.
3844.
3845.
3846.
3847.
3848.
3849.
3850.
3851.
3852.
3853.
3854.
3855.
3856.
3857.
3858.
3859.
3860.
3861.
3862.
3863.
3864.
3865.
3866.
3867.
3868.
3869.
3870.
3871.
3872.
3873.
3874.
3875.
3876.
3877.
3878.
3879.
3880.
3881.
3882.
3883.
3884.
3885.
3886.
3887.
3888.
3889.
3890.
3891.
3892.
3893.
3894.
3895.
3896.
3897.
3898.
3899.
3900.
3901.
3902.
3903.
3904.
3905.
3906.
3907.
3908.
3909.
3910.
3911.
3912.
3913.
3914.
3915.
3916.
3917.
3918.
3919.
3920.
3921.
3922.
3923.
3924.
3925.
3926.
3927.
3928.
3929.
3930.
3931.
3932.
3933.
3934.
3935.
3936.
3937.
3938.
3939.
3940.
3941.
3942.
3943.
3944.
3945.
3946.
3947.
3948.
3949.
3950.
3951.
3952.
3953.
3954.
3955.
3956.
3957.
3958.
3959.
3960.
3961.
3962.
3963.
3964.
3965.
3966.
3967.
3968.
3969.
3970.
3971.
3972.
3973.
3974.
3975.
3976.
3977.
3978.
3979.
3980.
3981.
3982.
3983.
3984.
3985.
3986.
3987.
3988.
3989.
3990.
3991.
3992.
3993.
3994.
3995.
3996.
3997.
3998.
3999.
4000.
4001.
4002.
4003.
4004.
4005.
4006.
4007.
4008.
4009.
4010.
4011.
4012.
4013.
4014.
4015.
4016.
4017.
4018.
4019.
4020.
4021.
4022.
4023.
4024.
4025.
4026.
4027.
4028.
4029.
4030.
4031.
4032.
4033.
4034.
4035.
4036.
4037.
4038.
4039.
4040.
4041.
4042.
4043.
4044.
4045.
4046.
4047.
4048.
4049.
4050.
4051.
4052.
4053.
4054.
4055.
4056.
4057.
4058.
4059.
4060.
4061.
4062.
4063.
4064.
4065.
4066.
4067.
4068.
4069.
4070.
4071.
4072.
4073.
4074.
4075.
4076.
4077.
4078.
4079.
4080.
4081.
4082.
4083.
4084.
4085.
4086.
4087.
4088.
4089.
4090.
4091.
4092.
4093.
4094.
4095.
4096.
4097.
4098.
4099.
4100.
4101.
4102.
4103.
4104.
4105.
4106.
4107.
4108.
4109.
4110.
4111.
4112.
4113.
4114.
4115.
4116.
4117.
4118.
4119.
4120.
4121.
4122.
4123.
4124.
4125.
4126.
4127.
4128.
4129.
4130.
4131.
4132.
4133.
4134.
4135.
4136.
4137.
4138.
4139.
4140.
4141.
4142.
4143.
4144.
4145.
4146.
4147.
4148.
4149.
4150.
4151.
4152.
4153.
4154.
4155.
4156.
4157.
4158.
4159.
4160.
4161.
4162.
4163.
4164.
4165.
4166.
4167.
4168.
4169.
4170.
4171.
4172.
4173.
4174.
4175.
4176.
4177.
4178.
4179.
4180.
4181.
4182.
4183.
4184. | GMER 1.0.15.15281 - http://www.gmer.net
Rootkit scan 2010-01-04 22:18:08
Windows 5.1.2600 Dodatek Service Pack 3
Running: n7q8ne7e.exe; Driver: C:\\DOCUME~1\\Klaus\\USTAWI~1\\Temp\\uwnoikob.sys
---- System - GMER 1.0.15 ----
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwClose [0xB7A403B0]
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwCreateKey [0xB7A41090]
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwDeleteKey [0xB7A411B2]
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwDeleteValueKey [0xB7A411D4]
SSDT spjz.sys ZwEnumerateKey [0xF74FCDA4]
SSDT spjz.sys ZwEnumerateValueKey [0xF74FD132]
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwOpenKey [0xB7A41118]
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwOpenProcess [0xB7A402D6]
SSDT spjz.sys ZwQueryKey [0xF74FD20A]
SSDT spjz.sys ZwQueryValueKey [0xF74FD08A]
SSDT \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) ZwSetValueKey [0xB7A41184]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAcceptConnectPort [0x80590BFB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheck [0x80584358]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheckAndAuditAlarm [0x805E0F35]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheckByType [0x805DAC4A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheckByTypeAndAuditAlarm [0x805E0FBC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheckByTypeResultList [0x8063FCE4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheckByTypeResultListAndAuditAlarm [0x80641E75]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAccessCheckByTypeResultListAndAuditAlarmByHandle [0x80641EBE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAddAtom [0x805825AA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAddBootEntry [0x8064FBE3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAdjustGroupsToken [0x8063F4A3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAdjustPrivilegesToken [0x805E0787]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAlertResumeThread [0x806377BA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAlertThread [0x80585FA3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAllocateLocallyUniqueId [0x805DF8E8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAllocateUserPhysicalPages [0x8062E462]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAllocateUuids [0x805D8781]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAllocateVirtualMemory [0x80570EDD]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAreMappedFilesTheSame [0x805E7258]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwAssignProcessToJobObject [0x805E839E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCallbackReturn [0x804E4EC4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCancelDeviceWakeupRequest [0x8064FBCF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCancelIoFile [0x805CC537]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCancelTimer [0x804EC822]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwClearEvent [0x80570B4F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCloseObjectAuditAlarm [0x805E0B65]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCompactKeys [0x80655D14]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCompareTokens [0x805DFFF3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCompleteConnectPort [0x805877B9]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCompressKey [0x80655F83]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwConnectPort [0x80585565]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwContinue [0x804E122D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateDebugObject [0x806613C6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateDirectoryObject [0x805A976B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateEvent [0x8057CD25]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateEventPair [0x80650234]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateFile [0x8057C328]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateIoCompletion [0x805DA665]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateJobObject [0x805D5CD6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateJobSet [0x80637C63]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateMailslotFile [0x805D6E7F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateMutant [0x8057F3B8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateNamedPipeFile [0x80588CAC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreatePagingFile [0x805B4823]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreatePort [0x8059902A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateProcess [0x805B0470]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateProcessEx [0x8058B7CD]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateProfile [0x80650855]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateSection [0x8056DB66]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateSemaphore [0x8057A9DC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateSymbolicLinkObject [0x805E6E56]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateThread [0x80586C45]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateTimer [0x80597CB2]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateToken [0x805A6ADA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateWaitablePort [0x805AA552]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDebugActiveProcess [0x80662541]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDebugContinue [0x8066269B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDelayExecution [0x8056EB07]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDeleteAtom [0x805DCC8E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDeleteFile [0x805D54AC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDeleteObjectAuditAlarm [0x80641F15]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDeviceIoControlFile [0x805889A8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDisplayString [0x805B5CD8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDuplicateObject [0x80581216]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwDuplicateToken [0x80583449]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwEnumerateSystemEnvironmentValuesEx [0x8064FBBB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwExtendSection [0x8062D419]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFilterToken [0x805CE473]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFindAtom [0x805E26F2]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFlushBuffersFile [0x80585CED]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFlushInstructionCache [0x80587BFB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFlushKey [0x805D93BB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFlushVirtualMemory [0x805E8AB6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFlushWriteBuffer [0x8062ECC1]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFreeUserPhysicalPages [0x8062E817]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFreeVirtualMemory [0x805713D7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwFsControlFile [0x805803EB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwGetContextThread [0x80635741]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwGetDevicePowerState [0x80633C17]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwGetPlugPlayEvent [0x8059B497]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwGetWriteWatch [0x8053F717]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwImpersonateAnonymousToken [0x80598BDE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwImpersonateClientOfPort [0x805DFD66]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwImpersonateThread [0x8058868F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwInitializeRegistry [0x805A9D25]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwInitiatePowerAction [0x806339E3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwIsProcessInJob [0x80637B17]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwIsSystemResumeAutomatic [0x80633BFE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwListenPort [0x805A9B94]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLoadDriver [0x805A8F96]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLoadKey [0x805CE7E5]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLoadKey2 [0x805CE944]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLockFile [0x805DD05B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLockProductActivationKeys [0x805CDCE7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLockRegistryKey [0x805C7155]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwLockVirtualMemory [0x805AE0D5]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwMakePermanentObject [0x805E704C]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwMakeTemporaryObject [0x805E7113]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwMapUserPhysicalPages [0x8062DABE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwMapUserPhysicalPagesScatter [0x8062DF17]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwMapViewOfSection [0x8057E369]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwNotifyChangeDirectoryFile [0x805DD2F2]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwNotifyChangeKey [0x805E218F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwNotifyChangeMultipleKeys [0x805E1FA1]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenDirectoryObject [0x8058A0B6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenEvent [0x80589A51]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenEventPair [0x80650325]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenFile [0x8057C49C]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenIoCompletion [0x806210D3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenJobObject [0x80637EBB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenMutant [0x8057F466]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenObjectAuditAlarm [0x805E9252]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenProcessToken [0x80577300]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenProcessTokenEx [0x80577257]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenSection [0x8057A8AD]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenSemaphore [0x805E71CA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenSymbolicLinkObject [0x8058A039]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenThread [0x805E1939]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenThreadToken [0x80573DC3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenThreadTokenEx [0x80573CC0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenTimer [0x8065015B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwPlugPlayControl [0x80596C5D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwPowerInformation [0x805A43A4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwPrivilegeCheck [0x80596F58]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwPrivilegeObjectAuditAlarm [0x805D88C7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwPrivilegedServiceAuditAlarm [0x805CD91A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwProtectVirtualMemory [0x80581889]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwPulseEvent [0x805AA4AA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryAttributesFile [0x8057C6CB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryDebugFilterState [0x804FAB79]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryDefaultLocale [0x8056F0D0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryDefaultUILanguage [0x80589487]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryDirectoryFile [0x80581E61]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryDirectoryObject [0x8058FA6A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryEaFile [0x80621320]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryEvent [0x80589E20]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryFullAttributesFile [0x80584F21]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationAtom [0x805AA812]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationFile [0x8057E688]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationJobObject [0x8058BED4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationPort [0x8062B0C5]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationProcess [0x80573EA7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationThread [0x80575C45]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInformationToken [0x805760EE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryInstallUILanguage [0x80589BBA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryIntervalProfile [0x80650D07]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryIoCompletion [0x80621194]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryMultipleValueKey [0x806556FC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryMutant [0x8065068E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryObject [0x8058A270]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryOpenSubKeys [0x80655903]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryPerformanceCounter [0x8056F6A4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryQuotaInformationFile [0x80621BD7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySection [0x80588048]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySecurityObject [0x805D9EAE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySemaphore [0x8064F493]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySymbolicLinkObject [0x80589EAA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySystemEnvironmentValue [0x8064FC0B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySystemEnvironmentValueEx [0x8064FBA5]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySystemInformation [0x80585FF3]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQuerySystemTime [0x8058ABF0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryTimer [0x805E3C32]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryTimerResolution [0x8058CDFD]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryVirtualMemory [0x8057D242]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryVolumeInformationFile [0x8057C7E7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueueApcThread [0x805E3B8D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRaiseException [0x804E1275]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRaiseHardError [0x8064F1CF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReadFile [0x8057CDFE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReadFileScatter [0x806224AF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReadRequestData [0x805E050E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReadVirtualMemory [0x805884CC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRegisterThreadTerminatePort [0x80587396]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReleaseMutant [0x8056EB72]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReleaseSemaphore [0x805858DE]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRemoveIoCompletion [0x8056F54C]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRemoveProcessDebug [0x80662616]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRenameKey [0x80655B78]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReplaceKey [0x806564D8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReplyPort [0x80583142]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReplyWaitReceivePort [0x80575C24]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReplyWaitReceivePortEx [0x8057573C]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReplyWaitReplyPort [0x8062B1A4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRequestDeviceWakeup [0x80633B8B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRequestPort [0x805E94D0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRequestWaitReplyPort [0x80579485]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRequestWakeupLatency [0x80633984]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwResetEvent [0x8059801E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwResetWriteWatch [0x8053FB92]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwRestoreKey [0x8065606D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwResumeProcess [0x8063775A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwResumeThread [0x805872BC]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSaveKey [0x8065616E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSaveKeyEx [0x80656259]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSaveMergedKeys [0x80656386]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSecureConnectPort [0x80590431]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetContextThread [0x80635967]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetDebugFilterState [0x80663FF6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetDefaultHardErrorPort [0x805AFD61]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetDefaultLocale [0x805D6343]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetDefaultUILanguage [0x805D62EA]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetEaFile [0x80621867]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetEvent [0x80570AC0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetEventBoostPriority [0x8057B5B6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetHighEventPair [0x80650619]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetHighWaitLowEventPair [0x8065053D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationDebugObject [0x80661FB7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationFile [0x8057F4E5]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationJobObject [0x805D5E2A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationKey [0x8065525F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationObject [0x80589B39]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationProcess [0x8057CFC0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationThread [0x80578F9F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetInformationToken [0x805A6174]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetIntervalProfile [0x80650833]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetIoCompletion [0x80575F9E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetLdtEntries [0x80636673]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetLowEventPair [0x806505AF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetLowWaitHighEventPair [0x806504CB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetQuotaInformationFile [0x80621BAF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetSecurityObject [0x805D9CAF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetSystemEnvironmentValue [0x8064FEA8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetSystemInformation [0x805AABC8]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetSystemPowerState [0x8066F0E7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetSystemTime [0x8064EE83]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetThreadExecutionState [0x805EB0B7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetTimer [0x804E7A35]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetTimerResolution [0x805EB37E]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetUuidSeed [0x805CDAC6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSetVolumeInformationFile [0x806220ED]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwShutdownSystem [0x8064E5CF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSignalAndWaitForSingleObject [0x8051C369]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwStartProfile [0x80650A9C]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwStopProfile [0x80650C55]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSuspendProcess [0x806376FF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSuspendThread [0x8063761B]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwSystemDebugControl [0x80650DB5]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwTerminateJobObject [0x8063802D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwTerminateProcess [0x8058E695]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwTerminateThread [0x805838E7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwTestAlert [0x80586DA4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwTraceEvent [0x805499A0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwTranslateFilePath [0x8064FBF7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwUnloadDriver [0x806247A0]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwUnloadKey [0x80654DD6]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwUnloadKeyEx [0x80654FFF]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwUnlockFile [0x805DD1BB]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwUnlockVirtualMemory [0x8062ED35]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwUnmapViewOfSection [0x8057DEF1]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwVdmControl [0x805AD706]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWaitForDebugEvent [0x80661D00]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWaitForMultipleObjects [0x8056EC4D]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWaitForSingleObject [0x8056DF62]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWaitHighEventPair [0x80650461]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWaitLowEventPair [0x806503F7]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWriteFile [0x8057F765]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWriteFileGather [0x805CC824]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWriteRequestData [0x805E0592]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWriteVirtualMemory [0x805885C4]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwYieldExecution [0x80515A6A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwCreateKeyedEvent [0x805C291A]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwOpenKeyedEvent [0x8058BA1F]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwReleaseKeyedEvent [0x80651229]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwWaitForKeyedEvent [0x80651494]
SSDT \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) ZwQueryPortInformationProcess [0x80634F75]
INT 0x00 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DE51E
INT 0x01 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DE69D
INT 0x03 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DEAB1
INT 0x04 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DEC34
INT 0x05 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DED99
INT 0x06 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DEF1A
INT 0x07 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DF593
INT 0x09 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DF998
INT 0x0A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DFAB6
INT 0x0B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DFBF3
INT 0x0C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DFE50
INT 0x0D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E014C
INT 0x0E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0877
INT 0x0F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x10 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0CCA
INT 0x11 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0E04
INT 0x12 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x13 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0F69
INT 0x14 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x15 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x16 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x17 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x18 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x19 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x1A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x1B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x1C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x1D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x1E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x1F \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 8072310C
INT 0x2A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DDD51
INT 0x2B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DDE54
INT 0x2C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DE000
INT 0x2D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DE990
INT 0x2E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD7D1
INT 0x2F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804E0BAC
INT 0x30 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCE90
INT 0x31 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCE9A
INT 0x32 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEA4
INT 0x33 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEAE
INT 0x34 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEB8
INT 0x35 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEC2
INT 0x36 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCECC
INT 0x37 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80722864
INT 0x38 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEE0
INT 0x39 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEEA
INT 0x3A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEF4
INT 0x3B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCEFE
INT 0x3C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF08
INT 0x3D \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80723E2C
INT 0x3E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF1C
INT 0x3F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF26
INT 0x40 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF30
INT 0x41 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80723C88
INT 0x42 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF44
INT 0x43 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF4E
INT 0x44 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF58
INT 0x45 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF62
INT 0x46 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF6C
INT 0x47 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF76
INT 0x48 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF80
INT 0x49 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF8A
INT 0x4A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF94
INT 0x4B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCF9E
INT 0x4C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFA8
INT 0x4D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFB2
INT 0x4E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFBC
INT 0x4F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFC6
INT 0x50 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 8072293C
INT 0x51 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFDA
INT 0x52 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFE4
INT 0x53 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFEE
INT 0x54 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DCFF8
INT 0x55 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD002
INT 0x56 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD00C
INT 0x57 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD016
INT 0x58 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD020
INT 0x59 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD02A
INT 0x5A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD034
INT 0x5B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD03E
INT 0x5C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD048
INT 0x5D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD052
INT 0x5E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD05C
INT 0x5F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD066
INT 0x60 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD070
INT 0x61 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD07A
INT 0x62 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD084
INT 0x63 ohci1394.sys (1394 OpenHCI Port Driver/Microsoft Corporation) F75FD2F0
INT 0x63 ? 8A317BF8
INT 0x63 ? 8A317BF8
INT 0x63 ? 8A317BF8
INT 0x63 ? 8A317BF8
INT 0x63 ? 89E78F00
INT 0x63 ohci1394.sys (1394 OpenHCI Port Driver/Microsoft Corporation) F75FD2F0
INT 0x64 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD098
INT 0x65 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0A2
INT 0x66 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0AC
INT 0x67 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0B6
INT 0x68 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0C0
INT 0x69 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0CA
INT 0x6A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0D4
INT 0x6B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0DE
INT 0x6C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0E8
INT 0x6D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0F2
INT 0x6E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD0FC
INT 0x6F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD106
INT 0x70 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD110
INT 0x71 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD11A
INT 0x72 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD124
INT 0x73 NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation) B8662E10
INT 0x74 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD138
INT 0x75 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD142
INT 0x76 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD14C
INT 0x77 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD156
INT 0x78 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD160
INT 0x79 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD16A
INT 0x7A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD174
INT 0x7B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD17E
INT 0x7C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD188
INT 0x7D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD192
INT 0x7E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD19C
INT 0x7F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1A6
INT 0x80 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1B0
INT 0x81 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1BA
INT 0x82 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1C4
INT 0x83 ? 8A388BF8
INT 0x83 \\SystemRoot\\system32\\DRIVERS\\VIDEOPRT.SYS (Video Port Driver/Microsoft Corporation) B6965CB8
INT 0x83 ? 89E78F00
INT 0x83 ? 8A388BF8
INT 0x84 ? 89E78F00
INT 0x85 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1E2
INT 0x86 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1EC
INT 0x87 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD1F6
INT 0x88 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD200
INT 0x89 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD20A
INT 0x8A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD214
INT 0x8B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD21E
INT 0x8C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD228
INT 0x8D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD232
INT 0x8E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD23C
INT 0x8F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD246
INT 0x90 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD250
INT 0x91 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD25A
INT 0x92 \\SystemRoot\\system32\\DRIVERS\\serial.sys (Sterownik urządzenia szeregowego/Microsoft Corporation) B834A9C0
INT 0x93 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD26E
INT 0x94 \\SystemRoot\\system32\\DRIVERS\\HDAudBus.sys (High Definition Audio Bus Driver v1.0a/Windows (R) Server 2003 DDK provider) B691ADFC
INT 0x95 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD282
INT 0x96 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD28C
INT 0x97 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD296
INT 0x98 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2A0
INT 0x99 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2AA
INT 0x9A \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2B4
INT 0x9B \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2BE
INT 0x9C \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2C8
INT 0x9D \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2D2
INT 0x9E \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2DC
INT 0x9F \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2E6
INT 0xA0 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2F0
INT 0xA1 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD2FA
INT 0xA2 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD304
INT 0xA3 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD30E
INT 0xA4 ? 89E78F00
INT 0xA4 ? 89E78F00
INT 0xA4 ? 89E78F00
INT 0xA4 ? 89E78F00
INT 0xA5 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD322
INT 0xA6 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD32C
INT 0xA7 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD336
INT 0xA8 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD340
INT 0xA9 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD34A
INT 0xAA \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD354
INT 0xAB \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD35E
INT 0xAC \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD368
INT 0xAD \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD372
INT 0xAE \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD37C
INT 0xAF \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD386
INT 0xB0 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD390
INT 0xB1 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation) F74A731E
INT 0xB2 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3A4
INT 0xB3 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3AE
INT 0xB4 ? 89E78F00
INT 0xB5 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3C2
INT 0xB6 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3CC
INT 0xB7 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3D6
INT 0xB8 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3E0
INT 0xB9 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3EA
INT 0xBA \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3F4
INT 0xBB \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD3FE
INT 0xBC \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD408
INT 0xBD \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD412
INT 0xBE \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD41C
INT 0xBF \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD426
INT 0xC0 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD430
INT 0xC1 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80722AC0
INT 0xC2 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD444
INT 0xC3 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD44E
INT 0xC4 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD458
INT 0xC5 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD462
INT 0xC6 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD46C
INT 0xC7 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD476
INT 0xC8 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD480
INT 0xC9 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD48A
INT 0xCA \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD494
INT 0xCB \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD49E
INT 0xCC \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4A8
INT 0xCD \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4B2
INT 0xCE \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4BC
INT 0xCF \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4C6
INT 0xD0 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4D0
INT 0xD1 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 807222A0
INT 0xD2 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4E4
INT 0xD3 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4EE
INT 0xD4 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD4F8
INT 0xD5 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD502
INT 0xD6 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD50C
INT 0xD7 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD516
INT 0xD8 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD520
INT 0xD9 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD52A
INT 0xDA \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD534
INT 0xDB \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD53E
INT 0xDC \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD548
INT 0xDD \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD552
INT 0xDE \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD55C
INT 0xDF \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD566
INT 0xE0 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD570
INT 0xE1 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80723048
INT 0xE2 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD584
INT 0xE3 \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80722DAC
INT 0xE4 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD598
INT 0xE5 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5A2
INT 0xE6 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5AC
INT 0xE7 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5B6
INT 0xE8 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5C0
INT 0xE9 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5CA
INT 0xEA \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5D4
INT 0xEB \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5DE
INT 0xEC \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5E8
INT 0xED \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5F2
INT 0xEE \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD5F9
INT 0xEF \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD600
INT 0xF0 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD607
INT 0xF1 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD60E
INT 0xF2 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD615
INT 0xF3 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD61C
INT 0xF4 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD623
INT 0xF5 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD62A
INT 0xF6 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD631
INT 0xF7 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD638
INT 0xF8 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD63F
INT 0xF9 \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD646
INT 0xFA \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD64D
INT 0xFB \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD654
INT 0xFC \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD65B
INT 0xFD \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 807235A8
INT 0xFE \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80723748
INT 0xFF \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804DD670
SYSENTER \\WINDOWS\\system32\\TUKERNEL.EXE 804DD89F
---- Kernel code sections - GMER 1.0.15 ----
.text TUKERNEL.EXE!KiDispatchInterrupt + 2C0 804DCB22 18 Bytes [E0, 25, 7F, FF, FF, FF, 0F, ...]
.text TUKERNEL.EXE!KiDispatchInterrupt + 2D8 804DCB3A 1 Byte [00]
.text TUKERNEL.EXE!KiDeliverApc + C9C 804DDA9D 1 Byte [06]
.text TUKERNEL.EXE!ZwYieldExecution + DA 804E4914 4 Bytes [B0, 03, A4, B7]
.text TUKERNEL.EXE!ZwYieldExecution + 11A 804E4954 4 Bytes [90, 10, A4, B7]
.text TUKERNEL.EXE!ZwYieldExecution + 172 804E49AC 4 Bytes [B2, 11, A4, B7]
.text TUKERNEL.EXE!ZwYieldExecution + 17A 804E49B4 4 Bytes [D4, 11, A4, B7]
.text TUKERNEL.EXE!ZwYieldExecution + 192 804E49CC 4 Bytes [A4, CD, 4F, F7]
.text ...
.text TUKERNEL.EXE!RtlPrefetchMemoryNonTemporal 804E5511 1 Byte [90]
.text hal.dll!HalBeginSystemInterrupt + 986 807248EE 4 Bytes [03, EF, 1A, 27] {ADD EBP, EDI; SBB AH, [EDI]}
.text hal.dll!HalBeginSystemInterrupt + 98B 807248F3 21 Bytes [F0, 5E, 09, D4, 03, A2, 01, ...]
.text hal.dll!HalBeginSystemInterrupt + 9A2 8072490A 8 Bytes [E8, FD, 80, 02, 04, 64, 02, ...] {CALL 0x4028102; ADD DH, FS:[EDX]}
.text hal.dll!HalBeginSystemInterrupt + 9AB 80724913 4 Bytes [06, 23, 17, 10]
.text hal.dll!HalBeginSystemInterrupt + 9B0 80724918 15 Bytes [30, C0, 06, 32, F5, 05, 91, ...] {XOR AL, AL; PUSH ES; XOR DH, CH; ADD EAX, 0x80047d91; POP DS; OR ESI, [ESI]; OR [EBX], ECX}
.text ...
? spjz.sys Nie można odnaleźć określonego pliku. !
.text C:\\WINDOWS\\system32\\DRIVERS\\nv4_mini.sys section is writeable [0xB6978380, 0x5414D5, 0xE8000020]
.text USBPORT.SYS!DllUnload B69588AC 5 Bytes JMP 89E784E0
.text ay3kfb35.SYS B68BC386 35 Bytes [00, 00, 00, 00, 00, 00, 20, ...]
.text ay3kfb35.SYS B68BC3AA 24 Bytes [00, 00, 00, 00, 00, 00, 00, ...]
.text ay3kfb35.SYS B68BC3C4 3 Bytes [00, 80, 02]
.text ay3kfb35.SYS B68BC3C9 1 Byte [30]
.text ay3kfb35.SYS B68BC3C9 11 Bytes [30, 00, 00, 00, 5E, 02, 00, ...] {XOR [EAX], AL; ADD [EAX], AL; POP ESI; ADD AL, [EAX]; ADD [EAX], AL; ADD [EAX], AL}
.text ...
init C:\\WINDOWS\\system32\\drivers\\monfilt.sys entry point in \"init\" section [0xB44DA280]
---- User code sections - GMER 1.0.15 ----
.text C:\\WINDOWS\\system32\\spoolsv.exe[228] msonpmon.dll!InitializePrintMonitor2 + FFFFF09C 00F31418 4 Bytes [E5, ED, 98, 69]
.text C:\\WINDOWS\\system32\\spoolsv.exe[228] msonpppr.dll!EnumPrintProcessorDatatypesW + FFFFCA40 00FB12FC 4 Bytes [BB, 1D, C0, 6F]
.data C:\\WINDOWS\\system32\\PnkBstrA.exe[2156] C:\\WINDOWS\\system32\\PnkBstrA.exe unknown last section [0x00410000, 0x52A8, 0xC0000040]
UPX1 C:\\Documents and Settings\\Klaus\\Pulpit\\n7q8ne7e.exe[2176] C:\\Documents and Settings\\Klaus\\Pulpit\\n7q8ne7e.exe entry point in \"UPX1\" section [0x004B3F40]
---- Kernel IAT/EAT - GMER 1.0.15 ----
IAT atapi.sys[HAL.dll!READ_PORT_UCHAR] [F74E5042] spjz.sys
IAT atapi.sys[HAL.dll!READ_PORT_BUFFER_USHORT] [F74E513E] spjz.sys
IAT atapi.sys[HAL.dll!READ_PORT_USHORT] [F74E50C0] spjz.sys
IAT atapi.sys[HAL.dll!WRITE_PORT_BUFFER_USHORT] [F74E5800] spjz.sys
IAT atapi.sys[HAL.dll!WRITE_PORT_UCHAR] [F74E56D6] spjz.sys
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!KfAcquireSpinLock] 18C4830E
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!READ_PORT_UCHAR] 1C959E88
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!KeGetCurrentIrql] 9E880000
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!KfRaiseIrql] 00001CB1
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!KfLowerIrql] 0E798366
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!HalGetInterruptVector] 74AAB000
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!HalTranslateBusAddress] 8986C636
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!KeStallExecutionProcessor] 1A00001C
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!KfReleaseSpinLock] 1C8B86C6
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!READ_PORT_BUFFER_USHORT] C6020000
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!READ_PORT_USHORT] 001C9686
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!WRITE_PORT_BUFFER_USHORT] 86C60200
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[HAL.dll!WRITE_PORT_UCHAR] 00001CB2
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[WMILIB.SYS!WmiSystemControl] 8800001C
IAT \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS[WMILIB.SYS!WmiCompleteRequest] 001CB99E
IAT \\SystemRoot\\system32\\DRIVERS\\ndiswan.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndiswan.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndiswan.sys[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndiswan.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\raspppoe.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\raspppoe.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\raspppoe.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\raspppoe.sys[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\psched.sys[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\psched.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\psched.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\psched.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\System32\\Drivers\\NDProxy.SYS[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\System32\\Drivers\\NDProxy.SYS[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\System32\\Drivers\\NDProxy.SYS[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\System32\\Drivers\\NDProxy.SYS[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\tcpip.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\tcpip.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\tcpip.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\wanarp.sys[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\wanarp.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\wanarp.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\wanarp.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\arp1394.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\arp1394.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\arp1394.sys[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\arp1394.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndisuio.sys[NDIS.SYS!NdisRegisterProtocol] [F77212FC] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndisuio.sys[NDIS.SYS!NdisDeregisterProtocol] [F7721326] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndisuio.sys[NDIS.SYS!NdisCloseAdapter] [F7721062] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
IAT \\SystemRoot\\system32\\DRIVERS\\ndisuio.sys[NDIS.SYS!NdisOpenAdapter] [F77210D2] GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
---- User IAT/EAT - GMER 1.0.15 ----
IAT C:\\WINDOWS\\system32\\spoolsv.exe[228] @ C:\\WINDOWS\\system32\\HPTcpMUI.dll [COMCTL32.dll!PropertySheetW] [5D558C61] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreatePropertySheetPageW] [773C7E56] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_GetIconSize] [773D5660] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Draw] [773D545D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\ASUS.SYS\\config\\DVMExportService.exe[436] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreateToolbarEx] [77434AFE] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Java\\jre6\\bin\\jqs.exe[580] @ C:\\WINDOWS\\system32\\UTILDLL.dll [TAPI32.dll!lineShutdown] [76EB013F] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\Program Files\\Java\\jre6\\bin\\jqs.exe[580] @ C:\\WINDOWS\\system32\\UTILDLL.dll [TAPI32.dll!lineInitializeExA] [76EB0075] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\Program Files\\Java\\jre6\\bin\\jqs.exe[580] @ C:\\WINDOWS\\system32\\UTILDLL.dll [TAPI32.dll!lineNegotiateAPIVersion] [76EAA378] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\Program Files\\Java\\jre6\\bin\\jqs.exe[580] @ C:\\WINDOWS\\system32\\UTILDLL.dll [TAPI32.dll!lineGetDevCapsA] [76EA8D64] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\Explorer.EXE [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ADVAPI32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\RPCRT4.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\Secur32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\BROWSEUI.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\GDI32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\USER32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\msvcrt.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ole32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\SHLWAPI.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\OLEAUT32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\SHDOCVW.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\CRYPT32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MSASN1.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\CRYPTUI.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\NETAPI32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\VERSION.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WININET.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\urlmon.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\iertutil.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WINTRUST.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\IMAGEHLP.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WLDAP32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\SHELL32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\UxTheme.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WINMM.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MSACM32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\USERENV.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\IMM32.DLL [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\comctl32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comctl32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\msctfime.ime [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\appHelp.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\CLBCATQ.DLL [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\System32\\cscui.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\System32\\CSCDLL.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\themeui.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\msutb.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MSCTF.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ieframe.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ntshrui.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ATL.DLL [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\LINKINFO.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\rsaenh.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\msi.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\\MSVCR80.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Logitech\\SetPoint\\lgscroll.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\NTMARTA.DLL [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Logitech\\SetPoint\\GameHook.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MLANG.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\webcheck.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\SETUPAPI.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\stobject.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\BatMeter.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WTSAPI32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WPDShServiceObj.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WINHTTP.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\mydocs.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\PortableDeviceTypes.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\PortableDeviceApi.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\wdmaud.drv [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\NETSHELL.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\credui.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\eappcfg.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\iphlpapi.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WS2_32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\WS2HELP.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\McAfee\\SiteAdvisor\\saHook.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MPR.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\System32\\ntlanman.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\System32\\NETUI0.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\System32\\davclnt.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Common Files\\Ahead\\Lib\\NeroDigitalExt.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Common Files\\Ahead\\Lib\\MFC71.DLL [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Common Files\\Ahead\\Lib\\MSVCR71.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Common Files\\Adobe\\Acrobat\\ActiveX\\PDFShell.dll [COMCTL32.dll!CreatePropertySheetPageW] [5D55396F] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Common Files\\Adobe\\Acrobat\\ActiveX\\PDFShell.dll [COMCTL32.dll!DestroyPropertySheetPage] [5D553694] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\DUSER.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MSGINA.dll [COMCTL32.dll!InitCommonControlsEx] [5D523619] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\MSGINA.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ODBC32.dll [COMCTL32.dll!ImageList_Create] [5D530205] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ODBC32.dll [COMCTL32.dll!ImageList_ReplaceIcon] [5D52C7F4] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ODBC32.dll [COMCTL32.dll!PropertySheetW] [5D558C61] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ODBC32.dll [COMCTL32.dll!PropertySheetA] [5D558C79] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\ODBC32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!PropertySheetW] [5D558C61] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreatePropertySheetPageW] [5D55396F] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!InitCommonControlsEx] [5D523619] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_GetIconSize] [5D52E33A] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Destroy] [5D5303D8] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Draw] [5D53DFF1] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreateToolbarEx] [5D53E56B] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\comdlg32.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\WINDOWS\\system32\\sti.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\WINDOWS\\Explorer.EXE[640] @ C:\\Program Files\\Common Files\\Microsoft Shared\\OFFICE11\\msxml5.dll [KERNEL32.dll!GetProcAddress] [5CFE7774] C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipCreateHBITMAPFromBitmap] [4EBDD748] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipCreateBitmapFromStreamICM] [4EC0B17D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipCreateBitmapFromStream] [4EBDBC9A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipDisposeImage] [4EBC71B3] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipAlloc] [4EBC69A9] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipFree] [4EBC697E] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdiplusStartup] [4EBD7A79] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdiplusShutdown] [4EBD88B4] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe [gdiplus.dll!GdipCloneImage] [4EC198A5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreatePropertySheetPageW] [773C7E56] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_GetIconSize] [773D5660] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Draw] [773D545D] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\LCDMon.exe[804] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreateToolbarEx] [77434AFE] C:\\WINDOWS\\WinSxS\\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [COMCTL32.dll!ImageList_Create] [773D935B] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [COMCTL32.dll!ImageList_ReplaceIcon] [773D521D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [COMCTL32.dll!ImageList_LoadImageW] [773D9389] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdiplusStartup] [4EBD7A79] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdiplusShutdown] [4EBD88B4] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipCloneImage] [4EC198A5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipCreateHBITMAPFromBitmap] [4EBDD748] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipCreateBitmapFromStreamICM] [4EC0B17D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipCreateBitmapFromStream] [4EBDBC9A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipCreateBitmapFromFileICM] [4EC5E386] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipCreateBitmapFromFile] [4EC10405] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipDisposeImage] [4EBC71B3] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipAlloc] [4EBC69A9] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe [gdiplus.dll!GdipFree] [4EBC697E] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreatePropertySheetPageW] [773C7E56] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_GetIconSize] [773D5660] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Draw] [773D545D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreateToolbarEx] [77434AFE] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_GetImageCount] [773D5150] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!CreatePropertySheetPageA] [773C7E70] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_LoadImageA] [773D9676] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_Create] [773D935B] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_Add] [773D51D6] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_GetIconSize] [773D5660] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!ImageList_Draw] [773D545D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\G-series Software\\LGDCore.exe[812] @ C:\\WINDOWS\\system32\\hhctrl.ocx [COMCTL32.dll!PropertySheetA] [773CCF5D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCloneBrush] [4EC5915A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateFromHDC] [4EBCEA65] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateBitmapFromGraphics] [4EC15484] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipGetImageGraphicsContext] [4EBD2A73] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipSetSmoothingMode] [4EBD7624] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateSolidFill] [4EBFEEBA] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipFillPath] [4EC01122] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDeleteBrush] [4EBFF3C3] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipGetImageWidth] [4EBD06B5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipGetImageHeight] [4EBD074E] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateImageAttributes] [4EBFB716] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipSetImageAttributesColorMatrix] [4EBFCE9D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDrawImageRectRect] [4EBD08E7] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDisposeImageAttributes] [4EBFB797] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateFontFromLogfontW] [4EC18267] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateFontFromDC] [4EC660C2] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateStringFormat] [4EC25C81] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipSetStringFormatLineAlign] [4EC25E1C] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDrawString] [4EC1A2D5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDeleteStringFormat] [4EC25622] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDeleteFont] [4EBDC02A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDrawImageI] [4EC62A9A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDeleteGraphics] [4EBCE109] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateBitmapFromStreamICM] [4EC0B17D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateBitmapFromStream] [4EBDBC9A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDisposeImage] [4EBC71B3] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipFree] [4EBC697E] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCloneImage] [4EC198A5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipGetImageEncodersSize] [4EBFD6DC] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipGetImageEncoders] [4EBFD552] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipResetPath] [4EC5390C] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreatePath] [4EC02B99] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipClonePath] [4EC53849] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipAddPathArcI] [4EC54596] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipAddPathLineI] [4EC54312] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipDeletePath] [4EBFF286] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipAlloc] [4EBC69A9] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateBitmapFromScan0] [4EBC721D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipBitmapUnlockBits] [4EBD34E8] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipCreateBitmapFromHICON] [4EC5E595] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdiplusStartup] [4EBD7A79] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdiplusShutdown] [4EBD88B4] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [gdiplus.dll!GdipBitmapLockBits] [4EBD345D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe[828] @ C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFirewallTray.exe [COMCTL32.dll!ImageList_GetIcon] [773D55C7] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe[844] @ C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe[844] @ C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe [COMCTL32.dll!DestroyPropertySheetPage] [773C7AD7] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe[844] @ C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe [COMCTL32.dll!CreatePropertySheetPageW] [773C7E56] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe[844] @ C:\\Program Files\\G DATA\\TotalCare\\AVKTray\\AVKTray.exe [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\system32\\RUNDLL32.EXE[936] @ C:\\WINDOWS\\system32\\NvMcTray.dll [COMCTL32.dll!InitCommonControlsEx] [5D523619] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreatePropertySheetPageW] [773C7E56] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_GetIconSize] [773D5660] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Draw] [773D545D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDCountdown.exe[984] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreateToolbarEx] [77434AFE] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!PropertySheetW] [773CCF45] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreatePropertySheetPageW] [773C7E56] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!InitCommonControlsEx] [773C4088] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_GetIconSize] [773D5660] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Destroy] [773D5114] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!ImageList_Draw] [773D545D] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\GamePanel Software\\LCD Manager\\Applets\\LCDPop3.exe[992] @ C:\\WINDOWS\\system32\\comdlg32.dll [COMCTL32.dll!CreateToolbarEx] [77434AFE] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDeleteGraphics] [4EBCE109] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDisposeImage] [4EBC71B3] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipGetImageBounds] [4EBE29F5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipGetImageWidth] [4EBD06B5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipGetImageHeight] [4EBD074E] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipImageRotateFlip] [4EC0C531] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateBitmapFromFile] [4EC10405] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateHBITMAPFromBitmap] [4EBDD748] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdiplusStartup] [4EBD7A79] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdiplusShutdown] [4EBD88B4] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipSetImageAttributesColorKeys] [4EC19416] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateFromHDC] [4EBCEA65] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDrawImageRect] [4EBDBA20] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDrawImageRectI] [4EBDB9D4] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDrawImageRectRect] [4EBD08E7] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCloneBitmapArea] [4EC68126] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCloneImage] [4EC198A5] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipLoadImageFromFile] [4EBF7379] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateBitmapFromHBITMAP] [4EBDB331] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateBitmapFromResource] [4EC25B4B] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateFromHWND] [4EC14C05] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDrawImageI] [4EC62A9A] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipCreateImageAttributes] [4EBFB716] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipAlloc] [4EBC69A9] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipFree] [4EBC697E] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Logitech\\SetPoint\\SetPoint.exe[1120] @ C:\\WINDOWS\\system32\\KemWnd.dll [gdiplus.dll!GdipDisposeImageAttributes] [4EBFB797] C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_f0b4c2df\\gdiplus.dll (Microsoft GDI+/Microsoft Corporation)
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_int] [004B0C80] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_reset] [0048D8F0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_step] [004B0600] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_errmsg] [0048D1E0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_busy_timeout] [0048CC80] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_open16] [0048D7F0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_close] [0048C690] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_int64] [004B0CC0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_finalize] [0048D8C0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_prepare16] [004987D0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_prepare] [00498350] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_count] [004B0A90] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_double] [004B0C40] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_bytes16] [004B0C00] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_text16] [004B0D40] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDAgent.exe[1576] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_name16] [004B0E30] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\UxTheme.dll [ADVAPI32.dll!CryptVerifySignatureW] [555821D0] c:\\windows\\system32\\uxtuneup.dll (TuneUp Theme Extension/TuneUp Software)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\UxTheme.dll [KERNEL32.dll!ReadFile] [55582120] c:\\windows\\system32\\uxtuneup.dll (TuneUp Theme Extension/TuneUp Software)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastls.dll [COMCTL32.dll!InitCommonControlsEx] [5D523619] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASAPI32.dll [TAPI32.dll!lineGetTranslateCapsW] [76EBFB54] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASAPI32.dll [TAPI32.dll!lineGetCountryW] [76EA88E6] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASAPI32.dll [TAPI32.dll!lineTranslateAddressW] [76EBFFA2] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!lineTranslateDialogW] [76EBE8A5] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!lineSetCurrentLocation] [76EBEA17] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!LOpenDialAsst] [76EA423F] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!lineGetCountryW] [76EA88E6] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!lineGetTranslateCapsW] [76EBFB54] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!lineConfigDialogW] [76EAFBF6] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\RASDLG.dll [TAPI32.dll!lineTranslateAddressW] [76EBFFA2] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineMakeCallA] [76EAA072] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineAnswer] [76EA6432] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineAccept] [76EA6293] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetDevCapsW] [76EA8CD4] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineShutdown] [76EB013F] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineOpenA] [76EAA600] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetDevConfigA] [76EA8EAE] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetIDA] [76EA959A] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineSetDevConfigA] [76EAB73E] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineInitializeExA] [76EB0075] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineDevSpecific] [76EA6D86] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetCallStatus] [76EA8836] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineNegotiateAPIVersion] [76EAA378] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineNegotiateExtVersion] [76EAA41E] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetCallInfoA] [76EA874C] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineDrop] [76EA70FE] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineDeallocateCall] [76EA6CC9] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetAddressCapsA] [76EA78FB] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineClose] [76EA665A] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineSetStatusMessages] [76EABA51] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\WINDOWS\\System32\\svchost.exe[1768] @ C:\\WINDOWS\\System32\\rastapi.dll [TAPI32.dll!lineGetDevCapsA] [76EA8D64] C:\\WINDOWS\\System32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!PropertySheetW] [5D558C61] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!CreatePropertySheetPageW] [5D55396F] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!InitCommonControlsEx] [5D523619] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!ImageList_GetIconSize] [5D52E33A] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!ImageList_Destroy] [5D5303D8] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!ImageList_Draw] [5D53DFF1] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\WINDOWS\\system32\\COMDLG32.dll [COMCTL32.dll!CreateToolbarEx] [5D53E56B] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Destroy] [5D5303D8] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_LoadImageW] [5D564834] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_GetImageCount] [5D52D578] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_AddMasked] [5D531FF8] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_GetIcon] [5D55229A] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Read] [5D56406D] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!InitCommonControlsEx] [5D523619] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Create] [5D530205] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Add] [5D562EC5] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Remove] [5D5306DF] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Write] [5D562DF5] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_Duplicate] [5D562DB0] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Common Files\\G DATA\\AVKProxy\\AVKProxy.exe[1992] @ C:\\Program Files\\Common Files\\G DATA\\ObjBrwse.dll [COMCTL32.dll!ImageList_ReplaceIcon] [5D52C7F4] C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation)
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_int] [00500C80] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_reset] [004DD8F0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_step] [00500600] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_errmsg] [004DD1E0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_busy_timeout] [004DCC80] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_open16] [004DD7F0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_close] [004DC690] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_int64] [00500CC0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_finalize] [004DD8C0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_prepare16] [004E87D0] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_prepare] [004E8350] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_count] [00500A90] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_double] [00500C40] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_bytes16] [00500C00] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_text16] [00500D40] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\Raxco\\PerfectDisk\\PDEngine.exe[2688] @ C:\\Program Files\\Raxco\\PerfectDisk\\PDDb.dll [sqlite3.dll!sqlite3_column_name16] [00500E30] C:\\Program Files\\Raxco\\PerfectDisk\\sqlite3.dll
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFwSvc.exe[3324] @ C:\\WINDOWS\\system32\\Rasapi32.dll [TAPI32.dll!lineGetTranslateCapsW] [76EBFB54] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFwSvc.exe[3324] @ C:\\WINDOWS\\system32\\Rasapi32.dll [TAPI32.dll!lineGetCountryW] [76EA88E6] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
IAT C:\\Program Files\\G DATA\\TotalCare\\Firewall\\GDFwSvc.exe[3324] @ C:\\WINDOWS\\system32\\Rasapi32.dll [TAPI32.dll!lineTranslateAddressW] [76EBFFA2] C:\\WINDOWS\\system32\\TAPI32.dll (Biblioteka DLL klienta interfejsu API usługi Telefonii dla systemu Microsoft® Windows(TM)/Microsoft Corporation)
---- Devices - GMER 1.0.15 ----
Device \\FileSystem\\Ntfs \\Ntfs 8A3841F8
Device \\FileSystem\\Ntfs \\Ntfs TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Ntfs \\Ntfs Ntfs.sys (NT File System Driver/Microsoft Corporation)
Device \\FileSystem\\Ntfs \\Ntfs TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Ntfs \\Ntfs TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Mup \\Dfs Mup.sys (Multiple UNC Provider driver/Microsoft Corporation)
Device \\Device\\00000032
Device \\Driver\\KSecDD \\Device\\KsecDD KSecDD.sys (Kernel Security Support Provider Interface/Microsoft Corporation)
Device \\Driver\\KSecDD \\Device\\KsecDD TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\NDIS \\Device\\Ndis NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\LHidFilt \\Device\\0000008e Wdf01000.sys (WDF Dynamic/Microsoft Corporation)
Device \\Driver\\Beep \\Device\\Beep Beep.SYS (BEEP Driver/Microsoft Corporation)
Device \\Driver\\Beep \\Device\\Beep TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\RasPppoe \\Device\\{2D614967-3CC9-4761-8B8A-EAE8756C538C} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Device\\00000025
Device \\Device\\00000019
Device \\Driver\\PnpManager \\Device\\00000033 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000033 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000033 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\0000008f
Device \\FileSystem\\NetBIOS \\Device\\Netbios netbios.sys (NetBIOS interface driver/Microsoft Corporation)
Device \\FileSystem\\NetBIOS \\Device\\Netbios TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\00000026
Device \\Driver\\PnpManager \\Device\\00000034 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000034 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000034 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\swenum \\Device\\KSENUM#00000001 swenum.sys (Plug and Play Software Device Enumerator/Microsoft Corporation)
Device \\Driver\\swenum \\Device\\KSENUM#00000001 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\Ip tcpip.sys (TCP/IP Protocol Driver/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\Ip GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\AsyncMac \\Device\\{0AD4BB9B-23D2-4DD1-B682-61C7A3FD06A5} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\PSched \\Device\\{32CD7158-0CDA-46F3-BF7D-727001D51310} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Device\\00000040
Device \\Driver\\TermDD \\Device\\RDP_CONSOLE0 termdd.sys (Terminal Server Driver/Microsoft Corporation)
Device \\FileSystem\\DefragFS \\Device\\RaxcoPerfectDisk DefragFS.sys (Defragmentation Support Driver/Raxco Software, Inc.)
Device \\FileSystem\\DefragFS \\Device\\RaxcoPerfectDisk TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\00000027
Device \\Driver\\swenum \\Device\\KSENUM#00000002 swenum.sys (Plug and Play Software Device Enumerator/Microsoft Corporation)
Device \\Driver\\swenum \\Device\\KSENUM#00000002 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000035 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000035 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000035 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Kbdclass \\Device\\KeyboardClass0 kbdclass.sys (Sterownik klasy klawiatury/Microsoft Corporation)
Device \\Driver\\Kbdclass \\Device\\KeyboardClass0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\Video0
Device \\Driver\\Wdf01000 \\Device\\KMDF0 Wdf01000.sys (WDF Dynamic/Microsoft Corporation)
Device \\Driver\\Wdf01000 \\Device\\KMDF0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Fips \\Device\\Fips Fips.SYS (Sterownik kryptografii FIPS/Microsoft Corporation)
Device \\Driver\\Fips \\Device\\Fips TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\00000041
Device \\Driver\\TermDD \\Device\\RDP_CONSOLE1 termdd.sys (Terminal Server Driver/Microsoft Corporation)
Device \\Driver\\MTsensor \\Device\\ATKACPI ASACPI.sys
Device \\Driver\\MTsensor \\Device\\ATKACPI TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\00000028
Device \\Driver\\PnpManager \\Device\\00000036 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000036 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000036 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\KeyboardClass1
Device \\Driver\\NDProxy \\Device\\NDProxy NDProxy.SYS (NDIS Proxy/Microsoft Corporation)
Device \\Driver\\NDProxy \\Device\\NDProxy TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\Video1
Device \\Device\\00000042
Device \\Device\\00000029
Device \\Driver\\PnpManager \\Device\\00000037 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000037 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000037 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\L1e \\Device\\{DF007F36-31E2-4CBA-A490-DE850865F7FF} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Device\\Video2
Device \\Device\\KeyboardClass2
Device \\Driver\\Mouclass \\Device\\PointerClass0 mouclass.sys (Sterownik klasy myszy/Microsoft Corporation)
Device \\Driver\\Mouclass \\Device\\PointerClass0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\FsGrd
Device \\Driver\\Serial \\Device\\Serial0 serial.sys (Sterownik urządzenia szeregowego/Microsoft Corporation)
Device \\Driver\\Serial \\Device\\Serial0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\00000050 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\00000043
Device \\Device\\0000000a
Device \\Device\\00000038
Device \\Device\\Video3
Device \\Device\\PointerClass1
Device \\Driver\\usbuhci \\Device\\USBPDO-0 89F401F8
Device \\Driver\\usbuhci \\Device\\USBPDO-0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\Processor
Device \\Device\\00000051
Device \\Driver\\ACPI \\Device\\00000044 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\0000000b
Device \\Driver\\WMIxWDM \\Device\\WMIDataDevice TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\WMIxWDM \\Device\\WMIDataDevice TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\WMIxWDM \\Device\\WMIDataDevice TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\NIC1394 \\Device\\{3141AB93-8B44-4D05-80D1-4778F546FA51} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\GDTdiInterceptor \\Device\\GDTdiInterceptorDevice GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\PnpManager \\Device\\00000039 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000039 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000039 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBPDO-1 89F401F8
Device \\Driver\\usbuhci \\Device\\USBPDO-1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\GRD \\Device\\GRootkitDetector GRD.sys (G DATA Rootkit Detector Driver/G DATA Software)
Device \\Device\\00000052
Device \\Driver\\ACPI \\Device\\00000045 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawTape TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawTape TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawTape TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\0000000c
Device \\Driver\\usbuhci \\Device\\USBPDO-2 89F401F8
Device \\Driver\\usbuhci \\Device\\USBPDO-2 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\00000053
Device \\Device\\00000046
Device \\Device\\NTPNP_PCI0000
Device \\Device\\0000001a
Device \\Device\\0000000d
Device \\Driver\\usbehci \\Device\\USBPDO-3 89E641F8
Device \\Driver\\usbehci \\Device\\USBPDO-3 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI_PNP4044 \\Device\\00000047 spjz.sys
Device \\Driver\\PCI_PNP4044 \\Device\\00000047 spjz.sys
Device \\Driver\\sfhlp02 \\Device\\sfhlp02i sfhlp02.sys (StarForce Protection Helper Driver/Protection Technology)
Device \\Driver\\sfhlp02 \\Device\\sfhlp02i TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Lbd \\Device\\Lbd Lbd.sys (Boot Driver/Lavasoft AB)
Device \\Device\\00000060
Device \\Driver\\ACPI \\Device\\00000054 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\NTPNP_PCI0001
Device \\Device\\0000001b
Device \\Device\\0000000e
Device \\Device\\KSENUM#00000009
Device \\Driver\\RasAcd \\Device\\RasAcd rasacd.sys (RAS Automatic Connection Driver/Microsoft Corporation)
Device \\Driver\\RasAcd \\Device\\RasAcd TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\IpNat \\Device\\IPNAT ipnat.sys (IP Network Address Translator/Microsoft Corporation)
Device \\Driver\\IpNat \\Device\\IPNAT TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PSched \\Device\\{D094B300-207E-4671-B352-1E5FCDAB9B43} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBPDO-4 89F401F8
Device \\Driver\\usbuhci \\Device\\USBPDO-4 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0002 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0002 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\PSched \\Device\\PSched NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\GearAspiWDM \\Device\\GEARAspiWDMDevice GEARAspiWDM.sys (CD DVD Filter/GEAR Software Inc.)
Device \\Driver\\ACPI \\Device\\00000061 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\00000055 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\00000048
Device \\Device\\0000001c
Device \\Device\\0000000f
Device \\Driver\\Tcpip \\Device\\Tcp tcpip.sys (TCP/IP Protocol Driver/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\Tcp GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\GDTdiInterceptor \\Device\\GDTdiIcptStatsDevice GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\usbuhci \\Device\\USBPDO-5 89F401F8
Device \\Driver\\usbuhci \\Device\\USBPDO-5 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0003 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0003 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Device\\{6A4C6BBB-706B-4417-B130-6B4124915C90}
Device \\Device\\00000062
Device \\Driver\\ACPI \\Device\\00000056 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\00000049
Device \\Device\\NTPNP_PCI0010
Device \\Device\\0000001d
Device \\Device\\{94A7B164-0127-465D-BCEF-522BC454CE8B}
Device \\Driver\\usbuhci \\Device\\USBPDO-6 89F401F8
Device \\Driver\\usbuhci \\Device\\USBPDO-6 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0011 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0011 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0004 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0004 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\sfdrv01 \\Device\\sfdrv01 sfdrv01.sys (StarForce Protection Environment Driver/Protection Technology)
Device \\Driver\\sfdrv01 \\Device\\sfdrv01 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\00000063
Device \\Driver\\ACPI \\Device\\00000057 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\0000002a
Device \\Device\\0000001e
Device \\Driver\\Ftdisk \\Device\\HarddiskVolume1 8A3861F8
Device \\Driver\\Ftdisk \\Device\\HarddiskVolume1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\GDNdisIc \\Device\\GDNdisIc GDNdisIc.sys (NDIS packet redirector/G DATA Software AG)
Device \\Driver\\GDNdisIc \\Device\\GDNdisIc TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\uwnoikob \\Device\\uwnoikob uwnoikob.sys
Device \\Driver\\uwnoikob \\Device\\uwnoikob TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\Http\\Filter
Device \\Device\\Http\\AppPool
Device \\Device\\Http\\Control
Device \\Driver\\usbehci \\Device\\USBPDO-7 89E641F8
Device \\Driver\\usbehci \\Device\\USBPDO-7 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0012 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0012 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0005 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0005 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\sfvfs02 \\Device\\sfvfs02 sfvfs02.sys (StarForce Protection VFS Driver/Protection Technology)
Device \\Driver\\ACPI \\Device\\00000071 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Device\\i
Device \\Driver\\ACPI \\Device\\00000058 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\Cdrom \\Device\\CdRom0 89E44500
Device \\Driver\\Cdrom \\Device\\CdRom0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Ftdisk \\Device\\HarddiskVolume2 8A3861F8
Device \\Driver\\Ftdisk \\Device\\HarddiskVolume2 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\TermDD \\Device\\Termdd termdd.sys (Terminal Server Driver/Microsoft Corporation)
Device \\Driver\\sysaudio \\Device\\sysaudio ks.sys (Kernel CSA Library/Microsoft Corporation)
Device \\Driver\\sysaudio \\Device\\sysaudio TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\sysaudio \\Device\\sysaudio ks.sys (Kernel CSA Library/Microsoft Corporation)
Device \\Driver\\sysaudio \\Device\\sysaudio sysaudio.sys (System Audio WDM Filter/Microsoft Corporation)
Device \\FileSystem\\Rdbss \\Device\\FsWrap rdbss.sys (Redirected Drive Buffering SubSystem Driver/Microsoft Corporation)
Device \\FileSystem\\Rdbss \\Device\\FsWrap TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0013 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0013 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\00000072 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\00000059 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0006 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0006 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\Cdrom \\Device\\CdRom1 89E44500
Device \\Driver\\Cdrom \\Device\\CdRom1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Ftdisk \\Device\\HarddiskVolume3 8A3861F8
Device \\Driver\\Ftdisk \\Device\\HarddiskVolume3 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\atapi \\Device\\Ide\\IdeDeviceP3T0L0-12 [F7859B40] atapi.sys[unknown section] {MOV EDX, [ESP+0x8]; LEA ECX, [ESP+0x4]; PUSH EAX; MOV EAX, ESP; PUSH EAX}
Device \\Driver\\atapi \\Device\\Ide\\IdeDeviceP3T0L0-12 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\atapi \\Device\\Ide\\IdeDeviceP0T0L0-3 [F7859B40] atapi.sys[unknown section] {MOV EDX, [ESP+0x8]; LEA ECX, [ESP+0x4]; PUSH EAX; MOV EAX, ESP; PUSH EAX}
Device \\Driver\\atapi \\Device\\Ide\\IdeDeviceP0T0L0-3 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\atapi \\Device\\Ide\\IdePort0 [F7859B40] atapi.sys[unknown section] {MOV EDX, [ESP+0x8]; LEA ECX, [ESP+0x4]; PUSH EAX; MOV EAX, ESP; PUSH EAX}
Device \\Driver\\atapi \\Device\\Ide\\IdePort0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde1Channel0-2 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde1Channel0-2 PCIIDEX.SYS (PCI IDE Bus Driver Extension/Microsoft Corporation)
Device \\Driver\\atapi \\Device\\Ide\\IdePort1 [F7859B40] atapi.sys[unknown section] {MOV EDX, [ESP+0x8]; LEA ECX, [ESP+0x4]; PUSH EAX; MOV EAX, ESP; PUSH EAX}
Device \\Driver\\atapi \\Device\\Ide\\IdePort1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde0Channel0-0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde0Channel0-0 PCIIDEX.SYS (PCI IDE Bus Driver Extension/Microsoft Corporation)
Device \\Driver\\atapi \\Device\\Ide\\IdePort2 [F7859B40] atapi.sys[unknown section] {MOV EDX, [ESP+0x8]; LEA ECX, [ESP+0x4]; PUSH EAX; MOV EAX, ESP; PUSH EAX}
Device \\Driver\\atapi \\Device\\Ide\\IdePort2 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\atapi \\Device\\Ide\\IdePort3 [F7859B40] atapi.sys[unknown section] {MOV EDX, [ESP+0x8]; LEA ECX, [ESP+0x4]; PUSH EAX; MOV EAX, ESP; PUSH EAX}
Device \\Driver\\atapi \\Device\\Ide\\IdePort3 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde1Channel1-3 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde1Channel1-3 PCIIDEX.SYS (PCI IDE Bus Driver Extension/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde0Channel1-1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCIIde \\Device\\Ide\\PciIde0Channel1-1 PCIIDEX.SYS (PCI IDE Bus Driver Extension/Microsoft Corporation)
Device \\Device\\Ide\\PciIde0
Device \\Device\\Ide\\PciIde1
Device \\Driver\\HookCentre \\Device\\HookCentreDevice0 HookCentre.sys (Security Hook/G DATA Software AG)
Device \\Driver\\HookCentre \\Device\\HookCentreDevice0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\0000003a TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\0000003a TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\0000003a TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-9 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-9 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0014 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0014 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000073 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000073 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0020 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0020 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\00000066 ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\0000003b TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\0000003b TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\0000003b TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\HookCentre \\Device\\HookCentreDevice1 HookCentre.sys (Security Hook/G DATA Software AG)
Device \\Driver\\HookCentre \\Device\\HookCentreDevice1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000080 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000080 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000074 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000074 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0021 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0021 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-10 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-10 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000075 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000075 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PxHelp20 \\Device\\PxHelperDevice0 PxHelp20.sys (Px Engine Device Driver for Windows 2000/XP/Sonic Solutions)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0022 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0022 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0016 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0016 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\swenum \\Device\\KSENUM#0000000a swenum.sys (Plug and Play Software Device Enumerator/Microsoft Corporation)
Device \\Driver\\swenum \\Device\\KSENUM#0000000a TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0023 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PCI \\Device\\NTPNP_PCI0023 pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-11 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-11 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000076 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000076 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000090 HIDCLASS.SYS (Hid Class Library/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000090 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\NetBT \\Device\\NetBt_Wins_Export 891FA1F8
Device \\Driver\\NetBT \\Device\\NetBt_Wins_Export TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-12 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-12 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbccgp \\Device\\00000083 usbccgp.sys (USB Common Class Generic Parent Driver/Microsoft Corporation)
Device \\Driver\\usbccgp \\Device\\00000083 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000091 HIDCLASS.SYS (Hid Class Library/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000091 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbccgp \\Device\\00000084 usbccgp.sys (USB Common Class Generic Parent Driver/Microsoft Corporation)
Device \\Driver\\usbccgp \\Device\\00000084 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Arp1394 \\Device\\ARP1394 arp1394.sys (IP/1394 Arp Client/Microsoft Corporation)
Device \\Driver\\Arp1394 \\Device\\ARP1394 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI_HAL \\Device\\0000003f TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI_HAL \\Device\\0000003f hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation)
Device \\Driver\\NetBT \\Device\\NetBT_Tcpip_{DF007F36-31E2-4CBA-A490-DE850865F7FF} 891FA1F8
Device \\Driver\\NetBT \\Device\\NetBT_Tcpip_{DF007F36-31E2-4CBA-A490-DE850865F7FF} TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\NetBT \\Device\\NetbiosSmb 891FA1F8
Device \\Driver\\NetBT \\Device\\NetbiosSmb TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-14 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\USBPDO-14 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000079 usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\00000079 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\speedfan \\Device\\speedfan speedfan.sys (SpeedFan Device Driver/Windows (R) 2000 DDK provider)
Device \\Driver\\speedfan \\Device\\speedfan TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\0000004c ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\LMouFilt \\Device\\00000086 Wdf01000.sys (WDF Dynamic/Microsoft Corporation)
Device \\Driver\\sfdrv01 \\Device\\sfdrv01i sfdrv01.sys (StarForce Protection Environment Driver/Protection Technology)
Device \\Driver\\sfdrv01 \\Device\\sfdrv01i TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\MountMgr \\Device\\MountPointManager MountMgr.sys (Mount Manager/Microsoft Corporation)
Device \\Driver\\MountMgr \\Device\\MountPointManager TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000087 HIDCLASS.SYS (Hid Class Library/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000087 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\0000005b ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\sfhlp02 \\Device\\sfhlp02 sfhlp02.sys (StarForce Protection Helper Driver/Protection Technology)
Device \\Driver\\sfhlp02 \\Device\\sfhlp02 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ohci1394 \\Device\\0000005c 1394BUS.SYS (1394 Bus Device Driver/Microsoft Corporation)
Device \\Driver\\ohci1394 \\Device\\0000005c TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ohci1394 \\Device\\0000005c ohci1394.sys (1394 OpenHCI Port Driver/Microsoft Corporation)
Device \\Driver\\Wanarp \\Device\\WANARP wanarp.sys (MS Remote Access and Routing ARP Driver/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000088 HIDCLASS.SYS (Hid Class Library/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\00000088 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Srv \\Device\\LanmanServer srv.sys (Server driver/Microsoft Corporation)
Device \\FileSystem\\Mup \\Device\\Mup Mup.sys (Multiple UNC Provider driver/Microsoft Corporation)
Device \\Driver\\L1e \\Device\\Artemis.00 NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\0000004f ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\Udp tcpip.sys (TCP/IP Protocol Driver/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\Udp GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\cpuz132 \\Device\\cpuz132 cpuz132_x32.sys (CPUID Driver/Windows (R) Codename Longhorn DDK provider)
Device \\Driver\\cpuz132 \\Device\\cpuz132 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\monfilt \\Device\\CSIO00 monfilt.sys (Creative WDM Audio Driver (32-bit)/Creative Technology Ltd.)
Device \\Driver\\giveio \\Device\\giveio giveio.sys
Device \\Driver\\giveio \\Device\\giveio TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\isapnp \\Device\\0000005d isapnp.sys (Sterownik magistrali ISA PNP/Microsoft Corporation)
Device \\Driver\\isapnp \\Device\\0000005d TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\Harddisk0\\DP(1)0x7e00-0x1f0ca9ac00+1
Device \\Device\\Harddisk0\\DP(3)0x3e1954d200-0x1f0d272e00+3
Device \\Driver\\Disk \\Device\\Harddisk0\\DR0 CLASSPNP.SYS (SCSI Class System Dll/Microsoft Corporation)
Device \\Driver\\Disk \\Device\\Harddisk0\\DR0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Device\\Harddisk0\\DP(2)0x1f0caaa800-0x1f0ca9ac00+2
Device \\Driver\\Tcpip \\Device\\RawIp tcpip.sys (TCP/IP Protocol Driver/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\RawIp GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\ACPI \\Device\\0000006a ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\NdisWan \\Device\\NdisWanIp NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\sfvfs02 \\Device\\sfvfs02i sfvfs02.sys (StarForce Protection VFS Driver/Protection Technology)
Device \\Driver\\AsyncMac \\Device\\ASYNCMAC NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawDisk TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawDisk TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawDisk TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000002 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000002 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PnpManager \\Device\\00000002 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBFDO-0 89F401F8
Device \\Driver\\usbuhci \\Device\\USBFDO-0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Null \\Device\\Null Null.SYS (NULL Driver/Microsoft Corporation)
Device \\Driver\\Null \\Device\\Null TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\PptpMiniport \\Device\\{ED16FEB3-1778-49B8-8416-1FB7D758E379} NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\0000006c ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\ohci1394 \\Device\\1394BUS0 1394BUS.SYS (1394 Bus Device Driver/Microsoft Corporation)
Device \\Driver\\ohci1394 \\Device\\1394BUS0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ohci1394 \\Device\\1394BUS0 ohci1394.sys (1394 OpenHCI Port Driver/Microsoft Corporation)
Device \\Driver\\GDMnIcpt \\Device\\MiniIcptControlDevice0 MiniIcpt.sys (Filesystem MiniInterceptor (Mini Filter)/G DATA Software AG)
Device \\Driver\\IPSec \\Device\\IPSEC ipsec.sys (IPSec Driver/Microsoft Corporation)
Device \\Driver\\IPSec \\Device\\IPSEC TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007a usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007a TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBFDO-1 89F401F8
Device \\Driver\\usbuhci \\Device\\USBFDO-1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\0000006d ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\FileSystem\\MRxSmb \\Device\\LanmanDatagramReceiver 891F11F8
Device \\FileSystem\\MRxSmb \\Device\\LanmanDatagramReceiver rdbss.sys (Redirected Drive Buffering SubSystem Driver/Microsoft Corporation)
Device \\Driver\\NdisTapi \\Device\\NdisTapi ndistapi.sys (NDIS 3.0 connection wrapper driver/Microsoft Corporation)
Device \\Driver\\NdisTapi \\Device\\NdisTapi TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\NdisWan \\Device\\NdisWan NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\IPMULTICAST tcpip.sys (TCP/IP Protocol Driver/Microsoft Corporation)
Device \\Driver\\Tcpip \\Device\\IPMULTICAST GDTdiIcpt.sys (G DATA Software AG)
Device \\Driver\\usbhub \\Device\\0000007b usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007b TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBFDO-2 89F401F8
Device \\Driver\\usbuhci \\Device\\USBFDO-2 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\sptd \\Device\\1159594044 spjz.sys
Device \\Driver\\ACPI \\Device\\0000006e ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\Driver\\Gpc \\Device\\Gpc msgpc.sys (MS General Packet Classifier/Microsoft Corporation)
Device \\FileSystem\\MRxSmb \\Device\\LanmanRedirector 891F11F8
Device \\FileSystem\\MRxSmb \\Device\\LanmanRedirector rdbss.sys (Redirected Drive Buffering SubSystem Driver/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007c usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007c TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbehci \\Device\\USBFDO-3 89E641F8
Device \\Driver\\usbehci \\Device\\USBFDO-3 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ACPI \\Device\\0000006f ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation)
Device \\FileSystem\\Npfs \\Device\\NamedPipe Npfs.SYS (NPFS Driver/Microsoft Corporation)
Device \\FileSystem\\Npfs \\Device\\NamedPipe TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBFDO-4 89F401F8
Device \\Driver\\usbuhci \\Device\\USBFDO-4 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\Ftdisk \\Device\\FtControl 8A3861F8
Device \\Driver\\Ftdisk \\Device\\FtControl TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Msfs \\Device\\Mailslot Msfs.SYS (Mailslot driver/Microsoft Corporation)
Device \\FileSystem\\Msfs \\Device\\Mailslot TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Msfs \\Device\\Mailslot Msfs.SYS (Mailslot driver/Microsoft Corporation)
Device \\Driver\\usbccgp \\Device\\0000007e usbccgp.sys (USB Common Class Generic Parent Driver/Microsoft Corporation)
Device \\Driver\\usbccgp \\Device\\0000007e TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBFDO-5 89F401F8
Device \\Driver\\usbuhci \\Device\\USBFDO-5 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\AFD \\Device\\Afd afd.sys (Ancillary Function Driver for WinSock/Microsoft Corporation)
Device \\Driver\\Ndisuio \\Device\\Ndisuio ndisuio.sys (NDIS User mode I/O Driver/Microsoft Corporation)
Device \\Driver\\Ndisuio \\Device\\Ndisuio TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007f usbhub.sys (Default Hub Driver for USB/Microsoft Corporation)
Device \\Driver\\usbhub \\Device\\0000007f TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbuhci \\Device\\USBFDO-6 89F401F8
Device \\Driver\\usbuhci \\Device\\USBFDO-6 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawCdRom TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawCdRom TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\RAW \\Device\\RawCdRom TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\0000008c HIDCLASS.SYS (Hid Class Library/Microsoft Corporation)
Device \\Driver\\hidusb \\Device\\0000008c TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\AsIO \\Device\\Asusgio AsIO.sys
Device \\Driver\\AsIO \\Device\\Asusgio TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\usbehci \\Device\\USBFDO-7 89E641F8
Device \\Driver\\usbehci \\Device\\USBFDO-7 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ay3kfb35 \\Device\\Scsi\\ay3kfb351 89EBB1F8
Device \\Driver\\ay3kfb35 \\Device\\Scsi\\ay3kfb351 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\ay3kfb35 \\Device\\Scsi\\ay3kfb351Port5Path0Target0Lun0 89EBB1F8
Device \\Driver\\ay3kfb35 \\Device\\Scsi\\ay3kfb351Port5Path0Target0Lun0 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\JRAID \\Device\\Scsi\\JRAID1 8A3851F8
Device \\Driver\\JRAID \\Device\\Scsi\\JRAID1 TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\Driver\\GDTdiInterceptor \\Device\\GDTdiIcptCheckDevice GDTdiIcpt.sys (G DATA Software AG)
Device \\FileSystem\\Mup \\Device\\WinDfs\\Root Mup.sys (Multiple UNC Provider driver/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\UdfsCdRomRecognizer Fs_Rec.SYS (File System Recognizer Driver/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\UdfsCdRomRecognizer TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Filters\\FltMgrMsg
Device \\FileSystem\\Filters\\SystemRestore
Device \\FileSystem\\FltMgr \\FileSystem\\Filters\\FltMgr fltmgr.sys (Microsoft Filesystem Filter Manager/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\FatCdRomRecognizer Fs_Rec.SYS (File System Recognizer Driver/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\FatCdRomRecognizer TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\CdfsRecognizer Fs_Rec.SYS (File System Recognizer Driver/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\CdfsRecognizer TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\FatDiskRecognizer Fs_Rec.SYS (File System Recognizer Driver/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\FatDiskRecognizer TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\UdfsDiskRecognizer Fs_Rec.SYS (File System Recognizer Driver/Microsoft Corporation)
Device \\FileSystem\\Fs_Rec \\FileSystem\\UdfsDiskRecognizer TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Cdfs \\Cdfs 891C2500
Device \\FileSystem\\Cdfs \\Cdfs TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
Device \\FileSystem\\Cdfs \\Cdfs Cdfs.SYS (CD-ROM File System Driver/Microsoft Corporation)
Device \\FileSystem\\Cdfs \\Cdfs TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation)
---- Modules - GMER 1.0.15 ----
Module \\WINDOWS\\system32\\TUKERNEL.EXE (Jądro i system NT/Microsoft Corporation) 804D7000-80721000 (2400256 bytes)
Module \\WINDOWS\\system32\\hal.dll (Hardware Abstraction Layer DLL/Microsoft Corporation) 80721000-80741D00 (134400 bytes)
Module \\WINDOWS\\system32\\KDCOM.DLL (Kernel Debugger HW Extension DLL/Microsoft Corporation) F7987000-F7989000 (8192 bytes)
Module \\WINDOWS\\system32\\BOOTVID.dll (VGA Boot Driver/Microsoft Corporation) F7897000-F789A000 (12288 bytes)
Module spjz.sys F74E3000-F75D6000 (995328 bytes)
Module \\WINDOWS\\System32\\Drivers\\WMILIB.SYS (WMILIB WMI support library Dll/Microsoft Corporation) F7989000-F798B000 (8192 bytes)
Module \\WINDOWS\\System32\\Drivers\\SCSIPORT.SYS (SCSI Port Driver/Microsoft Corporation) F74CB000-F74E3000 (98304 bytes)
Module ACPI.sys (Sterownik ACPI dla systemu NT/Microsoft Corporation) F749C000-F74CB000 (192512 bytes)
Module pci.sys (Licznik NT Plug and Play PCI/Microsoft Corporation) F748B000-F749C000 (69632 bytes)
Module ohci1394.sys (1394 OpenHCI Port Driver/Microsoft Corporation) F75F7000-F7607000 (65536 bytes)
Module \\WINDOWS\\system32\\DRIVERS\\1394BUS.SYS (1394 Bus Device Driver/Microsoft Corporation) F7607000-F7615000 (57344 bytes)
Module isapnp.sys (Sterownik magistrali ISA PNP/Microsoft Corporation) F7617000-F7621000 (40960 bytes)
Module pciide.sys (Rodzajowy sterownik magistrali PCI IDE/Microsoft Corporation) F7A4F000-F7A50000 (4096 bytes)
Module \\WINDOWS\\system32\\DRIVERS\\PCIIDEX.SYS (PCI IDE Bus Driver Extension/Microsoft Corporation) F7707000-F770E000 (28672 bytes)
Module MountMgr.sys (Mount Manager/Microsoft Corporation) F7627000-F7632000 (45056 bytes)
Module ftdisk.sys (Sterownik dysku FT/Microsoft Corporation) F7868000-F7887000 (126976 bytes)
Module PartMgr.sys (Partition Manager/Microsoft Corporation) F770F000-F7714000 (20480 bytes)
Module VolSnap.sys (Sterownik kopiowania woluminów w tle/Microsoft Corporation) F7637000-F7644000 (53248 bytes)
Module atapi.sys (IDE/ATAPI Port Driver/Microsoft Corporation) F7850000-F7868000 (98304 bytes)
Module jraid.sys (JMicron JMB36X RAID Driver/JMicron Technology Corp.) F7837000-F7850000 (102400 bytes)
Module disk.sys (PnP Disk Driver/Microsoft Corporation) F7647000-F7650000 (36864 bytes)
Module \\WINDOWS\\system32\\DRIVERS\\CLASSPNP.SYS (SCSI Class System Dll/Microsoft Corporation) F7657000-F7664000 (53248 bytes)
Module fltmgr.sys (Microsoft Filesystem Filter Manager/Microsoft Corporation) B87E0000-B8800000 (131072 bytes)
Module sr.sys (Sterownik filtru systemu plików Przywracania systemu/Microsoft Corporation) B87CE000-B87E0000 (73728 bytes)
Module Lbd.sys (Boot Driver/Lavasoft AB) F7667000-F7676000 (61440 bytes)
Module PxHelp20.sys (Px Engine Device Driver for Windows 2000/XP/Sonic Solutions) F7677000-F7680000 (36864 bytes)
Module KSecDD.sys (Kernel Security Support Provider Interface/Microsoft Corporation) B8717000-B872E000 (94208 bytes)
Module DefragFS.sys (Defragmentation Support Driver/Raxco Software, Inc.) B8704000-B8717000 (77824 bytes)
Module Ntfs.sys (NT File System Driver/Microsoft Corporation) B8677000-B8704000 (577536 bytes)
Module NDIS.sys (NDIS 5.1 wrapper driver/Microsoft Corporation) B864A000-B8677000 (184320 bytes)
Module speedfan.sys (SpeedFan Device Driver/Windows (R) 2000 DDK provider) F798B000-F798D000 (8192 bytes)
Module sfvfs02.sys (StarForce Protection VFS Driver/Protection Technology) B8637000-B864A000 (77824 bytes)
Module sfhlp02.sys (StarForce Protection Helper Driver/Protection Technology) F7717000-F771F000 (32768 bytes)
Module sfdrv01.sys (StarForce Protection Environment Driver/Protection Technology) B8625000-B8637000 (73728 bytes)
Module Mup.sys (Multiple UNC Provider driver/Microsoft Corporation) B860B000-B8625000 (106496 bytes)
Module giveio.sys F7A50000-F7A51000 (4096 bytes)
Module GDNdisIc.sys (NDIS packet redirector/G DATA Software AG) F771F000-F7725000 (24576 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\intelppm.sys (Sterownik urządzenia procesora/Microsoft Corporation) B874E000-B8758000 (40960 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\nv4_mini.sys (NVIDIA Compatible Windows 2000 Miniport Driver, Version 195.62 /NVIDIA Corporation) B6978000-B733C000 (10240000 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\VIDEOPRT.SYS (Video Port Driver/Microsoft Corporation) B6964000-B6978000 (81920 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\usbuhci.sys (UHCI USB Miniport Driver/Microsoft Corporation) F7787000-F778D000 (24576 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\USBPORT.SYS (USB 1.1 & 2.0 Port Driver/Microsoft Corporation) B6940000-B6964000 (147456 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\usbehci.sys (EHCI eUSB Miniport Driver/Microsoft Corporation) F778F000-F7797000 (32768 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\HDAudBus.sys (High Definition Audio Bus Driver v1.0a/Windows (R) Server 2003 DDK provider) B6918000-B6940000 (163840 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\nic1394.sys (IEEE1394 Ndis Miniport and Call Manager/Microsoft Corporation) B873E000-B874E000 (65536 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\l1e51x86.sys (Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller ndis miniport driver/Atheros Communications, Inc.) B872E000-B873C000 (57344 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ASACPI.sys F79E5000-F79E7000 (8192 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\serial.sys (Sterownik urządzenia szeregowego/Microsoft Corporation) B834A000-B835A000 (65536 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\serenum.sys (Serial Port Enumerator/Microsoft Corporation) B8203000-B8207000 (16384 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\imapi.sys (IMAPI Kernel Driver/Microsoft Corporation) B833A000-B8345000 (45056 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\cdrom.sys (SCSI CD-ROM Driver/Microsoft Corporation) B832A000-B833A000 (65536 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\redbook.sys (Sterownik filtru audio Redbook/Microsoft Corporation) B73CC000-B73DB000 (61440 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ks.sys (Kernel CSA Library/Microsoft Corporation) B68F5000-B6918000 (143360 bytes)
Module \\SystemRoot\\System32\\drivers\\GEARAspiWDM.sys (CD DVD Filter/GEAR Software Inc.) B81FF000-B8202000 (12288 bytes)
Module \\SystemRoot\\System32\\Drivers\\ay3kfb35.SYS (IDE/ATAPI Port Driver/Microsoft Corporation) B68BC000-B68F5000 (233472 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\audstub.sys (AudStub Driver/Microsoft Corporation) F7A9B000-F7A9C000 (4096 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\rasl2tp.sys (RAS L2TP mini-port/call-manager driver/Microsoft Corporation) B73BC000-B73C9000 (53248 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ndistapi.sys (NDIS 3.0 connection wrapper driver/Microsoft Corporation) B81EB000-B81EE000 (12288 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ndiswan.sys (MS PPP Framing Driver (Strong Encryption)/Microsoft Corporation) B68A5000-B68BC000 (94208 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\raspppoe.sys (RAS PPPoE mini-port/call-manager driver/Microsoft Corporation) B73AC000-B73B7000 (45056 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\raspptp.sys (Peer-to-Peer Tunneling Protocol/Microsoft Corporation) B739C000-B73A8000 (49152 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\TDI.SYS (TDI Wrapper/Microsoft Corporation) F77A7000-F77AC000 (20480 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\psched.sys (MS QoS Packet Scheduler/Microsoft Corporation) B686C000-B687D000 (69632 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\msgpc.sys (MS General Packet Classifier/Microsoft Corporation) B738C000-B7395000 (36864 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ptilink.sys (Parallel Technologies DirectParallel IO Library/Parallel Technologies, Inc.) F77AF000-F77B4000 (20480 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\raspti.sys (PTI DirectParallel(R) mini-port/call-manager driver/Microsoft Corporation) F77B7000-F77BC000 (20480 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\termdd.sys (Terminal Server Driver/Microsoft Corporation) B737C000-B7386000 (40960 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\kbdclass.sys (Sterownik klasy klawiatury/Microsoft Corporation) F77BF000-F77C6000 (28672 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\mouclass.sys (Sterownik klasy myszy/Microsoft Corporation) F77C7000-F77CD000 (24576 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\swenum.sys (Plug and Play Software Device Enumerator/Microsoft Corporation) F79EB000-F79ED000 (8192 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\update.sys (Update Driver/Microsoft Corporation) B67AA000-B6808000 (385024 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\mssmbios.sys (System Management BIOS Driver/Microsoft Corporation) B81DF000-B81E3000 (16384 bytes)
Module \\SystemRoot\\System32\\Drivers\\NDProxy.SYS (NDIS Proxy/Microsoft Corporation) B736C000-B7376000 (40960 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\usbhub.sys (Default Hub Driver for USB/Microsoft Corporation) B734C000-B735B000 (61440 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\USBD.SYS (Universal Serial Bus Driver/Microsoft Corporation) F79ED000-F79EF000 (8192 bytes)
Module \\SystemRoot\\system32\\drivers\\viahduaa.sys (VIA High Definition Audio Function Driver/VIA Technologies, Inc.) B4596000-B46A0000 (1089536 bytes)
Module \\SystemRoot\\system32\\drivers\\portcls.sys (Port Class (Class Driver for Port/Miniport Devices)/Microsoft Corporation) B4572000-B4596000 (147456 bytes)
Module \\SystemRoot\\system32\\drivers\\drmk.sys (Microsoft Kernel DRM Descrambler Filter/Microsoft Corporation) B733C000-B734B000 (61440 bytes)
Module \\SystemRoot\\system32\\drivers\\monfilt.sys (Creative WDM Audio Driver (32-bit)/Creative Technology Ltd.) B441E000-B4572000 (1392640 bytes)
Module \\SystemRoot\\System32\\Drivers\\Fs_Rec.SYS (File System Recognizer Driver/Microsoft Corporation) F79F1000-F79F3000 (8192 bytes)
Module \\SystemRoot\\System32\\Drivers\\Null.SYS (NULL Driver/Microsoft Corporation) B6818000-B6819000 (4096 bytes)
Module \\SystemRoot\\System32\\Drivers\\Beep.SYS (BEEP Driver/Microsoft Corporation) F79F3000-F79F5000 (8192 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\HIDPARSE.SYS (Hid Parsing Library/Microsoft Corporation) F77EF000-F77F6000 (28672 bytes)
Module \\SystemRoot\\System32\\drivers\\vga.sys (VGA/Super VGA Video Driver/Microsoft Corporation) F77F7000-F77FD000 (24576 bytes)
Module \\SystemRoot\\System32\\Drivers\\mnmdd.SYS (Frame buffer simulator/Microsoft Corporation) F79F5000-F79F7000 (8192 bytes)
Module \\SystemRoot\\System32\\DRIVERS\\RDPCDD.sys (RDP Miniport/Microsoft Corporation) F79F7000-F79F9000 (8192 bytes)
Module \\SystemRoot\\System32\\Drivers\\Msfs.SYS (Mailslot driver/Microsoft Corporation) F77FF000-F7804000 (20480 bytes)
Module \\SystemRoot\\System32\\Drivers\\Npfs.SYS (NPFS Driver/Microsoft Corporation) F7807000-F780F000 (32768 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\rasacd.sys (RAS Automatic Connection Driver/Microsoft Corporation) B85CB000-B85CE000 (12288 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ipsec.sys (IPSec Driver/Microsoft Corporation) B4383000-B4396000 (77824 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\tcpip.sys (TCP/IP Protocol Driver/Microsoft Corporation) B432A000-B4383000 (364544 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\netbt.sys (MBT Transport driver/Microsoft Corporation) B4302000-B432A000 (163840 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ipnat.sys (IP Network Address Translator/Microsoft Corporation) B42DC000-B4302000 (155648 bytes)
Module \\SystemRoot\\System32\\drivers\\afd.sys (Ancillary Function Driver for WinSock/Microsoft Corporation) B42BA000-B42DC000 (139264 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\netbios.sys (NetBIOS interface driver/Microsoft Corporation) B831A000-B8323000 (36864 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\rdbss.sys (Redirected Drive Buffering SubSystem Driver/Microsoft Corporation) B428F000-B42BA000 (176128 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\mrxsmb.sys (Windows NT SMB Minirdr/Microsoft Corporation) B421F000-B428F000 (458752 bytes)
Module \\??\\C:\\WINDOWS\\system32\\drivers\\GRD.sys (G DATA Rootkit Detector Driver/G DATA Software) B830A000-B8319000 (61440 bytes)
Module \\SystemRoot\\System32\\Drivers\\Fips.SYS (Sterownik kryptografii FIPS/Microsoft Corporation) B82FA000-B8305000 (45056 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\wanarp.sys (MS Remote Access and Routing ARP Driver/Microsoft Corporation) B82EA000-B82F3000 (36864 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\arp1394.sys (IP/1394 Arp Client/Microsoft Corporation) B82DA000-B82E9000 (61440 bytes)
Module \\SystemRoot\\system32\\drivers\\AsIO.sys F79F9000-F79FB000 (8192 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\V0260Vid.sys (Video streaming and Capture Device Driver/Creative Technology Ltd.) B41CF000-B41F7000 (163840 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\STREAM.SYS (WDM CODEC Class Device Driver 2.0/Microsoft Corporation) B82BA000-B82C7000 (53248 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\V0260Cmd.sys (Universal Serial Bus Camera Driver/Creative Technology Ltd.) F780F000-F7815000 (24576 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\usbccgp.sys (USB Common Class Generic Parent Driver/Microsoft Corporation) F7817000-F781F000 (32768 bytes)
Module \\SystemRoot\\System32\\Drivers\\Cdfs.SYS (CD-ROM File System Driver/Microsoft Corporation) F76E7000-F76F7000 (65536 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\hidusb.sys (USB Miniport Driver for Input Devices/Microsoft Corporation) B8567000-B856A000 (12288 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\HIDCLASS.SYS (Hid Class Library/Microsoft Corporation) F746B000-F7474000 (36864 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\LHidFilt.Sys (Logitech HID Filter Driver./Logitech, Inc.) B7A57000-B7A5F000 (32768 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\WDFLDR.SYS (WDFLDR/Microsoft Corporation) F745B000-F7468000 (53248 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\Wdf01000.sys (WDF Dynamic/Microsoft Corporation) B40B4000-B412F000 (503808 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\mouhid.sys (Sterownik filtru myszy HID/Microsoft Corporation) B43DA000-B43DD000 (12288 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\LMouFilt.Sys (Logitech Mouse Filter Driver./Logitech, Inc.) B7A4F000-B7A57000 (32768 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\kbdhid.sys (Sterownik filtru myszy HID/Microsoft Corporation) B43D2000-B43D6000 (16384 bytes)
Module \\SystemRoot\\system32\\drivers\\usbaudio.sys (USB Audio Class Driver/Microsoft Corporation) F744B000-F745A000 (61440 bytes)
Module \\SystemRoot\\System32\\Drivers\\dump_atapi.sys B409C000-B40B4000 (98304 bytes)
Module \\SystemRoot\\System32\\Drivers\\dump_WMILIB.SYS F799F000-F79A1000 (8192 bytes)
Module \\SystemRoot\\System32\\win32k.sys (Współużytkowany sterownik Win32/Microsoft Corporation) BF800000-BF9C4000 (1851392 bytes)
Module \\SystemRoot\\System32\\drivers\\Dxapi.sys (DirectX API Driver/Microsoft Corporation) B43C2000-B43C5000 (12288 bytes)
Module \\SystemRoot\\System32\\watchdog.sys (Watchdog Driver/Microsoft Corporation) B7A47000-B7A4C000 (20480 bytes)
Module \\SystemRoot\\System32\\drivers\\dxg.sys (DirectX Graphics Driver/Microsoft Corporation) BD000000-BD012000 (73728 bytes)
Module \\SystemRoot\\System32\\drivers\\dxgthk.sys (DirectX Graphics Driver Thunk/Microsoft Corporation) B682C000-B682D000 (4096 bytes)
Module \\SystemRoot\\System32\\nv4_disp.dll (NVIDIA Compatible Windows 2000 Display driver, Version 195.62 /NVIDIA Corporation) BD012000-BD610000 (6283264 bytes)
Module \\SystemRoot\\System32\\ATMFD.DLL (Windows NT OpenType/Type 1 Font Driver/Adobe Systems Incorporated) BFFA0000-BFFE6000 (286720 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\ndisuio.sys (NDIS User mode I/O Driver/Microsoft Corporation) B3D40000-B3D44000 (16384 bytes)
Module \\SystemRoot\\system32\\drivers\\wdmaud.sys (MMSYSTEM Wave/Midi API mapper/Microsoft Corporation) B3A27000-B3A3C000 (86016 bytes)
Module \\SystemRoot\\system32\\drivers\\sysaudio.sys (System Audio WDM Filter/Microsoft Corporation) B3B94000-B3BA3000 (61440 bytes)
Module \\??\\C:\\WINDOWS\\system32\\drivers\\cpuz132_x32.sys (CPUID Driver/Windows (R) Codename Longhorn DDK provider) B34FF000-B3503000 (16384 bytes)
Module \\??\\C:\\WINDOWS\\system32\\drivers\\GDTdiIcpt.sys (G DATA Software AG) B365F000-B366A000 (45056 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\srv.sys (Server driver/Microsoft Corporation) B32B5000-B3307000 (335872 bytes)
Module \\??\\C:\\WINDOWS\\system32\\drivers\\HookCentre.sys (Security Hook/G DATA Software AG) B7A3F000-B7A46000 (28672 bytes)
Module \\SystemRoot\\System32\\Drivers\\HTTP.sys (HTTP Protocol Stack/Microsoft Corporation) B2D4C000-B2D8D000 (266240 bytes)
Module \\??\\C:\\WINDOWS\\system32\\drivers\\MiniIcpt.sys (Filesystem MiniInterceptor (Mini Filter)/G DATA Software AG) B2F9D000-B2FA8000 (45056 bytes)
Module \\??\\C:\\DOCUME~1\\Klaus\\USTAWI~1\\Temp\\uwnoikob.sys (GMER) B1881000-B1898000 (94208 bytes)
Module \\SystemRoot\\system32\\drivers\\kmixer.sys (Kernel Mode Audio Mixer/Microsoft Corporation) B1856000-B1881000 (176128 bytes)
Module \\SystemRoot\\system32\\DRIVERS\\asyncmac.sys (MS Remote Access serial network driver/Microsoft Corporation) B3C28000-B3C2C000 (16384 bytes)
Module \\WINDOWS\\system32\\ntdll.dll (Biblioteka NT Layer DLL/Microsoft Corporation) 7C900000-7C9B4000 (737280 bytes)
Module \\Program_Files\\DAEMON_Tools_Lite\\Engine.dll (Helper library/DT Soft Ltd) 10000000-10246000 (2383872 bytes)
---- Processes - GMER 1.0.15 ----
Process System Idle 0
Process System 4
Process C:\\WINDOWS\\system32\\spoolsv.exe (Spooler SubSystem App/Microsoft Corporation) 228
Library C:\\WINDOWS\\system32\\spoolsv.exe (Spooler SubSystem App/Microsoft Corporation) 0x01000000
Library C:\\WINDOWS\\system32\\ntdll.dll (Biblioteka NT Layer DLL/Microsoft Corporation) 0x7C900000
Library C:\\WINDOWS\\system32\\kernel32.dll (Biblioteka DLL klienta Windows NT BASE API/Microsoft Corporation) 0x7C800000
Library C:\\WINDOWS\\system32\\ADVAPI32.dll (Advanced Windows 32 Base API/Microsoft Corporation) 0x77DC0000
Library C:\\WINDOWS\\system32\\RPCRT4.dll (Remote Procedure Call Runtime/Microsoft Corporation) 0x77E70000
Library C:\\WINDOWS\\system32\\Secur32.dll (Security Support Provider Interface/Microsoft Corporation) 0x77FE0000
Library C:\\WINDOWS\\system32\\GDI32.dll (GDI Client DLL/Microsoft Corporation) 0x77F10000
Library C:\\WINDOWS\\system32\\USER32.dll (Biblioteka DLL klienta Windows XP USER API/Microsoft Corporation) 0x7E360000
Library C:\\WINDOWS\\system32\\msvcrt.dll (Windows NT CRT DLL/Microsoft Corporation) 0x77C00000
Library C:\\WINDOWS\\system32\\ShimEng.dll (Shim Engine DLL/Microsoft Corporation) 0x5CFE0000
Library C:\\WINDOWS\\AppPatch\\AcGenral.DLL (Windows Compatibility DLL/Microsoft Corporation) 0x59410000
Library C:\\WINDOWS\\system32\\WINMM.dll (MCI API DLL/Microsoft Corporation) 0x76B20000
Library C:\\WINDOWS\\system32\\ole32.dll (Microsoft OLE for Windows/Microsoft Corporation) 0x774D0000
Library C:\\WINDOWS\\system32\\OLEAUT32.dll (Microsoft Corporation) 0x77110000
Library C:\\WINDOWS\\system32\\MSACM32.dll (Filtr audio ACM Microsoft/Microsoft Corporation) 0x77BD0000
Library C:\\WINDOWS\\system32\\VERSION.dll (Version Checking and File Installation Libraries/Microsoft Corporation) 0x77BF0000
Library C:\\WINDOWS\\system32\\SHELL32.dll (Wspólna biblioteka DLL Powłoki systemu Windows/Microsoft Corporation) 0x7C9C0000
Library C:\\WINDOWS\\system32\\SHLWAPI.dll (Biblioteka dodatkowych narzędzi powłoki/Microsoft Corporation) 0x77F60000
Library C:\\WINDOWS\\system32\\USERENV.dll (Userenv/Microsoft Corporation) 0x769A0000
Library C:\\WINDOWS\\system32\\UxTheme.dll (Biblioteka Microsoft UxTheme/Microsoft Corporation) 0x5B1D0000
Library C:\\WINDOWS\\system32\\IMM32.DLL (Windows XP IMM32 API Client DLL/Microsoft Corporation) 0x76360000
Library C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\comctl32.dll (User Experience Controls Library/Microsoft Corporation) 0x773C0000
Library C:\\WINDOWS\\system32\\comctl32.dll (Common Controls Library/Microsoft Corporation) 0x5D520000
Library C:\\WINDOWS\\system32\\SPOOLSS.DLL (Spooler SubSystem DLL/Microsoft Corporation) 0x74280000
Library C:\\WINDOWS\\system32\\WS2_32.dll (Windows Socket 2.0 32-Bit DLL/Microsoft Corporation) 0x71A50000
Library C:\\WINDOWS\\system32\\WS2HELP.dll (Windows Socket 2.0 Helper dla Windows NT/Microsoft Corporation) 0x71A40000
Library C:\\WINDOWS\\system32\\DNSAPI.dll (DNS Client API DLL/Microsoft Corporation) 0x76F10000
Library C:\\WINDOWS\\system32\\rasadhlp.dll (Remote Access AutoDial Helper/Microsoft Corporation) 0x76FB0000
Library C:\\WINDOWS\\system32\\localspl.dll (Biblioteka DLL lokalnego buforu wydruku/Microsoft Corporation) 0x76200000
Library C:\\WINDOWS\\system32\\sfc_os.dll (Ochrona plików systemu Windows/Microsoft Corporation) 0x76C50000
Library C:\\WINDOWS\\system32\\WINTRUST.dll (Interfejsy API potwierdzania zaufania firmy Microsoft/Microsoft Corporation) 0x76C20000
Library C:\\WINDOWS\\system32\\CRYPT32.dll (Crypto API32/Microsoft Corporation) 0x77A70000
Library C:\\WINDOWS\\system32\\MSASN1.dll (ASN.1 Runtime APIs/Microsoft Corporation) 0x77B10000
Library C:\\WINDOWS\\system32\\IMAGEHLP.dll (Windows NT Image Helper/Microsoft Corporation) 0x76C80000
Library C:\\WINDOWS\\system32\\winspool.drv (Windows Spooler Driver/Microsoft Corporation) 0x72F90000
Library C:\\WINDOWS\\system32\\netapi32.dll (Net Win32 API DLL/Microsoft Corporation) 0x6FF40000
Library C:\\WINDOWS\\system32\\cnbjmon.dll (Monitor języka dla drukarki Canon Bubble-Jet/Microsoft Corporation) 0x74230000
Library C:\\WINDOWS\\system32\\HpTcpMon.dll (Standard TCP/IP Port Monitor DLL/Hewlett Packard) 0x10000000
Library C:\\WINDOWS\\system32\\hpzjrd01.dll (HP Rediscovery Library/Hewlett Packard) 0x009D0000
Library C:\\WINDOWS\\system32\\CLUSAPI.dll (Cluster API Library/Microsoft Corporation) 0x76D90000
Library C:\\WINDOWS\\system32\\HPTcpMUI.dll (Standard TCP/IP Port Monitor DLL/Microsoft Corporation) 0x00D50000
Library C:\\WINDOWS\\system32\\hptcpmib.dll (Standard TCP/IP Port Monitor DLL/Hewlett Packard) 0x00DB0000
Library C:\\WINDOWS\\system32\\mgmtapi.dll (Microsoft SNMP Manager API (uses WinSNMP)/Microsoft Corporation) 0x71FD0000
Library C:\\WINDOWS\\system32\\snmpapi.dll (SNMP Utility Library/Microsoft Corporation) 0x71F10000
Library C:\\WINDOWS\\system32\\wsnmp32.dll (Microsoft WinSNMP v2.0 Manager API/Microsoft Corporation) 0x71FC0000
Library C:\\WINDOWS\\system32\\hpzsnt12.dll (HP) 0x00DF0000
Library C:\\WINDOWS\\system32\\pjlmon.dll (PJL Language monitor/Microsoft Corporation) 0x74210000
Library C:\\WINDOWS\\system32\\msonpmon.dll (Microsoft Office OneNote 2007 Printer Driver/Microsoft Corporation) 0x00F30000
Library C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\\MSVCR80.dll (Microsoft® C Runtime Library/Microsoft Corporation) 0x78130000
Library C:\\WINDOWS\\system32\\msi.dll (Windows Installer/Microsoft Corporation) 0x7D1E0000
Library C:\\WINDOWS\\system32\\tcpmon.dll (Biblioteka DLL monitora standardowego portu TCP/IP/Microsoft Corporation) 0x723B0000
Library C:\\WINDOWS\\system32\\usbmon.dll (Standard Dynamic Printing Port Monitor DLL/Microsoft Corporation) 0x723A0000
Library C:\\WINDOWS\\System32\\spool\\PRTPROCS\\W32X86\\filterpipelineprintproc.dll (Print Filter Pipeline Proxy/Microsoft Corporation) 0x3F420000
Library C:\\WINDOWS\\System32\\spool\\PRTPROCS\\W32X86\\msonpppr.dll (Microsoft Office OneNote 2007 Printer Driver/Microsoft Corporation) 0x00FB0000
Library C:\\WINDOWS\\System32\\mswsock.dll (Microsoft Windows Sockets 2.0 Dostawca usługi/Microsoft Corporation) 0x719F0000
Library C:\\WINDOWS\\System32\\winrnr.dll (LDAP RnR Provider DLL/Microsoft Corporation) 0x76FA0000
Library C:\\WINDOWS\\system32\\WLDAP32.dll (Win32 LDAP API DLL/Microsoft Corporation) 0x76F50000
Library C:\\WINDOWS\\system32\\win32spl.dll (Biblioteka DLL interfejsu API buforowania 32-bitowego/Microsoft Corporation) 0x75E10000
Library C:\\WINDOWS\\system32\\NETRAP.dll (Net Remote Admin Protocol DLL/Microsoft Corporation) 0x71C30000
Library C:\\WINDOWS\\system32\\NTDSAPI.dll (NT5DS/Microsoft Corporation) 0x76780000
Library C:\\WINDOWS\\system32\\CLBCATQ.DLL (Microsoft Corporation) 0x76FC0000
Library C:\\WINDOWS\\system32\\COMRes.dll (Microsoft Corporation) 0x77040000
Library C:\\WINDOWS\\system32\\inetpp.dll (Biblioteka DLL dostawcy drukowania internetowego/Microsoft Corporation) 0x742A0000
Library C:\\WINDOWS\\system32\\xpsp2res.dll (Komunikaty pakietu Service Pack 2/Microsoft Corporation) 0x011D0000
Process C:\\Program Files\\G DATA\\TotalCare\\AVK\\AVKWCtl.exe (G DATA AntiVirus Monitor Service/G DATA Software AG) 316
Library C:\\Program Files\\G DATA\\TotalCare\\AVK\\AVKWCtl.exe (G DATA AntiVirus Monitor Service/G DATA Software AG) 0x00400000
Library C:\\WINDOWS\\system32\\ntdll.dll (Biblioteka NT Layer DLL/Microsoft Corporation) 0x7C900000
Library C:\\WINDOWS\\system32\\kernel32.dll (Biblioteka DLL klienta Windows NT BASE API/Microsoft Corporation) 0x7C800000
Library C:\\WINDOWS\\system32\\WINTRUST.dll (Interfejsy API potwierdzania zaufania firmy Microsoft/Microsoft Corporation) 0x76C20000
Library C:\\WINDOWS\\system32\\ADVAPI32.dll (Advanced Windows 32 Base API/Microsoft Corporation) 0x77DC0000
Library C:\\WINDOWS\\system32\\RPCRT4.dll (Remote Procedure Call Runtime/Microsoft Corporation) 0x77E70000
Library C:\\WINDOWS\\system32\\Secur32.dll (Security Support Provider Interface/Microsoft Corporation) 0x77FE0000
Library C:\\WINDOWS\\system32\\CRYPT32.dll (Crypto API32/Microsoft Corporation) 0x77A70000
Library C:\\WINDOWS\\system32\\MSASN1.dll (ASN.1 Runtime APIs/Microsoft Corporation) 0x77B10000
Library C:\\WINDOWS\\system32\\msvcrt.dll (Windows NT CRT DLL/Microsoft Corporation) 0x77C00000
Library C:\\WINDOWS\\system32\\USER32.dll (Biblioteka DLL klienta Windows XP USER API/Microsoft Corporation) 0x7E360000
Library C:\\WINDOWS\\system32\\GDI32.dll (GDI Client DLL/Microsoft Corporation) 0x77F10000
Library C:\\WINDOWS\\system32\\IMAGEHLP.dll (Windows NT Image Helper/Microsoft Corporation) 0x76C80000
Library C:\\WINDOWS\\system32\\SHELL32.dll (Wspólna biblioteka DLL Powłoki systemu Windows/Microsoft Corporation) 0x7C9C0000
Library C:\\WINDOWS\\system32\\SHLWAPI.dll (Biblioteka dodatkowych narzędzi powłoki/Microsoft Corporation) 0x77F60000
Library C:\\WINDOWS\\system32\\ole32.dll (Microsoft OLE for Windows/Microsoft Corporation) 0x774D0000
Library C:\\WINDOWS\\system32\\OLEAUT32.dll (Microsoft Corporation) 0x77110000
Library C:\\WINDOWS\\system32\\COMCTL32.dll (Common Controls Library/Microsoft Corporation) 0x5D520000
Library C:\\WINDOWS\\system32\\IMM32.DLL (Windows XP IMM32 API Client DLL/Microsoft Corporation) 0x76360000
Library C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\comctl32.dll (User Experience Controls Library/Microsoft Corporation) 0x773C0000
Library C:\\WINDOWS\\system32\\PSAPI.DLL (Process Status Helper/Microsoft Corporation) 0x76BE0000
Library C:\\WINDOWS\\system32\\FltLib.dll (Filter Library/Microsoft Corporation) 0x4DD50000
Library C:\\Program Files\\G DATA\\TotalCare\\AVK\\SysIcpt.dll (SysHook Stub/G DATA Software AG) 0x10000000
Library C:\\WINDOWS\\system32\\xpsp2res.dll (Komunikaty pakietu Service Pack 2/Microsoft Corporation) 0x00B40000
Library C:\\Program Files\\G DATA\\TotalCare\\AVK\\MiniIcpt2.dll (MiniInterceptor Stub/G DATA Software AG) 0x008C0000
Library C:\\WINDOWS\\system32\\CLBCATQ.DLL (Microsoft Corporation) 0x76FC0000
Library C:\\WINDOWS\\system32\\COMRes.dll (Microsoft Corporation) 0x77040000
Library C:\\WINDOWS\\system32\\VERSION.dll (Version Checking and File Installation Libraries/Microsoft Corporation) 0x77BF0000
Library C:\\WINDOWS\\system32\\uxtheme.dll (Biblioteka Microsoft UxTheme/Microsoft Corporation) 0x5B1D0000
Library C:\\Program Files\\G DATA\\TotalCare\\AVK\\AVKWSC.dll (G DATA WSC Helper/G DATA Software AG) 0x01130000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\AVKScanP.dll (G DATA AntiVirus PScanner Module/G DATA Software AG) 0x01620000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\AVKQt.dll (G DATA AntiVirus Quarantine Module/G DATA Software AG) 0x016A0000
Library C:\\WINDOWS\\system32\\COMDLG32.dll (Plik DLL wspólnych okien dialogowych/Microsoft Corporation) 0x76380000
Library C:\\WINDOWS\\system32\\WINSPOOL.DRV (Windows Spooler Driver/Microsoft Corporation) 0x72F90000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\BD\\bdcore.dll (BitDefender Core/BitDefender) 0x01830000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\BD\\avxdisk.dll (BitDefender Core/BitDefender) 0x019B0000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\aswEngin.dll (High level antivirus engine/ALWIL Software) 0x64280000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\aswScan.dll (Low level antivirus engine/ALWIL Software) 0x64200000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\MSVCP71.dll (Microsoft® C++ Runtime Library/Microsoft Corporation) 0x7C3A0000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\MSVCR71.dll (Microsoft® C Runtime Library/Microsoft Corporation) 0x7C340000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\aswCmnOS.dll (Antivirus HW dependent library/ALWIL Software) 0x64000000
Library C:\\WINDOWS\\system32\\WSOCK32.dll (32-bitowa biblioteka Windows Socket/Microsoft Corporation) 0x71A70000
Library C:\\WINDOWS\\system32\\WS2_32.dll (Windows Socket 2.0 32-Bit DLL/Microsoft Corporation) 0x71A50000
Library C:\\WINDOWS\\system32\\WS2HELP.dll (Windows Socket 2.0 Helper dla Windows NT/Microsoft Corporation) 0x71A40000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\aswCmnB.dll (High level portable functions/ALWIL Software) 0x64080000
Library C:\\Program Files\\Common Files\\G DATA\\AVKScanP\\Avast\\aswCmnS.dll (Common non-portable functions/ALWIL Software) 0x64100000
Library C:\\WINDOWS\\system32\\wbem\\wbemprox.dll (WMI/Microsoft Corporation) 0x74EA0000
Library C:\\WINDOWS\\system32\\wbem\\wbemcomn.dll (WMI/Microsoft Corporation) 0x75240000
Library C:\\WINDOWS\\system32\\wbem\\wbemsvc.dll (WMI/Microsoft Corporation) 0x74E80000
Library C:\\WINDOWS\\system32\\wbem\\fastprox.dll (WMI/Microsoft Corporation) 0x75650000
Library C:\\WINDOWS\\system32\\MSVCP60.dll (Microsoft (R) C++ Runtime Library/Microsoft Corporation) 0x76050000
Library C:\\WINDOWS\\system32\\NTDSAPI.dll (NT5DS/Microsoft Corporation) 0x76780000
Library C:\\WINDOWS\\system32\\DNSAPI.dll (DNS Client API DLL/Microsoft Corporation) 0x76F10000
Library C:\\WINDOWS\\system32\\NETAPI32.dll (Net Win32 API DLL/Microsoft Corporation) 0x6FF40000
Library C:\\WINDOWS\\system32\\WLDAP32.dll (Win32 LDAP API DLL/Microsoft Corporation) 0x76F50000
Library C:\\WINDOWS\\system32\\SXS.DLL (Fusion 2.5/Microsoft Corporation) 0x7E690000
Process C:\\ASUS.SYS\\config\\DVMExportService.exe (DVMExport Application/DeviceVM) 436
Library C:\\ASUS.SYS\\config\\DVMExportService.exe (DVMExport Application/DeviceVM) 0x00400000
Library C:\\WINDOWS\\system32\\ntdll.dll (Biblioteka NT Layer DLL/Microsoft Corporation) 0x7C900000
Library C:\\WINDOWS\\system32\\kernel32.dll (Biblioteka DLL klienta Windows NT BASE API/Microsoft Corporation) 0x7C800000
Library C:\\WINDOWS\\system32\\USER32.dll (Biblioteka DLL klienta Windows XP USER API/Microsoft Corporation) 0x7E360000
Library C:\\WINDOWS\\system32\\GDI32.dll (GDI Client DLL/Microsoft Corporation) 0x77F10000
Library C:\\WINDOWS\\system32\\comdlg32.dll (Plik DLL wspólnych okien dialogowych/Microsoft Corporation) 0x76380000
Library C:\\WINDOWS\\system32\\ADVAPI32.dll (Advanced Windows 32 Base API/Microsoft Corporation) 0x77DC0000
Library C:\\WINDOWS\\system32\\RPCRT4.dll (Remote Procedure Call Runtime/Microsoft Corporation) 0x77E70000
Library C:\\WINDOWS\\system32\\Secur32.dll (Security Support Provider Interface/Microsoft Corporation) 0x77FE0000
Library C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\COMCTL32.dll (User Experience Controls Library/Microsoft Corporation) 0x773C0000
Library C:\\WINDOWS\\system32\\msvcrt.dll (Windows NT CRT DLL/Microsoft Corporation) 0x77C00000
Library C:\\WINDOWS\\system32\\SHLWAPI.dll (Biblioteka dodatkowych narzędzi powłoki/Microsoft Corporation) 0x77F60000
Library C:\\WINDOWS\\system32\\SHELL32.dll (Wspólna biblioteka DLL Powłoki systemu Windows/Microsoft Corporation) 0x7C9C0000
Library C:\\WINDOWS\\system32\\WINSPOOL.DRV (Windows Spooler Driver/Microsoft Corporation) 0x72F90000
Library C:\\WINDOWS\\system32\\OLEAUT32.dll (Microsoft Corporation) 0x77110000
Library C:\\WINDOWS\\system32\\ole32.dll (Microsoft OLE for Windows/Microsoft Corporation) 0x774D0000
Library C:\\WINDOWS\\system32\\IMM32.DLL (Windows XP IMM32 API Client DLL/Microsoft Corporation) 0x76360000
Library C:\\WINDOWS\\system32\\uxtheme.dll (Biblioteka Microsoft UxTheme/Microsoft Corporation) 0x5B1D0000
Process C:\\Program Files\\Java\\jre6\\bin\\jqs.exe (Java(TM) Quick Starter Service/Sun Microsystems, Inc.) 580
Library C:\\Program Files\\Java\\jre6\\bin\\jqs.exe (Java(TM) Quick Starter Service/Sun Microsystems, Inc.) 0x00400000
Library C:\\WINDOWS\\system32\\ntdll.dll (Biblioteka NT Layer DLL/Microsoft Corporation) 0x7C900000
Library C:\\WINDOWS\\system32\\kernel32.dll (Biblioteka DLL klienta Windows NT BASE API/Microsoft Corporation) 0x7C800000
Library C:\\WINDOWS\\system32\\WS2_32.dll (Windows Socket 2.0 32-Bit DLL/Microsoft Corporation) 0x71A50000
Library C:\\WINDOWS\\system32\\ADVAPI32.dll (Advanced Windows 32 Base API/Microsoft Corporation) 0x77DC0000
Library C:\\WINDOWS\\system32\\RPCRT4.dll (Remote Procedure Call Runtime/Microsoft Corporation) 0x77E70000
Library C:\\WINDOWS\\system32\\Secur32.dll (Security Support Provider Interface/Microsoft Corporation) 0x77FE0000
Library C:\\WINDOWS\\system32\\msvcrt.dll (Windows NT CRT DLL/Microsoft Corporation) 0x77C00000
Library C:\\WINDOWS\\system32\\WS2HELP.dll (Windows Socket 2.0 Helper dla Windows NT/Microsoft Corporation) 0x71A40000
Library C:\\WINDOWS\\system32\\ole32.dll (Microsoft OLE for Windows/Microsoft Corporation) 0x774D0000
Library C:\\WINDOWS\\system32\\GDI32.dll (GDI Client DLL/Microsoft Corporation) 0x77F10000
Library C:\\WINDOWS\\system32\\USER32.dll (Biblioteka DLL klienta Windows XP USER API/Microsoft Corporation) 0x7E360000
Library C:\\Program Files\\Java\\jre6\\bin\\MSVCR71.dll (Microsoft® C Runtime Library/Microsoft Corporation) 0x7C340000
Library C:\\WINDOWS\\system32\\IMM32.DLL (Windows XP IMM32 API Client DLL/Microsoft Corporation) 0x76360000
Library C:\\WINDOWS\\system32\\psapi.dll (Process Status Helper/Microsoft Corporation) 0x76BE0000
Library C:\\WINDOWS\\system32\\pdh.dll (Pomocnicza biblioteka DLL danych wydajności systemu Windows/Microsoft Corporation) 0x73F00000
Library C:\\WINDOWS\\system32\\comdlg32.dll (Plik DLL wspólnych okien dialogowych/Microsoft Corporation) 0x76380000
Library C:\\WINDOWS\\system32\\COMCTL32.dll (Common Controls Library/Microsoft Corporation) 0x5D520000
Library C:\\WINDOWS\\system32\\SHELL32.dll (Wspólna biblioteka DLL Powłoki systemu Windows/Microsoft Corporation) 0x7C9C0000
Library C:\\WINDOWS\\system32\\SHLWAPI.dll (Biblioteka dodatkowych narzędzi powłoki/Microsoft Corporation) 0x77F60000
Library C:\\WINDOWS\\system32\\CRYPT32.dll (Crypto API32/Microsoft Corporation) 0x77A70000
Library C:\\WINDOWS\\system32\\MSASN1.dll (ASN.1 Runtime APIs/Microsoft Corporation) 0x77B10000
Library C:\\WINDOWS\\system32\\ODBC32.dll (Microsoft Data Access - ODBC Driver Manager/Microsoft Corporation) 0x74600000
Library C:\\WINDOWS\\system32\\odbcbcp.dll (Microsoft BCP for ODBC/Microsoft Corporation) 0x59C70000
Library C:\\WINDOWS\\system32\\VERSION.dll (Version Checking and File Installation Libraries/Microsoft Corporation) 0x77BF0000
Library C:\\WINDOWS\\system32\\OLEAUT32.dll (Microsoft Corporation) 0x77110000
Library C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\\comctl32.dll (User Experience Controls Library/Microsoft Corporation) 0x773C0000
Library C:\\WINDOWS\\system32\\odbcint.dll (Microsoft Data Access - Zasoby ODBC/Microsoft Corporation) 0x1F840000
Library C:\\WINDOWS\\system32\\mswsock.dll (Microsoft Windows Sockets 2.0 Dostawca usługi/Microsoft Corporation) 0x719F0000
Library C:\\WINDOWS\\system32\\hnetcfg.dll (Menedżer konfiguracji sieci domowej/Microsoft Corporation) 0x66780000
Library C:\\WINDOWS\\System32\\wshtcpip.dll (Windows Sockets Helper DLL/Microsoft Corporation) 0x71A30000
Library C:\\WINDOWS\\system32\\netfxperf.dll (netfxperf.lib/Microsoft Corporation) 0x79FD0000
Library C:\\WINDOWS\\system32\\mscoree.dll (Microsoft .NET Runtime Execution Engine/Microsoft Corporation) &n |