Silent Runners - problem

Witam,

jak mam odpalić ten program żeby zrobić loga ?

Ściągnołem go kilka razy z różnych stron i cały czas jak go odpalam pokazuje mi coś takiego (Silent Runners - Notatnik) zamiast się uruchomić :

'Silent Runners.vbs -- find out what programs start up with Windows!

'

'DO NOT REMOVE THIS HEADER!

'

'Copyright Andrew ARONOFF 19 June 2006, http://www.silentrunners.org/

'This script is provided without any warranty, either expressed or implied

'It may not be copied or distributed without permission

'

' **YOU RUN THIS SCRIPT AT YOUR OWN RISK!**

'HEADER ENDS HERE



Option Explicit


Dim strRevNo : strRevNo = "46"


Public flagTest : flagTest = False 'True if testing

'flagTest = True 'Uncomment to test


'This script is divided into 28 sections.


'malware launch points:

' registry keys (I-XII, XV)

' INI/INF-files (XVI-XVIII)

' folders (XIX)

' enabled scheduled tasks (XX)

' Winsock2 service provider DLLs (XXI)

' IE toolbars, explorer bars, extensions (XXII)

' started services (XXVI)

' keyboard driver filters (XXVII)

' printer monitors (XXVIII)


'hijack points:

' System/Group Policies (XIV)

' prefixes for IE URLs (XXIII)

' misc IE points (XXIV)

' HOSTS file (XXV)


'Output is suppressed if deemed normal unless the -all parameter is used 

'Sections XVIII & XXII-dormant Explorer Bars are skipped unless the -supp/-all 

' parameters are used or the first message box is answered "No" 


' I. HKCU/HKLM... Run/RunOnce/RunOnce\Setup

' HKLM... RunOnceEx/RunServices/RunServicesOnce

' HKCU/HKLM... Policies\Explorer\Run

' II. HKLM... Active Setup\Installed Components\

' HKCU... Active Setup\Installed Components\

' (StubPath <> "" And HKLM version # > HKCU version #)

' III. HKLM... Explorer\Browser Helper Objects\

' IV. HKLM... Shell Extensions\Approved\

' V. HKLM... Explorer\SharedTaskScheduler/ShellExecuteHooks

' VI. HKCU/HKLM... ShellServiceObjectDelayLoad\ 

' VII. HKCU... Command Processor\AutoRun ((default) <> "")

' HKCU... Policies\System\Shell (W2K & WXP only)

' HKCU... Windows\load & run ((default) <> "")

' HKCU... Command Processor\AutoRun ((default) <> "")

' HKLM... Windows\AppInit_DLLs ((default) <> "")

' HKLM... Winlogon\Shell/Userinit/System/Ginadll/Taskman

' ((default) <> explorer.exe, userinit.exe, "", "", "")

' HKLM... Control\SafeBoot\Option\UseAlternateShell

' HKLM... Control\Session Manager\BootExecute 

' HKLM... Control\Session Manager\WOW\cmdline, wowcmdline 

' VIII. HKLM... Winlogon\Notify\ (subkey names/DLLName values <> O/S-specific dictionary data) 

' IX. HKLM... Image File Execution Options\ (subkeys with name = "Debugger")

' X. HKCU/HKLM... Policies... Startup/Shutdown, Logon/Logoff

' XI. HKCU/HKLM Protocols\Filter

' XII. Context menu shell extensions

' XIII. HKCR executable file type (bat/cmd/com/exe/hta/pif/scr)

' (shell\open\command data <> "%1" %*; hta <> mshta.exe "%1" %*; scr <> "%1" /S)

' XIV. System/Group Policies

' XV. Enabled Wallpaper & Screen Saver

' XVI. WIN.INI (load/run <> ""), SYSTEM.INI (shell <> explorer.exe, scrnsave.exe), WINSTART.BAT 

' XVII. AUTORUN.INF in root of fixed drive (open/shellexecute <> "")

' XVIII. DESKTOP.INI in any local fixed disk directory (section skipped by default) 

' XIX. %WINDIR%... Startup & All Users... Startup (W98/WME) or

' %USERNAME%... Startup & All Users... Startup folder contents

' XX. Scheduled Tasks

' XXI. Winsock2 Service Provider DLLs

' XXII. Internet Explorer Toolbars, Explorer Bars, Extensions (dormant 

' Explorer Bars section skipped by default) 

' XXIII. Internet Explorer URL Prefixes

' XXIV. Misc. IE Hijack Points

' XXV. HOSTS file

' XXVI. Started Services

' XXVII. Keyboard Driver Filters

'XXVIII. Printer Monitors



Dim Wshso : Set Wshso = WScript.CreateObject("WScript.Shell")

Dim WshoArgs : Set WshoArgs = WScript.Arguments

Dim intErrNum, intMB 'Err.Number, MsgBox return value


Dim strflagTest : strflagTest = ""

If flagTest Then

 strflagTest = "TEST "

 Wshso.Popup "Silent Runners is in testing mode.",1, _

     "Testing, testing, 1-2-3...", vbOKOnly + vbExclamation

End If


'Configuration Detection Section


' FileSystemObject creation error (112)

' CScript/WScript (147)

' Dim (161)

' GetFileVersion(WinVer.exe) (VBScript 5.1) (182)

' OS version (223)

' WMI (279)

' Dim (364)

' command line arguments (440)

' supplementary search MsgBox (532)

' startup MsgBox (557)

' CreateTextFile error (583)

' output file header (625)

' WXP SP2 (629)


On Error Resume Next

 Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject")

 intErrNum = Err.Number : Err.Clear

On Error Goto 0


If intErrNum <> 0 Then


 strURL = "http://tinyurl.com/7nn6"


 intMB = MsgBox (Chr(34) & "Silent Runners" & Chr(34) &_

  " cannot access file services critical to" & vbCRLF &_

  "proper script operation." & vbCRLF & vbCRLF &_

  "If you are running Windows XP, make sure that the" &_

  vbCRLF & Chr(34) & "Cryptographic Services" & Chr(34) &_

  " service is started." & vbCRLF & vbCRLF &_

  "You can also try reinstalling the latest version of the MS" &_

  vbCRLF & "Windows Script Host." & vbCRLF & vbCRLF &_

  "Press " & Chr(34) & "OK" & Chr(34) & " to direct your browser to " &_ 

  "the download site or" & vbCRLF & Space(10) & Chr(34) & "Cancel" &_

  Chr(34) & " to quit.", vbOKCancel + vbCritical, _

  "Can't access the FileSystemObject!")


  'if dl wanted now, send browser to dl site

 If intMB = 1 Then Wshso.Run strURL


 WScript.Quit

ITD.

:arrow: Instrukcja

czytałem instrukcję ale u mnie jest ten problem, że on mi sie nie uruchamia tak jak jest w instrukcji tylko od razu mam notatnik i jest tam napisane to co widać wyżej.

PPM -> Otwórz używając wiersza poleceń

Udało się z wiersza poleceń. dzieki :slight_smile: