Pro Vyosek
Napsal: 05 črc 2013 08:18
Opět Tě zdravím,
dnes jsem si všimnul, že v C:\ mám novou složku "JRT" se spousty soubory která se mi tam dostala včera večer bez mého souhlasu k provedení změn (@Echo off).
Jedná se o ASK a když se podívám do dávkového souboru, tak mi to provedlo sakra hodně změn a já bych to rád kompletně odstranil a je mi jasný, že odstranit pouze složku nestačí.
V prohlížeči (IE9, Firefox) nevidím v doplňcích žádné změny. Prosím podívej se na to a popřípadě mi odstraň i další nesmyli. Děkuju
Posílám log z dávkového souboru (ASK) a log z RSIT:
@Echo off
:: ask.bat
:: Created by Thisisu
:: Last updated 04.16.2013
:: Latest change: Removed taskschedule CACHE
REM ~~~~~~~~~ CUSTOM VARS ~~~~~~~~~~~~
set locallow=%userprofile%\appdata\locallow
Set NirCmd=0
if NOT exist %windir%\system32\taskkill.exe set NirCmd=1
if %NirCmd%==0 (
taskkill /f /im AskService.exe >nul 2>&1
taskkill /f /im Updater.exe >nul 2>&1
taskkill /f /im UpdateTask.exe >nul 2>&1
taskkill /f /im TBNotifier.exe >nul 2>&1
)
if %NirCmd%==1 (
%systemdrive%\jrt\NIRCMD.DAT killprocess AskService.exe >nul 2>&1
%systemdrive%\jrt\NIRCMD.DAT killprocess Updater.exe >nul 2>&1
%systemdrive%\jrt\NIRCMD.DAT killprocess UpdateTask.exe >nul 2>&1
%systemdrive%\jrt\NIRCMD.DAT killprocess TBNotifier.exe >nul 2>&1
)
if exist %windir%\syswow64 (
set arch=x64
) else (
set arch=x86
)
:: GET SID - Credits to GermanOne
set "RegPath=HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList"
for /f "delims=" %%i in ('reg query "%RegPath%"^|findstr /ibc:"%RegPath%\S-"') do (
reg query "%%i" /v "ProfileImagePath"|findstr /iec:"\\%UserName%" >nul &&set "SID=%%~nxi"
)
REM ~~~~~~~~~~~~~~~~~ START OF SERVICES ~~~~~~~~~~~~~~~~~~~~~~~~~
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askservices.dat") do (
%windir%\system32\sc.exe query "%%g" | %windir%\system32\find.exe "STATE" >nul 2>&1
if ERRORLEVEL 1 (
REM DEBUG Echo(%%g : this service does NOT exist >>%systemdrive%\JRT\temp\services.txt
) else (
REM DEBUG Echo %%g : This service does exist >>%systemdrive%\JRT\temp\services.txt
%windir%\system32\sc.exe stop "%%g" >nul 2>&1
%windir%\system32\sc.exe query "%%g" | %windir%\system32\find.exe "STATE" | %windir%\system32\find.exe "STOPPED" >nul 2>&1
if NOT ERRORLEVEL 1 (
Echo(Successfully stopped: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
%windir%\system32\sc.exe delete "%%g" >nul 2>&1
%windir%\system32\sc.exe query "%%g" | %windir%\system32\find.exe "STATE" >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
) else (
Echo(Failed to delete: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
)
) else (
Echo(Failed to stop: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF SERVICES ~~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF VALUES ~~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregvalue_x64.dat") do (
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregvalue_x86.dat") do (
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF VALUES ~~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF SID URLSEARCHHOOKS ~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF SID URLSEARCHHOOKS ~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~ START OF SID TOOLBAR ~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~ END OF SID TOOLBAR ~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregkey_x64.dat") do (
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i%%g" /f >nul 2>&1
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregkey_x86.dat") do (
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i%%g" /f >nul 2>&1
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF MISC KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for %%g in (
"hkey_classes_root\genericasktoolbar.toolbarwnd"
"hkey_classes_root\genericasktoolbar.toolbarwnd.1"
"hkey_current_user\software\apn"
"hkey_current_user\software\apn pip"
"hkey_current_user\software\appdatalow\askbardis"
"hkey_current_user\software\appdatalow\asktoolbar"
"hkey_current_user\software\appdatalow\asktoolbarinfo"
"hkey_current_user\software\appdatalow\software\asktoolbar"
"hkey_current_user\software\ask.com"
"hkey_current_user\software\asktoolbar"
"hkey_current_user\software\pip"
"hkey_local_machine\software\apn"
"hkey_local_machine\software\apn pip"
"hkey_local_machine\software\asktoolbar"
"hkey_local_machine\software\classes\appid\genericasktoolbar.dll"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd.1"
"hkey_local_machine\software\classes\installer\upgradecodes\f928123a039649549966d4c29d35b1c9"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0cfe535c35f99574e8340bfa75bf92c2"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0e12f736682067fde4d1158d5940a82e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\120dfadeb50841f408f04d2a278f9509"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\1a24b5bb8521b03e0c8d908f5abc0ae6"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\261f213d1f55267499b1f87d0cc3bcf7"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\2b0d56c4f4c46d844a57ffed6f0d2852"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\49d4375fe41653242aea4c969e4e65e0"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6aa0923513360135b272e8289c5f13fa"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6f7467af8f29c134cbbab394eccfde96"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\741b4adf27276464790022c965ab6da8"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\7de196b10195f5647a2b21b761f3de01"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\922525dcc5199162f8935747ca3d8e59"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\9d4f5849367142e4685ed8c25e44c5ed"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a5875b04372c19545beb90d4d606c472"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a876d9e80b896ec44a8620248cc79296"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\b66ffab725b92594c986de826a867888"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\bcda179d619b91648538e3394cac94cc"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\d677b1a9671d4d4004f6f2a4469e86ea"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\dd1402a9dd4215a43abde169a41afa0e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\e36e114a0ead2ad46b381d23ad69cddf"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\ef8e618db3aedfbb384561b5c548f65e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\products\a28b4d68debaa244eb686953b7074fef"
"hkey_local_machine\software\microsoft\windows nt\currentversion\schedule\taskcache\tasks\{309072f6-5046-451f-9f64-bae417b883a7}"
"hkey_local_machine\software\pip"
) do (
%windir%\system32\reg.exe query %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete %%g /f >nul 2>&1
%windir%\system32\reg.exe query %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
if %arch%==x86 (
for %%g in (
"hkey_classes_root\genericasktoolbar.toolbarwnd"
"hkey_classes_root\genericasktoolbar.toolbarwnd.1"
"hkey_current_user\software\apn"
"hkey_current_user\software\apn pip"
"hkey_current_user\software\appdatalow\askbardis"
"hkey_current_user\software\appdatalow\asktoolbar"
"hkey_current_user\software\appdatalow\asktoolbarinfo"
"hkey_current_user\software\appdatalow\software\asktoolbar"
"hkey_current_user\software\ask.com"
"hkey_current_user\software\asktoolbar"
"hkey_current_user\software\pip"
"hkey_local_machine\software\apn"
"hkey_local_machine\software\apn pip"
"hkey_local_machine\software\asktoolbar"
"hkey_local_machine\software\classes\appid\genericasktoolbar.dll"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd.1"
"hkey_local_machine\software\classes\installer\upgradecodes\f928123a039649549966d4c29d35b1c9"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0cfe535c35f99574e8340bfa75bf92c2"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0e12f736682067fde4d1158d5940a82e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\120dfadeb50841f408f04d2a278f9509"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\1a24b5bb8521b03e0c8d908f5abc0ae6"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\261f213d1f55267499b1f87d0cc3bcf7"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\2b0d56c4f4c46d844a57ffed6f0d2852"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\49d4375fe41653242aea4c969e4e65e0"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6aa0923513360135b272e8289c5f13fa"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6f7467af8f29c134cbbab394eccfde96"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\741b4adf27276464790022c965ab6da8"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\7de196b10195f5647a2b21b761f3de01"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\922525dcc5199162f8935747ca3d8e59"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\9d4f5849367142e4685ed8c25e44c5ed"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a5875b04372c19545beb90d4d606c472"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a876d9e80b896ec44a8620248cc79296"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\b66ffab725b92594c986de826a867888"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\bcda179d619b91648538e3394cac94cc"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\d677b1a9671d4d4004f6f2a4469e86ea"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\dd1402a9dd4215a43abde169a41afa0e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\e36e114a0ead2ad46b381d23ad69cddf"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\ef8e618db3aedfbb384561b5c548f65e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\products\a28b4d68debaa244eb686953b7074fef"
"hkey_local_machine\software\microsoft\windows nt\currentversion\schedule\taskcache\tasks\{309072f6-5046-451f-9f64-bae417b883a7}"
"hkey_local_machine\software\pip"
) do (
%windir%\system32\reg.exe query %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete %%g /f >nul 2>&1
%windir%\system32\reg.exe query %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF MISC KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~~ START OF FILES ~~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
For %%g in (
"%windir%\tasks\Scheduled Update for Ask Toolbar.job"
) do ( if exist %%g (
del /a/f/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [File] %%g >> %systemdrive%\JRT\temp\files.txt
) else (
Echo(Failed to delete: [File] %%g >> %systemdrive%\JRT\temp\files.txt
)
)
)
)
if %arch%==x86 (
For %%g in (
"%windir%\tasks\Scheduled Update for Ask Toolbar.job"
) do ( if exist %%g (
del /a/f/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [File] %%g >> %systemdrive%\JRT\temp\files.txt
) else (
Echo(Failed to delete: [File] %%g >> %systemdrive%\JRT\temp\files.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~~ END OF FILES ~~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~~ START OF FOLDERS ~~~~~~~~~~~~~~~~~~~~~~~~~
:: FOLDERS PORTION
if %arch%==x64 (
For %%g in (
"%allusersprofile%\ask"
"%localappdata%\asktoolbar"
"%locallow%\asksbar"
"%locallow%\asktoolbar"
"%programfiles(x86)%\ask.com"
"%programfiles(x86)%\ask.com\updater"
"%programfiles(x86)%\askbardis\bar\bin"
"%programfiles(x86)%\askbardis\bar"
"%programfiles(x86)%\askbardis"
"%programfiles(x86)%\askpartnernetwork"
"%programfiles(x86)%\AskPBar"
"%programfiles(x86)%\asksbar"
"%userprofile%\local settings\application data\asktoolbar"
"%windir%\installer\{86d4b82a-abed-442a-be86-96357b70f4fe}"
) do ( if exist %%g (
rd /s/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
) else (
Echo(Failed to delete: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
)
)
)
)
if %arch%==x86 (
For %%g in (
"%allusersprofile%\application data\ask"
"%allusersprofile%\ask"
"%localappdata%\asktoolbar"
"%locallow%\asksbar"
"%locallow%\asktoolbar"
"%programfiles%\ask.com"
"%programfiles%\ask.com\updater"
"%programfiles%\askbardis\bar\bin"
"%programfiles%\askbardis\bar"
"%programfiles%\askbardis"
"%programfiles%\askpartnernetwork"
"%programfiles%\asksbar"
"%programfiles%\AskPBar"
"%userprofile%\local settings\application data\asktoolbar"
"%windir%\installer\{86d4b82a-abed-442a-be86-96357b70f4fe}"
) do ( if exist %%g (
rd /s/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
) else (
Echo(Failed to delete: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~~ END OF FOLDERS ~~~~~~~~~~~~~~~~~~~~~~~~~
Logfile of random's system information tool 1.09 (written by random/random)
Run by Rosta at 2013-07-05 09:16:48
Microsoft Windows 7 Home Premium Service Pack 1
System drive C: has 33 GB (27%) free of 122 GB
Total RAM: 4044 MB (61% free)
Logfile of Trend Micro HijackThis v2.0.4
Scan saved at 9:16:50, on 5.7.2013
Platform: Windows 7 SP1 (WinNT 6.00.3505)
MSIE: Internet Explorer v10.0 (10.00.9200.16611)
Boot mode: Normal
Running processes:
C:\Program Files (x86)\NVIDIA Corporation\NVIDIA Update Core\NvTmru.exe
C:\Program Files (x86)\Stardock\ObjectDockFree\ObjectDock.exe
C:\Program Files (x86)\Cobian Backup 11\cbInterface.exe
C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorIcon.exe
C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
C:\Program Files\trend micro\Rosta.exe
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = http://www.seznam.cz/
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant =
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch =
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = local
F2 - REG:system.ini: UserInit=userinit.exe,
O2 - BHO: (no name) - AutorunsDisabled - (no file)
O2 - BHO: Lync Click to Call BHO - {31D09BA0-12F5-4CCE-BE8A-2923E76605DA} - C:\Program Files (x86)\Microsoft Office\Office15\OCHelper.dll
O2 - BHO: Java(tm) Plug-In SSV Helper - {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - C:\Program Files (x86)\Java\jre7\bin\ssv.dll
O2 - BHO: URLRedirectionBHO - {B4F3A835-0E21-4959-BA22-42B3008E02FF} - C:\PROGRA~2\MICROS~1\Office15\URLREDIR.DLL
O2 - BHO: Microsoft SkyDrive Pro Browser Helper - {D0498E0A-45B7-42AE-A9AA-ABA463DBD3BF} - C:\PROGRA~2\MICROS~1\Office15\GROOVEEX.DLL
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files (x86)\Java\jre7\bin\jp2ssv.dll
O4 - HKLM\..\Run: [Cobian Backup 11 interface] "C:\Program Files (x86)\Cobian Backup 11\cbInterface.exe" -service
O4 - HKCU\..\Run: [SandboxieControl] "C:\Program Files\Sandboxie\SbieCtrl.exe"
O4 - HKUS\S-1-5-19\..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'LOCAL SERVICE')
O4 - HKUS\S-1-5-20\..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'NETWORK SERVICE')
O4 - Startup: Stardock ObjectDock.lnk = C:\Program Files (x86)\Stardock\ObjectDockFree\ObjectDock.exe
O6 - HKLM\Software\Policies\Microsoft\Internet Explorer\Restrictions present
O6 - HKLM\Software\Policies\Microsoft\Internet Explorer\Control Panel present
O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\Office15\EXCEL.EXE/3000
O8 - Extra context menu item: Se&nd to OneNote - res://C:\PROGRA~1\MICROS~2\Office15\ONBttnIE.dll/105
O9 - Extra button: Send to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIE.dll
O9 - Extra 'Tools' menuitem: Se&nd to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIE.dll
O9 - Extra button: Lync Click to Call - {31D09BA0-12F5-4CCE-BE8A-2923E76605DA} - C:\Program Files (x86)\Microsoft Office\Office15\OCHelper.dll
O9 - Extra 'Tools' menuitem: Lync Click to Call - {31D09BA0-12F5-4CCE-BE8A-2923E76605DA} - C:\Program Files (x86)\Microsoft Office\Office15\OCHelper.dll
O9 - Extra button: OneNote Lin&ked Notes - {789FE86F-6FC4-46A1-9849-EDE0DB0C95CA} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIELinkedNotes.dll
O9 - Extra 'Tools' menuitem: OneNote Lin&ked Notes - {789FE86F-6FC4-46A1-9849-EDE0DB0C95CA} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIELinkedNotes.dll
O11 - Options group: [ACCELERATED_GRAPHICS] Accelerated graphics
O16 - DPF: {D27CDB6E-AE6D-11CF-96B8-444553540000} (Shockwave Flash Object) - http://fpdownload2.macromedia.com/get/s ... wflash.cab
O18 - Protocol: osf - {D924BDC6-C83A-4BD5-90D0-095128A113D1} - C:\Program Files (x86)\Microsoft Office\Office15\MSOSB.DLL
O18 - Filter hijack: text/xml - {807583E5-5146-11D5-A672-00B0D022E945} - C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\MSOXMLMF.DLL
O23 - Service: @%SystemRoot%\system32\Alg.exe,-112 (ALG) - Unknown owner - C:\Windows\System32\alg.exe (file missing)
O23 - Service: Cobian Backup 11 Stínová kopie - Requester (cbVSCService11) - CobianSoft, Luis Cobian - C:\Program Files (x86)\Cobian Backup 11\cbVSCService11.exe
O23 - Service: Cobian Backup 11 Gravity (CobianBackup11) - Luis Cobian, CobianSoft - C:\Program Files (x86)\Cobian Backup 11\cbService.exe
O23 - Service: @%SystemRoot%\system32\efssvc.dll,-100 (EFS) - Unknown owner - C:\Windows\System32\lsass.exe (file missing)
O23 - Service: ESET Service (ekrn) - ESET - C:\Program Files\ESET\ESET Smart Security\x86\ekrn.exe
O23 - Service: @%systemroot%\system32\fxsresm.dll,-118 (Fax) - Unknown owner - C:\Windows\system32\fxssvc.exe (file missing)
O23 - Service: Intel(R) Rapid Storage Technology (IAStorDataMgrSvc) - Intel Corporation - C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorDataMgrSvc.exe
O23 - Service: Intel(R) Capability Licensing Service Interface - Intel(R) Corporation - C:\Program Files\Intel\iCLS Client\HeciServer.exe
O23 - Service: Intel(R) Dynamic Application Loader Host Interface Service (jhi_service) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL\jhi_service.exe
O23 - Service: @keyiso.dll,-100 (KeyIso) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: Intel(R) Management and Security Application Local Management Service (LMS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe
O23 - Service: MacDrive 9 service (MacDrive9Service) - Mediafour Corporation - C:\Program Files\Mediafour\MacDrive 9\MacDrive9Service.exe
O23 - Service: @comres.dll,-2797 (MSDTC) - Unknown owner - C:\Windows\System32\msdtc.exe (file missing)
O23 - Service: @%SystemRoot%\System32\netlogon.dll,-102 (Netlogon) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: NVIDIA Display Driver Service (nvsvc) - Unknown owner - C:\Windows\system32\nvvsvc.exe (file missing)
O23 - Service: @%systemroot%\system32\psbase.dll,-300 (ProtectedStorage) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: @%systemroot%\system32\Locator.exe,-2 (RpcLocator) - Unknown owner - C:\Windows\system32\locator.exe (file missing)
O23 - Service: @%SystemRoot%\system32\samsrv.dll,-1 (SamSs) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: Sandboxie Service (SbieSvc) - Sandboxie Holdings, LLC - C:\Program Files\Sandboxie\SbieSvc.exe
O23 - Service: @%SystemRoot%\system32\snmptrap.exe,-3 (SNMPTRAP) - Unknown owner - C:\Windows\System32\snmptrap.exe (file missing)
O23 - Service: @%systemroot%\system32\spoolsv.exe,-1 (Spooler) - Unknown owner - C:\Windows\System32\spoolsv.exe (file missing)
O23 - Service: @%SystemRoot%\system32\sppsvc.exe,-101 (sppsvc) - Unknown owner - C:\Windows\system32\sppsvc.exe (file missing)
O23 - Service: @%SystemRoot%\system32\ui0detect.exe,-101 (UI0Detect) - Unknown owner - C:\Windows\system32\UI0Detect.exe (file missing)
O23 - Service: Intel(R) Management and Security Application User Notification Service (UNS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe
O23 - Service: @%SystemRoot%\system32\vaultsvc.dll,-1003 (VaultSvc) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: @%SystemRoot%\system32\vds.exe,-100 (vds) - Unknown owner - C:\Windows\System32\vds.exe (file missing)
O23 - Service: @%systemroot%\system32\vssvc.exe,-102 (VSS) - Unknown owner - C:\Windows\system32\vssvc.exe (file missing)
O23 - Service: @%SystemRoot%\system32\Wat\WatUX.exe,-601 (WatAdminSvc) - Unknown owner - C:\Windows\system32\Wat\WatAdminSvc.exe (file missing)
O23 - Service: @%systemroot%\system32\wbengine.exe,-104 (wbengine) - Unknown owner - C:\Windows\system32\wbengine.exe (file missing)
O23 - Service: @%Systemroot%\system32\wbem\wmiapsrv.exe,-110 (wmiApSrv) - Unknown owner - C:\Windows\system32\wbem\WmiApSrv.exe (file missing)
O23 - Service: @%PROGRAMFILES%\Windows Media Player\wmpnetwk.exe,-101 (WMPNetworkSvc) - Unknown owner - C:\Program Files (x86)\Windows Media Player\wmpnetwk.exe (file missing)
--
End of file - 8275 bytes
======Listing Processes======
\SystemRoot\System32\smss.exe
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=winsrv:ConServerDllInitialization,2 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16
wininit.exe
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=winsrv:ConServerDllInitialization,2 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16
winlogon.exe
C:\Windows\system32\services.exe
C:\Windows\system32\lsass.exe
C:\Windows\system32\lsm.exe
C:\Windows\system32\svchost.exe -k DcomLaunch
"C:\Windows\system32\nvvsvc.exe"
C:\Windows\system32\svchost.exe -k RPCSS
C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted
C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted
C:\Windows\system32\svchost.exe -k LocalService
C:\Windows\system32\svchost.exe -k netsvcs
"C:\Program Files\Sandboxie\SbieSvc.exe"
C:\Windows\system32\svchost.exe -k NetworkService
"C:\Program Files\NVIDIA Corporation\Display\nvxdsync.exe"
C:\Windows\system32\nvvsvc.exe -session -first
C:\Windows\System32\spoolsv.exe
C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork
"C:\Program Files (x86)\Cobian Backup 11\cbVSCService11.exe"
"C:\Program Files (x86)\Cobian Backup 11\cbService.exe"
"C:\Program Files\ESET\ESET Smart Security\x86\ekrn.exe"
"C:\Program Files\Intel\iCLS Client\HeciServer.exe"
"C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL\jhi_service.exe"
"C:\Program Files\Mediafour\MacDrive 9\MacDrive9Service.exe"
C:\Windows\system32\svchost.exe -k imgsvc
C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted
"taskhost.exe"
"C:\Windows\system32\Dwm.exe"
C:\Windows\Explorer.EXE
"C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe" -s
"C:\Program Files\ESET\ESET Smart Security\egui.exe" /hide /waitservice
"C:\Program Files (x86)\NVIDIA Corporation\NVIDIA Update Core\NvTmru.exe"
"C:\Program Files\Sandboxie\SbieCtrl.exe"
"C:\Program Files (x86)\Stardock\ObjectDockFree\ObjectDock.exe"
"C:\Program Files (x86)\Cobian Backup 11\cbInterface.exe" -service
"C:\Program Files (x86)\Stardock\ObjectDockFree\Dock64.exe"
"C:/Program Files/NVIDIA Corporation/Display/nvtray.exe" -user_has_logged_in 1
"C:\Program Files\Windows Media Player\wmpnetwk.exe"
C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation
C:\Windows\System32\svchost.exe -k LocalServicePeerNet
"C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorIcon.exe"
"C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorDataMgrSvc.exe"
"C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe"
C:\Windows\System32\svchost.exe -k secsvcs
"C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe"
C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe
"C:\Program Files\Internet Explorer\iexplore.exe" http://o15.officeredir.microsoft.com/r/ ... lidui=0409
C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_ActiveX.exe -Embedding
"C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE" SCODEF:3928 CREDAT:1447180 /prefetch:2
"taskhost.exe"
"C:\Program Files\Sandboxie\SbieSvc.exe" Sandboxie_GuiProxy_00000001,1100
"C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE" SCODEF:3928 CREDAT:3872193 /prefetch:2
"C:\Windows\System32\MsSpellCheckingFacility.exe" -Embedding
C:\Windows\system32\wbem\wmiprvse.exe
C:\Windows\system32\wbem\wmiprvse.exe
C:\Windows\system32\DllHost.exe /Processid:{E10F6C3A-F1AE-4ADC-AA9D-2FE65525666E}
C:\Windows\system32\DllHost.exe /Processid:{E10F6C3A-F1AE-4ADC-AA9D-2FE65525666E}
"C:\Users\Rosta\Documents\Zálohy\Servisní flash\Service\SW inst\Zabezpečení, viry\Scan, cleaner, log\RSIT\RSITx64.exe"
======Scheduled tasks folder======
C:\Windows\tasks\Adobe Flash Player Updater.job
C:\Windows\tasks\HP Photo Creations Communicator.job
=========Mozilla firefox=========
ProfilePath - C:\Users\Rosta\AppData\Roaming\Mozilla\Firefox\Profiles\v2wk9w20.default
prefs.js - "browser.startup.homepage" - "www.seznam.cz"
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MozillaPlugins\@adobe.com/FlashPlayer]
"Description"=Adobe® Flash® Player 11.8.800.64 Plugin
"Path"=C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_8_800_64.dll
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MozillaPlugins\@intel-webapi.intel.com/Intel WebAPI ipt;version=2.1.42]
"Description"=Intel IPT WebApi plugin
"Path"=C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT\npIntelWebAPIIPT.dll
dnes jsem si všimnul, že v C:\ mám novou složku "JRT" se spousty soubory která se mi tam dostala včera večer bez mého souhlasu k provedení změn (@Echo off).
Jedná se o ASK a když se podívám do dávkového souboru, tak mi to provedlo sakra hodně změn a já bych to rád kompletně odstranil a je mi jasný, že odstranit pouze složku nestačí.
V prohlížeči (IE9, Firefox) nevidím v doplňcích žádné změny. Prosím podívej se na to a popřípadě mi odstraň i další nesmyli. Děkuju
Posílám log z dávkového souboru (ASK) a log z RSIT:
@Echo off
:: ask.bat
:: Created by Thisisu
:: Last updated 04.16.2013
:: Latest change: Removed taskschedule CACHE
REM ~~~~~~~~~ CUSTOM VARS ~~~~~~~~~~~~
set locallow=%userprofile%\appdata\locallow
Set NirCmd=0
if NOT exist %windir%\system32\taskkill.exe set NirCmd=1
if %NirCmd%==0 (
taskkill /f /im AskService.exe >nul 2>&1
taskkill /f /im Updater.exe >nul 2>&1
taskkill /f /im UpdateTask.exe >nul 2>&1
taskkill /f /im TBNotifier.exe >nul 2>&1
)
if %NirCmd%==1 (
%systemdrive%\jrt\NIRCMD.DAT killprocess AskService.exe >nul 2>&1
%systemdrive%\jrt\NIRCMD.DAT killprocess Updater.exe >nul 2>&1
%systemdrive%\jrt\NIRCMD.DAT killprocess UpdateTask.exe >nul 2>&1
%systemdrive%\jrt\NIRCMD.DAT killprocess TBNotifier.exe >nul 2>&1
)
if exist %windir%\syswow64 (
set arch=x64
) else (
set arch=x86
)
:: GET SID - Credits to GermanOne
set "RegPath=HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList"
for /f "delims=" %%i in ('reg query "%RegPath%"^|findstr /ibc:"%RegPath%\S-"') do (
reg query "%%i" /v "ProfileImagePath"|findstr /iec:"\\%UserName%" >nul &&set "SID=%%~nxi"
)
REM ~~~~~~~~~~~~~~~~~ START OF SERVICES ~~~~~~~~~~~~~~~~~~~~~~~~~
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askservices.dat") do (
%windir%\system32\sc.exe query "%%g" | %windir%\system32\find.exe "STATE" >nul 2>&1
if ERRORLEVEL 1 (
REM DEBUG Echo(%%g : this service does NOT exist >>%systemdrive%\JRT\temp\services.txt
) else (
REM DEBUG Echo %%g : This service does exist >>%systemdrive%\JRT\temp\services.txt
%windir%\system32\sc.exe stop "%%g" >nul 2>&1
%windir%\system32\sc.exe query "%%g" | %windir%\system32\find.exe "STATE" | %windir%\system32\find.exe "STOPPED" >nul 2>&1
if NOT ERRORLEVEL 1 (
Echo(Successfully stopped: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
%windir%\system32\sc.exe delete "%%g" >nul 2>&1
%windir%\system32\sc.exe query "%%g" | %windir%\system32\find.exe "STATE" >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
) else (
Echo(Failed to delete: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
)
) else (
Echo(Failed to stop: [Service] %%g >>%systemdrive%\JRT\temp\services.txt
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF SERVICES ~~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF VALUES ~~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregvalue_x64.dat") do (
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregvalue_x86.dat") do (
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "%%i" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] %%i\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF VALUES ~~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF SID URLSEARCHHOOKS ~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\urlsearchhooks\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF SID URLSEARCHHOOKS ~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~ START OF SID TOOLBAR ~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g /f >nul 2>&1
%windir%\system32\reg.exe query "hkey_users\%sid%\software\microsoft\internet explorer\toolbar" /v %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
) else (
Echo(Failed to delete: [Registry Value] hkey_users\%sid%\software\microsoft\internet explorer\toolbar\\%%g >> %systemdrive%\JRT\temp\values.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~ END OF SID TOOLBAR ~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregkey_x64.dat") do (
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i%%g" /f >nul 2>&1
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
)
if %arch%==x86 (
for /f "usebackq delims=" %%g in ("%systemdrive%\JRT\askCLSID.dat") do (
for /f "usebackq delims=" %%i in ("%systemdrive%\JRT\askregkey_x86.dat") do (
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete "%%i%%g" /f >nul 2>&1
%windir%\system32\reg.exe query "%%i%%g" >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%i%%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~ START OF MISC KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
for %%g in (
"hkey_classes_root\genericasktoolbar.toolbarwnd"
"hkey_classes_root\genericasktoolbar.toolbarwnd.1"
"hkey_current_user\software\apn"
"hkey_current_user\software\apn pip"
"hkey_current_user\software\appdatalow\askbardis"
"hkey_current_user\software\appdatalow\asktoolbar"
"hkey_current_user\software\appdatalow\asktoolbarinfo"
"hkey_current_user\software\appdatalow\software\asktoolbar"
"hkey_current_user\software\ask.com"
"hkey_current_user\software\asktoolbar"
"hkey_current_user\software\pip"
"hkey_local_machine\software\apn"
"hkey_local_machine\software\apn pip"
"hkey_local_machine\software\asktoolbar"
"hkey_local_machine\software\classes\appid\genericasktoolbar.dll"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd.1"
"hkey_local_machine\software\classes\installer\upgradecodes\f928123a039649549966d4c29d35b1c9"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0cfe535c35f99574e8340bfa75bf92c2"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0e12f736682067fde4d1158d5940a82e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\120dfadeb50841f408f04d2a278f9509"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\1a24b5bb8521b03e0c8d908f5abc0ae6"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\261f213d1f55267499b1f87d0cc3bcf7"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\2b0d56c4f4c46d844a57ffed6f0d2852"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\49d4375fe41653242aea4c969e4e65e0"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6aa0923513360135b272e8289c5f13fa"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6f7467af8f29c134cbbab394eccfde96"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\741b4adf27276464790022c965ab6da8"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\7de196b10195f5647a2b21b761f3de01"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\922525dcc5199162f8935747ca3d8e59"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\9d4f5849367142e4685ed8c25e44c5ed"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a5875b04372c19545beb90d4d606c472"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a876d9e80b896ec44a8620248cc79296"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\b66ffab725b92594c986de826a867888"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\bcda179d619b91648538e3394cac94cc"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\d677b1a9671d4d4004f6f2a4469e86ea"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\dd1402a9dd4215a43abde169a41afa0e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\e36e114a0ead2ad46b381d23ad69cddf"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\ef8e618db3aedfbb384561b5c548f65e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\products\a28b4d68debaa244eb686953b7074fef"
"hkey_local_machine\software\microsoft\windows nt\currentversion\schedule\taskcache\tasks\{309072f6-5046-451f-9f64-bae417b883a7}"
"hkey_local_machine\software\pip"
) do (
%windir%\system32\reg.exe query %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete %%g /f >nul 2>&1
%windir%\system32\reg.exe query %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
if %arch%==x86 (
for %%g in (
"hkey_classes_root\genericasktoolbar.toolbarwnd"
"hkey_classes_root\genericasktoolbar.toolbarwnd.1"
"hkey_current_user\software\apn"
"hkey_current_user\software\apn pip"
"hkey_current_user\software\appdatalow\askbardis"
"hkey_current_user\software\appdatalow\asktoolbar"
"hkey_current_user\software\appdatalow\asktoolbarinfo"
"hkey_current_user\software\appdatalow\software\asktoolbar"
"hkey_current_user\software\ask.com"
"hkey_current_user\software\asktoolbar"
"hkey_current_user\software\pip"
"hkey_local_machine\software\apn"
"hkey_local_machine\software\apn pip"
"hkey_local_machine\software\asktoolbar"
"hkey_local_machine\software\classes\appid\genericasktoolbar.dll"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd"
"hkey_local_machine\software\classes\genericasktoolbar.toolbarwnd.1"
"hkey_local_machine\software\classes\installer\upgradecodes\f928123a039649549966d4c29d35b1c9"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0cfe535c35f99574e8340bfa75bf92c2"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\0e12f736682067fde4d1158d5940a82e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\120dfadeb50841f408f04d2a278f9509"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\1a24b5bb8521b03e0c8d908f5abc0ae6"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\261f213d1f55267499b1f87d0cc3bcf7"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\2b0d56c4f4c46d844a57ffed6f0d2852"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\49d4375fe41653242aea4c969e4e65e0"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6aa0923513360135b272e8289c5f13fa"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\6f7467af8f29c134cbbab394eccfde96"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\741b4adf27276464790022c965ab6da8"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\7de196b10195f5647a2b21b761f3de01"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\922525dcc5199162f8935747ca3d8e59"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\9d4f5849367142e4685ed8c25e44c5ed"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a5875b04372c19545beb90d4d606c472"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\a876d9e80b896ec44a8620248cc79296"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\b66ffab725b92594c986de826a867888"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\bcda179d619b91648538e3394cac94cc"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\d677b1a9671d4d4004f6f2a4469e86ea"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\dd1402a9dd4215a43abde169a41afa0e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\e36e114a0ead2ad46b381d23ad69cddf"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\components\ef8e618db3aedfbb384561b5c548f65e"
"hkey_local_machine\software\microsoft\windows\currentversion\installer\userdata\s-1-5-18\products\a28b4d68debaa244eb686953b7074fef"
"hkey_local_machine\software\microsoft\windows nt\currentversion\schedule\taskcache\tasks\{309072f6-5046-451f-9f64-bae417b883a7}"
"hkey_local_machine\software\pip"
) do (
%windir%\system32\reg.exe query %%g >nul 2>&1
if NOT ERRORLEVEL 1 (
%windir%\system32\reg.exe delete %%g /f >nul 2>&1
%windir%\system32\reg.exe query %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
) else (
Echo(Failed to delete: [Registry Key] %%g >> %systemdrive%\JRT\temp\keys.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~ END OF MISC KEYS ~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~~ START OF FILES ~~~~~~~~~~~~~~~~~~~~~~~~~
if %arch%==x64 (
For %%g in (
"%windir%\tasks\Scheduled Update for Ask Toolbar.job"
) do ( if exist %%g (
del /a/f/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [File] %%g >> %systemdrive%\JRT\temp\files.txt
) else (
Echo(Failed to delete: [File] %%g >> %systemdrive%\JRT\temp\files.txt
)
)
)
)
if %arch%==x86 (
For %%g in (
"%windir%\tasks\Scheduled Update for Ask Toolbar.job"
) do ( if exist %%g (
del /a/f/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [File] %%g >> %systemdrive%\JRT\temp\files.txt
) else (
Echo(Failed to delete: [File] %%g >> %systemdrive%\JRT\temp\files.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~~ END OF FILES ~~~~~~~~~~~~~~~~~~~~~~~~~
REM ~~~~~~~~~~~~~~~~~~ START OF FOLDERS ~~~~~~~~~~~~~~~~~~~~~~~~~
:: FOLDERS PORTION
if %arch%==x64 (
For %%g in (
"%allusersprofile%\ask"
"%localappdata%\asktoolbar"
"%locallow%\asksbar"
"%locallow%\asktoolbar"
"%programfiles(x86)%\ask.com"
"%programfiles(x86)%\ask.com\updater"
"%programfiles(x86)%\askbardis\bar\bin"
"%programfiles(x86)%\askbardis\bar"
"%programfiles(x86)%\askbardis"
"%programfiles(x86)%\askpartnernetwork"
"%programfiles(x86)%\AskPBar"
"%programfiles(x86)%\asksbar"
"%userprofile%\local settings\application data\asktoolbar"
"%windir%\installer\{86d4b82a-abed-442a-be86-96357b70f4fe}"
) do ( if exist %%g (
rd /s/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
) else (
Echo(Failed to delete: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
)
)
)
)
if %arch%==x86 (
For %%g in (
"%allusersprofile%\application data\ask"
"%allusersprofile%\ask"
"%localappdata%\asktoolbar"
"%locallow%\asksbar"
"%locallow%\asktoolbar"
"%programfiles%\ask.com"
"%programfiles%\ask.com\updater"
"%programfiles%\askbardis\bar\bin"
"%programfiles%\askbardis\bar"
"%programfiles%\askbardis"
"%programfiles%\askpartnernetwork"
"%programfiles%\asksbar"
"%programfiles%\AskPBar"
"%userprofile%\local settings\application data\asktoolbar"
"%windir%\installer\{86d4b82a-abed-442a-be86-96357b70f4fe}"
) do ( if exist %%g (
rd /s/q %%g >nul 2>&1
dir %%g >nul 2>&1
if ERRORLEVEL 1 (
Echo(Successfully deleted: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
) else (
Echo(Failed to delete: [Folder] %%g >> %systemdrive%\JRT\temp\folders.txt
)
)
)
)
REM ~~~~~~~~~~~~~~~~~~ END OF FOLDERS ~~~~~~~~~~~~~~~~~~~~~~~~~
Logfile of random's system information tool 1.09 (written by random/random)
Run by Rosta at 2013-07-05 09:16:48
Microsoft Windows 7 Home Premium Service Pack 1
System drive C: has 33 GB (27%) free of 122 GB
Total RAM: 4044 MB (61% free)
Logfile of Trend Micro HijackThis v2.0.4
Scan saved at 9:16:50, on 5.7.2013
Platform: Windows 7 SP1 (WinNT 6.00.3505)
MSIE: Internet Explorer v10.0 (10.00.9200.16611)
Boot mode: Normal
Running processes:
C:\Program Files (x86)\NVIDIA Corporation\NVIDIA Update Core\NvTmru.exe
C:\Program Files (x86)\Stardock\ObjectDockFree\ObjectDock.exe
C:\Program Files (x86)\Cobian Backup 11\cbInterface.exe
C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorIcon.exe
C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
C:\Program Files\trend micro\Rosta.exe
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = http://www.seznam.cz/
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant =
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch =
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = local
F2 - REG:system.ini: UserInit=userinit.exe,
O2 - BHO: (no name) - AutorunsDisabled - (no file)
O2 - BHO: Lync Click to Call BHO - {31D09BA0-12F5-4CCE-BE8A-2923E76605DA} - C:\Program Files (x86)\Microsoft Office\Office15\OCHelper.dll
O2 - BHO: Java(tm) Plug-In SSV Helper - {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - C:\Program Files (x86)\Java\jre7\bin\ssv.dll
O2 - BHO: URLRedirectionBHO - {B4F3A835-0E21-4959-BA22-42B3008E02FF} - C:\PROGRA~2\MICROS~1\Office15\URLREDIR.DLL
O2 - BHO: Microsoft SkyDrive Pro Browser Helper - {D0498E0A-45B7-42AE-A9AA-ABA463DBD3BF} - C:\PROGRA~2\MICROS~1\Office15\GROOVEEX.DLL
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files (x86)\Java\jre7\bin\jp2ssv.dll
O4 - HKLM\..\Run: [Cobian Backup 11 interface] "C:\Program Files (x86)\Cobian Backup 11\cbInterface.exe" -service
O4 - HKCU\..\Run: [SandboxieControl] "C:\Program Files\Sandboxie\SbieCtrl.exe"
O4 - HKUS\S-1-5-19\..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'LOCAL SERVICE')
O4 - HKUS\S-1-5-20\..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'NETWORK SERVICE')
O4 - Startup: Stardock ObjectDock.lnk = C:\Program Files (x86)\Stardock\ObjectDockFree\ObjectDock.exe
O6 - HKLM\Software\Policies\Microsoft\Internet Explorer\Restrictions present
O6 - HKLM\Software\Policies\Microsoft\Internet Explorer\Control Panel present
O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\Office15\EXCEL.EXE/3000
O8 - Extra context menu item: Se&nd to OneNote - res://C:\PROGRA~1\MICROS~2\Office15\ONBttnIE.dll/105
O9 - Extra button: Send to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIE.dll
O9 - Extra 'Tools' menuitem: Se&nd to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIE.dll
O9 - Extra button: Lync Click to Call - {31D09BA0-12F5-4CCE-BE8A-2923E76605DA} - C:\Program Files (x86)\Microsoft Office\Office15\OCHelper.dll
O9 - Extra 'Tools' menuitem: Lync Click to Call - {31D09BA0-12F5-4CCE-BE8A-2923E76605DA} - C:\Program Files (x86)\Microsoft Office\Office15\OCHelper.dll
O9 - Extra button: OneNote Lin&ked Notes - {789FE86F-6FC4-46A1-9849-EDE0DB0C95CA} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIELinkedNotes.dll
O9 - Extra 'Tools' menuitem: OneNote Lin&ked Notes - {789FE86F-6FC4-46A1-9849-EDE0DB0C95CA} - C:\Program Files (x86)\Microsoft Office\Office15\ONBttnIELinkedNotes.dll
O11 - Options group: [ACCELERATED_GRAPHICS] Accelerated graphics
O16 - DPF: {D27CDB6E-AE6D-11CF-96B8-444553540000} (Shockwave Flash Object) - http://fpdownload2.macromedia.com/get/s ... wflash.cab
O18 - Protocol: osf - {D924BDC6-C83A-4BD5-90D0-095128A113D1} - C:\Program Files (x86)\Microsoft Office\Office15\MSOSB.DLL
O18 - Filter hijack: text/xml - {807583E5-5146-11D5-A672-00B0D022E945} - C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15\MSOXMLMF.DLL
O23 - Service: @%SystemRoot%\system32\Alg.exe,-112 (ALG) - Unknown owner - C:\Windows\System32\alg.exe (file missing)
O23 - Service: Cobian Backup 11 Stínová kopie - Requester (cbVSCService11) - CobianSoft, Luis Cobian - C:\Program Files (x86)\Cobian Backup 11\cbVSCService11.exe
O23 - Service: Cobian Backup 11 Gravity (CobianBackup11) - Luis Cobian, CobianSoft - C:\Program Files (x86)\Cobian Backup 11\cbService.exe
O23 - Service: @%SystemRoot%\system32\efssvc.dll,-100 (EFS) - Unknown owner - C:\Windows\System32\lsass.exe (file missing)
O23 - Service: ESET Service (ekrn) - ESET - C:\Program Files\ESET\ESET Smart Security\x86\ekrn.exe
O23 - Service: @%systemroot%\system32\fxsresm.dll,-118 (Fax) - Unknown owner - C:\Windows\system32\fxssvc.exe (file missing)
O23 - Service: Intel(R) Rapid Storage Technology (IAStorDataMgrSvc) - Intel Corporation - C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorDataMgrSvc.exe
O23 - Service: Intel(R) Capability Licensing Service Interface - Intel(R) Corporation - C:\Program Files\Intel\iCLS Client\HeciServer.exe
O23 - Service: Intel(R) Dynamic Application Loader Host Interface Service (jhi_service) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL\jhi_service.exe
O23 - Service: @keyiso.dll,-100 (KeyIso) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: Intel(R) Management and Security Application Local Management Service (LMS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe
O23 - Service: MacDrive 9 service (MacDrive9Service) - Mediafour Corporation - C:\Program Files\Mediafour\MacDrive 9\MacDrive9Service.exe
O23 - Service: @comres.dll,-2797 (MSDTC) - Unknown owner - C:\Windows\System32\msdtc.exe (file missing)
O23 - Service: @%SystemRoot%\System32\netlogon.dll,-102 (Netlogon) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: NVIDIA Display Driver Service (nvsvc) - Unknown owner - C:\Windows\system32\nvvsvc.exe (file missing)
O23 - Service: @%systemroot%\system32\psbase.dll,-300 (ProtectedStorage) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: @%systemroot%\system32\Locator.exe,-2 (RpcLocator) - Unknown owner - C:\Windows\system32\locator.exe (file missing)
O23 - Service: @%SystemRoot%\system32\samsrv.dll,-1 (SamSs) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: Sandboxie Service (SbieSvc) - Sandboxie Holdings, LLC - C:\Program Files\Sandboxie\SbieSvc.exe
O23 - Service: @%SystemRoot%\system32\snmptrap.exe,-3 (SNMPTRAP) - Unknown owner - C:\Windows\System32\snmptrap.exe (file missing)
O23 - Service: @%systemroot%\system32\spoolsv.exe,-1 (Spooler) - Unknown owner - C:\Windows\System32\spoolsv.exe (file missing)
O23 - Service: @%SystemRoot%\system32\sppsvc.exe,-101 (sppsvc) - Unknown owner - C:\Windows\system32\sppsvc.exe (file missing)
O23 - Service: @%SystemRoot%\system32\ui0detect.exe,-101 (UI0Detect) - Unknown owner - C:\Windows\system32\UI0Detect.exe (file missing)
O23 - Service: Intel(R) Management and Security Application User Notification Service (UNS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe
O23 - Service: @%SystemRoot%\system32\vaultsvc.dll,-1003 (VaultSvc) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)
O23 - Service: @%SystemRoot%\system32\vds.exe,-100 (vds) - Unknown owner - C:\Windows\System32\vds.exe (file missing)
O23 - Service: @%systemroot%\system32\vssvc.exe,-102 (VSS) - Unknown owner - C:\Windows\system32\vssvc.exe (file missing)
O23 - Service: @%SystemRoot%\system32\Wat\WatUX.exe,-601 (WatAdminSvc) - Unknown owner - C:\Windows\system32\Wat\WatAdminSvc.exe (file missing)
O23 - Service: @%systemroot%\system32\wbengine.exe,-104 (wbengine) - Unknown owner - C:\Windows\system32\wbengine.exe (file missing)
O23 - Service: @%Systemroot%\system32\wbem\wmiapsrv.exe,-110 (wmiApSrv) - Unknown owner - C:\Windows\system32\wbem\WmiApSrv.exe (file missing)
O23 - Service: @%PROGRAMFILES%\Windows Media Player\wmpnetwk.exe,-101 (WMPNetworkSvc) - Unknown owner - C:\Program Files (x86)\Windows Media Player\wmpnetwk.exe (file missing)
--
End of file - 8275 bytes
======Listing Processes======
\SystemRoot\System32\smss.exe
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=winsrv:ConServerDllInitialization,2 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16
wininit.exe
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=winsrv:ConServerDllInitialization,2 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16
winlogon.exe
C:\Windows\system32\services.exe
C:\Windows\system32\lsass.exe
C:\Windows\system32\lsm.exe
C:\Windows\system32\svchost.exe -k DcomLaunch
"C:\Windows\system32\nvvsvc.exe"
C:\Windows\system32\svchost.exe -k RPCSS
C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted
C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted
C:\Windows\system32\svchost.exe -k LocalService
C:\Windows\system32\svchost.exe -k netsvcs
"C:\Program Files\Sandboxie\SbieSvc.exe"
C:\Windows\system32\svchost.exe -k NetworkService
"C:\Program Files\NVIDIA Corporation\Display\nvxdsync.exe"
C:\Windows\system32\nvvsvc.exe -session -first
C:\Windows\System32\spoolsv.exe
C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork
"C:\Program Files (x86)\Cobian Backup 11\cbVSCService11.exe"
"C:\Program Files (x86)\Cobian Backup 11\cbService.exe"
"C:\Program Files\ESET\ESET Smart Security\x86\ekrn.exe"
"C:\Program Files\Intel\iCLS Client\HeciServer.exe"
"C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL\jhi_service.exe"
"C:\Program Files\Mediafour\MacDrive 9\MacDrive9Service.exe"
C:\Windows\system32\svchost.exe -k imgsvc
C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted
"taskhost.exe"
"C:\Windows\system32\Dwm.exe"
C:\Windows\Explorer.EXE
"C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe" -s
"C:\Program Files\ESET\ESET Smart Security\egui.exe" /hide /waitservice
"C:\Program Files (x86)\NVIDIA Corporation\NVIDIA Update Core\NvTmru.exe"
"C:\Program Files\Sandboxie\SbieCtrl.exe"
"C:\Program Files (x86)\Stardock\ObjectDockFree\ObjectDock.exe"
"C:\Program Files (x86)\Cobian Backup 11\cbInterface.exe" -service
"C:\Program Files (x86)\Stardock\ObjectDockFree\Dock64.exe"
"C:/Program Files/NVIDIA Corporation/Display/nvtray.exe" -user_has_logged_in 1
"C:\Program Files\Windows Media Player\wmpnetwk.exe"
C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation
C:\Windows\System32\svchost.exe -k LocalServicePeerNet
"C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorIcon.exe"
"C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorDataMgrSvc.exe"
"C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe"
C:\Windows\System32\svchost.exe -k secsvcs
"C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe"
C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe
"C:\Program Files\Internet Explorer\iexplore.exe" http://o15.officeredir.microsoft.com/r/ ... lidui=0409
C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_ActiveX.exe -Embedding
"C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE" SCODEF:3928 CREDAT:1447180 /prefetch:2
"taskhost.exe"
"C:\Program Files\Sandboxie\SbieSvc.exe" Sandboxie_GuiProxy_00000001,1100
"C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE" SCODEF:3928 CREDAT:3872193 /prefetch:2
"C:\Windows\System32\MsSpellCheckingFacility.exe" -Embedding
C:\Windows\system32\wbem\wmiprvse.exe
C:\Windows\system32\wbem\wmiprvse.exe
C:\Windows\system32\DllHost.exe /Processid:{E10F6C3A-F1AE-4ADC-AA9D-2FE65525666E}
C:\Windows\system32\DllHost.exe /Processid:{E10F6C3A-F1AE-4ADC-AA9D-2FE65525666E}
"C:\Users\Rosta\Documents\Zálohy\Servisní flash\Service\SW inst\Zabezpečení, viry\Scan, cleaner, log\RSIT\RSITx64.exe"
======Scheduled tasks folder======
C:\Windows\tasks\Adobe Flash Player Updater.job
C:\Windows\tasks\HP Photo Creations Communicator.job
=========Mozilla firefox=========
ProfilePath - C:\Users\Rosta\AppData\Roaming\Mozilla\Firefox\Profiles\v2wk9w20.default
prefs.js - "browser.startup.homepage" - "www.seznam.cz"
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MozillaPlugins\@adobe.com/FlashPlayer]
"Description"=Adobe® Flash® Player 11.8.800.64 Plugin
"Path"=C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_8_800_64.dll
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MozillaPlugins\@intel-webapi.intel.com/Intel WebAPI ipt;version=2.1.42]
"Description"=Intel IPT WebApi plugin
"Path"=C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT\npIntelWebAPIIPT.dll