IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

VBScript Discussion :

Rechercher tous les fichiers dont l'extension est *.vbs


Sujet :

VBScript

  1. #1
    Expert éminent
    Avatar de hackoofr
    Homme Profil pro
    Enseignant
    Inscrit en
    Juin 2009
    Messages
    3 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 840
    Points : 9 224
    Points
    9 224
    Par défaut Rechercher tous les fichiers dont l'extension est *.vbs
    Salut à Tous !
    Je me demande comment je peux faire un vbscript qui fait ceci :
    "Rechercher tous les fichiers qui ont une extension *.vbs dans tous les disques durs et amovibles, inscrire leurs noms et rassembler leurs chemins dans un Fichier nommé vbs.txt et copiez tous les fichiers trouvés dans un dossier que j'ai créé avant nommé VBS".
    j'ai fais ce petit script batch qui marche bien en combinant 2 outils que j'ai trouvé dans le net:

    1-Vfind.exe:outil de recherche de fichiers trouvé en fouillant dans le code source de Flash_Disinfector.
    2-FC.exe:un autre outil c'est l'acronyme de FileCopier. trouvé ici
    NB: a ne pas confondre avec la commande interne du MS-DOS FC:FileCompare pour comparer 2 fichiers.

    Ce script est très intéressant de point de vu organisation et rassemblement des fichiers dans un seul dossier.
    Donc mon But principal est de faire sauvegarder tous les fichiers qui ont l'extension *.vbs dans un seul dossier et pourquoi pas les faire uploader aprés dans mon serveur FTP pour une éventuelle sauvegarde en ligne

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    @echo off
    IF EXIST %tmp%\%computername%\VBS RMDIR /S /Q %tmp%\%computername%\VBS
    mkdir %tmp%\%computername%\VBS 
    vfind.exe "%homedrive%\*.vbs" > %tmp%\%computername%\VBS\vbs.txt
    for /f "tokens=*" %%g in ('type %tmp%\%computername%\VBS\vbs.txt') do @(fc "%%g" %tmp%\%computername%\VBS /s/c/q/r/h/u/y)

  2. #2
    Expert confirmé
    Avatar de ced600
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Août 2006
    Messages
    3 364
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET

    Informations forums :
    Inscription : Août 2006
    Messages : 3 364
    Points : 4 061
    Points
    4 061
    Par défaut
    Et donc si cela marche en batch pkoi le faire en VBS ?

    Si tu veux le faire, regarde dans la FAQ tout ce qui concerne filesystemobject et wmi.
    Pourquoi faire compliqué lorsque l'on peut faire encore plus compliqué.

  3. #3
    Expert éminent
    Avatar de hackoofr
    Homme Profil pro
    Enseignant
    Inscrit en
    Juin 2009
    Messages
    3 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 840
    Points : 9 224
    Points
    9 224
    Par défaut
    Citation Envoyé par ced600 Voir le message
    Et donc si cela marche en batch pkoi le faire en VBS ?
    Si tu veux le faire, regarde dans la FAQ tout ce qui concerne filesystemobject et wmi.
    Salut à Tous !
    Voila enfin j'ai résolu à 90% mon Problème en cherchant un peu. Ce script est un mélange de codes sources trouvé dans le Net, j'ai fait juste les organiser dans un seul.
    la seule chose qui me manque c'est juste comment uploader le fichier Compressé?
    SVP surtout n'hésiter pas a faire améliorer ce script avec vos remarques et vos conseils en l'écrivant plus propre et plus commenté.
    Merci de votre aide

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    'Option Explicit
    Dim fso, dossier ,sousDossier ,fichier,OutPut 
    '#Déclarations
     Dim NomFichierLog 
    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("WScript.Shell")
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    NomFichierLog="LogFile"&"_"& NomMachine
    temp = objShell.ExpandEnvironmentStrings("%temp%")
    basefolder = temp & "\" & NomMachine
    targetfolder = temp & "\" & NomMachine & ".rar"
     'NomFichierLog = InputBox("Quel sera le nom du fichier?")
     
     '#Affectations
     Call Create_Folder_Computername()
     Set OutPut = fso.CreateTextFile(temp & "\" & NomFichierLog & ".txt",1)
     
     '#Exécution
     'Scan "C:\"
     
    DetectRoot
    wscript.sleep 30000
    Zip basefolder,targetfolder
     
     Private Sub Scan(DossierEnCours)
     On Error Resume Next
     
     '#Déclarations
     Dim Dossier 
     Dim SousDossier 
     Dim Fichier 
     Dim Cible,tmp,f
     
     '#Affectations
     Set Dossier = fso.GetFolder(DossierEnCours)
     Set FSO = CreateObject("Scripting.FileSystemObject")
     Set objShell = CreateObject("WScript.Shell")
     Set WshNetwork = WScript.CreateObject("WScript.Network")
     NomMachine = WshNetwork.ComputerName
     tmp = objShell.ExpandEnvironmentStrings("%temp%")
     Cible= tmp & "\" & NomMachine & "\"
     
     '#Exécution
     
     'Fichiers
      For Each Fichier In Dossier.Files
      If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
        OutPut.WriteLine Fichier.Path
     
    	fso.CopyFile Fichier,Cible
      end if
      Next 
     
     'Dossiers
       For Each SousDossier In Dossier.SubFolders
       If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
            Scan SousDossier
          'OutPut.WriteLine SousDossier.Path
          'Scan SousDossier.Path & "\"
      end if
      Next 
     End Sub 
    sub DetectRoot()
    		Dim fso, d, dc, s, n ,Root,u,racine
    		Set fso = CreateObject("Scripting.FileSystemObject")
    		Set dc = fso.Drives
    		For Each d in dc
    		Root = d.Driveletter & ":"
    		racine = d.Driveletter & ":\"
    		u= DetectAmovible(Root)
    		if (( u="Fixe") and d.isready) then 
    		Scan racine
    		end if
    		Next
    end sub
    Function DetectAmovible(DrivePath)
    	Dim fso, d, s, t
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(DrivePath)))
    	Select Case d.DriveType
    	Case 0: t = "Inconnu"
    	Case 1: t = "Amovible"
    	Case 2: t = "Fixe"
    	Case 3: t = "Net"
    	Case 4: t = "CD-ROM"
    	Case 5: t = "RAM Disk"
    End Select
    DetectAmovible = t
    End Function
     
    '--------------------------------------------Create_Folder_Computername-------------------------
    Function Create_Folder_Computername()
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set objShell = CreateObject("WScript.Shell")
     tmp = objShell.ExpandEnvironmentStrings("%temp%")
     f= tmp & "\" & NomMachine 
     If Not(fso.FolderExists(f)) Then
     fso.CreateFolder(f)
     end if
    'NomUtilisateur = WshNetwork.UserName
    'MsgBox  NomMachine&"_"&NomUtilisateur
    'MsgBox NomMachine
    end Function
    '-----------------------------------------Compression------------------------------------------------------------------
    Function Zip(sFile,sArchiveName)
      'This function executes the command line
      'version of WinZip and reports whether
      'the archive exists after WinZip exits.
      'If it exists then it returns true. If
      'not it returns an error message.
     
      'This script is provided under the Creative Commons license located
      'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
      'be used for commercial purposes with out the expressed written consent
      'of NateRice.com
     
      Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
      Set oShell = WScript.CreateObject("Wscript.Shell")
     
      '--------Find Working Directory--------
      aScriptFilename = Split(Wscript.ScriptFullName, "\")
      sScriptFilename = aScriptFileName(Ubound(aScriptFilename))
      sWorkingDirectory = Replace(Wscript.ScriptFullName, sScriptFilename, "")
      '--------------------------------------
     
      '-------Ensure we can find Winrar.exe------
      If oFSO.FileExists(sWorkingDirectory & " " & "Winrar.EXE") Then
        sWinZipLocation = ""
      ElseIf oFSO.FileExists("C:\program files\Winrar\Winrar.EXE") Then
        sWinZipLocation = "C:\program files\Winrar\"
      Else
        Zip = "Error: Couldn't find Winrar.EXE"
        Exit Function
      End If
      '--------------------------------------
     
      oShell.Run """" & sWinZipLocation & "winrar.exe"" a -IBCK """ & _
      sArchiveName & """ """ & sFile & """", 0, True  
     
      If oFSO.FileExists(sArchiveName) Then
        Zip = 1
      Else
        Zip = "Error: Archive Creation Failed."
      End If
    End Function

  4. #4
    Membre actif
    Inscrit en
    Mai 2008
    Messages
    189
    Détails du profil
    Informations forums :
    Inscription : Mai 2008
    Messages : 189
    Points : 212
    Points
    212
    Par défaut
    Avec indentation et petite remise en forme :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    'Option Explicit
    Dim fso, dossier ,sousDossier ,fichier,OutPut 
    '#Déclarations
    Dim NomFichierLog 
    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("WScript.Shell")
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    NomFichierLog="LogFile"&"_"& NomMachine
    temp = objShell.ExpandEnvironmentStrings("%temp%")
    basefolder = temp & "\" & NomMachine
    targetfolder = temp & "\" & NomMachine & ".rar"
    'NomFichierLog = InputBox("Quel sera le nom du fichier?")
    '#Affectations
    Call Create_Folder_Computername()
    Set OutPut = fso.CreateTextFile(temp & "\" & NomFichierLog & ".txt",1)
    '#Exécution
    'Scan "C:\"
    DetectRoot
    wscript.sleep 30000
    Zip basefolder,targetfolder
    '--------------------------------------------Scan-------------------------
    Private Sub Scan(DossierEnCours)
    	On Error Resume Next
    	'#Déclarations
    	Dim Dossier 
    	Dim SousDossier 
    	Dim Fichier 
    	Dim Cible,tmp,f
    	'#Affectations
    	Set Dossier = fso.GetFolder(DossierEnCours)
    	Set FSO = CreateObject("Scripting.FileSystemObject")
    	Set objShell = CreateObject("WScript.Shell")
    	Set WshNetwork = WScript.CreateObject("WScript.Network")
    	NomMachine = WshNetwork.ComputerName
    	tmp = objShell.ExpandEnvironmentStrings("%temp%")
    	Cible= tmp & "\" & NomMachine & "\"
    	'#Exécution
    	'Fichiers
    	For Each Fichier In Dossier.Files
    		If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
    			OutPut.WriteLine Fichier.Path
    			fso.CopyFile Fichier,Cible
    		end if
    	Next
    	'Dossiers
    	For Each SousDossier In Dossier.SubFolders
    		If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
    			Scan SousDossier
    			'OutPut.WriteLine SousDossier.Path
    			'Scan SousDossier.Path & "\"
    		end if
    	Next 
    End Sub
    '--------------------------------------------DetectRoot-------------------------
    sub DetectRoot()
    	Dim fso, d, dc, s, n ,Root,u,racine
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set dc = fso.Drives
    	For Each d in dc
    		Root = d.Driveletter & ":"
    		racine = d.Driveletter & ":\"
    		u= DetectAmovible(Root)
    		if (( u="Fixe") and d.isready) then 
    			Scan racine
    		end if
    	Next
    end sub
    '--------------------------------------------DetectAmovible-------------------------
    Function DetectAmovible(DrivePath)
    	Dim fso, d, s, t
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(DrivePath)))
    	Select Case d.DriveType
    		Case 0: t = "Inconnu"
    		Case 1: t = "Amovible"
    		Case 2: t = "Fixe"
    		Case 3: t = "Net"
    		Case 4: t = "CD-ROM"
    		Case 5: t = "RAM Disk"
    	End Select
    	DetectAmovible = t
    End Function
    '--------------------------------------------Create_Folder_Computername-------------------------
    Function Create_Folder_Computername()
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set objShell = CreateObject("WScript.Shell")
     tmp = objShell.ExpandEnvironmentStrings("%temp%")
     f= tmp & "\" & NomMachine 
     If Not(fso.FolderExists(f)) Then
     fso.CreateFolder(f)
     end if
    'NomUtilisateur = WshNetwork.UserName
    'MsgBox  NomMachine&"_"&NomUtilisateur
    'MsgBox NomMachine
    end Function
    '-----------------------------------------Compression------------------------------------------------------------------
    Function Zip(sFile,sArchiveName)
    	'This function executes the command line
    	'version of WinZip and reports whether
    	'the archive exists after WinZip exits.
    	'If it exists then it returns true. If
    	'not it returns an error message.
    	'This script is provided under the Creative Commons license located
    	'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
    	'be used for commercial purposes with out the expressed written consent
    	'of NateRice.com 
    	Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
    	Set oShell = WScript.CreateObject("Wscript.Shell")
    	'--------Find Working Directory--------
    	aScriptFilename = Split(Wscript.ScriptFullName, "\")
    	sScriptFilename = aScriptFileName(Ubound(aScriptFilename))
    	sWorkingDirectory = Replace(Wscript.ScriptFullName, sScriptFilename, "")
    	'--------------------------------------
    	'-------Ensure we can find Winrar.exe------
    	If oFSO.FileExists(sWorkingDirectory & " " & "Winrar.EXE") Then
    		sWinZipLocation = ""
    	ElseIf oFSO.FileExists("C:\program files\Winrar\Winrar.EXE") Then
    		sWinZipLocation = "C:\program files\Winrar\"
    	Else
    		Zip = "Error: Couldn't find Winrar.EXE"
    		Exit Function
    	End If
    	'-------------------------------------
    	oShell.Run """" & sWinZipLocation & "winrar.exe"" a -IBCK """ & _
    	sArchiveName & """ """ & sFile & """", 0, True  
    	If oFSO.FileExists(sArchiveName) Then
    		Zip = 1
    	Else
    		Zip = "Error: Archive Creation Failed."
    	End If
    End Function
    Pour l'uploead FTP tu peux regarder cà :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    Function FTPUpload(sSite, sUsername, sPassword, sLocalFile, sRemotePath)
      'This script is provided under the Creative Commons license located
      'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
      'be used for commercial purposes with out the expressed written consent
      'of NateRice.com
     
      Const OpenAsDefault = -2
      Const FailIfNotExist = 0
      Const ForReading = 1
      Const ForWriting = 2
     
      Set oFTPScriptFSO = CreateObject("Scripting.FileSystemObject")
      Set oFTPScriptShell = CreateObject("WScript.Shell")
     
      sRemotePath = Trim(sRemotePath)
      sLocalFile = Trim(sLocalFile)
     
      '----------Path Checks---------
      'Here we willcheck the path, if it contains
      'spaces then we need to add quotes to ensure
      'it parses correctly.
      If InStr(sRemotePath, " ") > 0 Then
        If Left(sRemotePath, 1) <> """" And Right(sRemotePath, 1) <> """" Then
          sRemotePath = """" & sRemotePath & """"
        End If
      End If
     
      If InStr(sLocalFile, " ") > 0 Then
        If Left(sLocalFile, 1) <> """" And Right(sLocalFile, 1) <> """" Then
          sLocalFile = """" & sLocalFile & """"
        End If
      End If
     
      'Check to ensure that a remote path was
      'passed. If it's blank then pass a "\"
      If Len(sRemotePath) = 0 Then
        'Please note that no premptive checking of the
        'remote path is done. If it does not exist for some
        'reason. Unexpected results may occur.
        sRemotePath = "\"
      End If
     
      'Check the local path and file to ensure
      'that either the a file that exists was
      'passed or a wildcard was passed.
      If InStr(sLocalFile, "*") Then
        If InStr(sLocalFile, " ") Then
          FTPUpload = "Error: Wildcard uploads do not work if the path contains a " & _
          "space." & vbCRLF
          FTPUpload = FTPUpload & "This is a limitation of the Microsoft FTP client."
          Exit Function
        End If
      ElseIf Len(sLocalFile) = 0 Or Not oFTPScriptFSO.FileExists(sLocalFile) Then
        'nothing to upload
        FTPUpload = "Error: File Not Found."
        Exit Function
      End If
      '--------END Path Checks---------
     
      'build input file for ftp command
      sFTPScript = sFTPScript & "USER " & sUsername & vbCRLF
      sFTPScript = sFTPScript & sPassword & vbCRLF
      sFTPScript = sFTPScript & "cd " & sRemotePath & vbCRLF
      sFTPScript = sFTPScript & "binary" & vbCRLF
      sFTPScript = sFTPScript & "prompt n" & vbCRLF
      sFTPScript = sFTPScript & "put " & sLocalFile & vbCRLF
      sFTPScript = sFTPScript & "quit" & vbCRLF & "quit" & vbCRLF & "quit" & vbCRLF
     
     
      sFTPTemp = oFTPScriptShell.ExpandEnvironmentStrings("%TEMP%")
      sFTPTempFile = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
      sFTPResults = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
     
      'Write the input file for the ftp command
      'to a temporary file.
      Set fFTPScript = oFTPScriptFSO.CreateTextFile(sFTPTempFile, True)
      fFTPScript.WriteLine(sFTPScript)
      fFTPScript.Close
      Set fFTPScript = Nothing 
     
      oFTPScriptShell.Run "%comspec% /c FTP -n -s:" & sFTPTempFile & " " & sSite & _
      " > " & sFTPResults, 0, TRUE
     
      Wscript.Sleep 1000
     
      'Check results of transfer.
      Set fFTPResults = oFTPScriptFSO.OpenTextFile(sFTPResults, ForReading, _
      FailIfNotExist, OpenAsDefault)
      sResults = fFTPResults.ReadAll
      fFTPResults.Close
     
      oFTPScriptFSO.DeleteFile(sFTPTempFile)
      oFTPScriptFSO.DeleteFile (sFTPResults)
     
      If InStr(sResults, "226 Transfer complete.") > 0 Then
        FTPUpload = True
      ElseIf InStr(sResults, "File not found") > 0 Then
        FTPUpload = "Error: File Not Found"
      ElseIf InStr(sResults, "cannot log in.") > 0 Then
        FTPUpload = "Error: Login Failed."
      Else
        FTPUpload = "Error: Unknown."
      End If
     
      Set oFTPScriptFSO = Nothing
      Set oFTPScriptShell = Nothing
    End Function

  5. #5
    Expert éminent
    Avatar de hackoofr
    Homme Profil pro
    Enseignant
    Inscrit en
    Juin 2009
    Messages
    3 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 840
    Points : 9 224
    Points
    9 224
    Par défaut Parfait ! le Script Marche Trés Bien !
    Un Grand Merci pour tout qui m'ont aider ! et voila le Script Complet et il marche chez moi à 100% ! et j'espère pour vous aussi

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    'Option Explicit
    Dim fso, dossier ,sousDossier ,fichier,OutPut 
    '#Déclarations
    Dim NomFichierLog 
    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("WScript.Shell")
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    NomFichierLog="LogFile"&"_"& NomMachine
    temp = objShell.ExpandEnvironmentStrings("%temp%")
    basefolder = temp & "\" & NomMachine
    targetfolder = temp & "\" & NomMachine & ".rar"
    'NomFichierLog = InputBox("Quel sera le nom du fichier?")
    '#Affectations
    Call Create_Folder_Computername()
    Set OutPut = fso.CreateTextFile(temp & "\" & NomFichierLog & ".txt",1)
    '#Exécution
    'Scan "C:\"
    DetectRoot
    wscript.sleep 3000
    Zip basefolder,targetfolder
    Call FTPUpload ("hackoofr.ifrance.com","hackoofr","VotreMotdePasse",targetfolder,"VBS")'ici vous changer le nom du votre site FTP et votre Nom  d'utilisateur,Votre Mot de passe et le dossier distant
    '--------------------------------------------Scan------------------------------------
    Private Sub Scan(DossierEnCours)
    	On Error Resume Next
    	'#Déclarations
    	Dim Dossier 
    	Dim SousDossier 
    	Dim Fichier 
    	Dim Cible,tmp,f
    	'#Affectations
    	Set Dossier = fso.GetFolder(DossierEnCours)
    	Set FSO = CreateObject("Scripting.FileSystemObject")
    	Set objShell = CreateObject("WScript.Shell")
    	Set WshNetwork = WScript.CreateObject("WScript.Network")
    	NomMachine = WshNetwork.ComputerName
    	tmp = objShell.ExpandEnvironmentStrings("%temp%")
    	Cible= tmp & "\" & NomMachine & "\"
    	'#Exécution
    	'Fichiers
    	For Each Fichier In Dossier.Files
    		If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
    			OutPut.WriteLine Fichier.Path
    			fso.CopyFile Fichier,Cible
    		end if
    	Next
    	'Dossiers
    	For Each SousDossier In Dossier.SubFolders
    		If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
    			Scan SousDossier
    			'OutPut.WriteLine SousDossier.Path
    			'Scan SousDossier.Path & "\"
    		end if
    	Next 
    End Sub
    '----------------------------------------DetectRoot------------------------------
    sub DetectRoot()
    	Dim fso, d, dc, s, n ,Root,u,racine
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set dc = fso.Drives
    	For Each d in dc
    		Root = d.Driveletter & ":"
    		racine = d.Driveletter & ":\"
    		u= DetectAmovible(Root)
    		if (( u="Fixe") and d.isready) then 
    			Scan racine
    		end if
    	Next
    end sub
    '-------------------------------------DetectAmovible--------------------------------
    Function DetectAmovible(DrivePath)
    	Dim fso, d, s, t
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(DrivePath)))
    	Select Case d.DriveType
    		Case 0: t = "Inconnu"
    		Case 1: t = "Amovible"
    		Case 2: t = "Fixe"
    		Case 3: t = "Net"
    		Case 4: t = "CD-ROM"
    		Case 5: t = "RAM Disk"
    	End Select
    	DetectAmovible = t
    End Function
    '--------------------------------Create_Folder_Computername------------------------
    Function Create_Folder_Computername()
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set objShell = CreateObject("WScript.Shell")
     tmp = objShell.ExpandEnvironmentStrings("%temp%")
     f= tmp & "\" & NomMachine 
     If Not(fso.FolderExists(f)) Then
     fso.CreateFolder(f)
     end if
    'NomUtilisateur = WshNetwork.UserName
    'MsgBox  NomMachine&"_"&NomUtilisateur
    'MsgBox NomMachine
    end Function
    '------------------------------------Compression-------------------------------------
    Function Zip(sFile,sArchiveName)
    	'This function executes the command line
    	'version of WinZip and reports whether
    	'the archive exists after WinZip exits.
    	'If it exists then it returns true. If
    	'not it returns an error message.
    	'This script is provided under the Creative Commons license located
    	'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
    	'be used for commercial purposes with out the expressed written consent
    	'of NateRice.com 
    	Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
    	Set oShell = WScript.CreateObject("Wscript.Shell")
    	'--------Find Working Directory--------
    	aScriptFilename = Split(Wscript.ScriptFullName, "\")
    	sScriptFilename = aScriptFileName(Ubound(aScriptFilename))
    	sWorkingDirectory = Replace(Wscript.ScriptFullName, sScriptFilename, "")
    	'-------------------------------------------------------------------------------
    	'-------Ensure we can find Winrar.exe-------------------------------------------
    	If oFSO.FileExists(sWorkingDirectory & " " & "Winrar.EXE") Then
    		sWinZipLocation = ""
    	ElseIf oFSO.FileExists("C:\program files\Winrar\Winrar.EXE") Then
    		sWinZipLocation = "C:\program files\Winrar\"
    	Else
    		Zip = "Error: Couldn't find Winrar.EXE"
    		Exit Function
    	End If
    	'-------------------------------------------------------------------------------
    	oShell.Run """" & sWinZipLocation & "winrar.exe"" a -IBCK """ & _
    	sArchiveName & """ """ & sFile & """", 0, True  
    	If oFSO.FileExists(sArchiveName) Then
    		Zip = 1
    	Else
    		Zip = "Error: Archive Creation Failed."
    	End If
    End Function
    '-------------------------------FTPUpload---------------------------------------------
    Function FTPUpload(sSite, sUsername, sPassword, sLocalFile, sRemotePath)
      'This script is provided under the Creative Commons license located
      'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
      'be used for commercial purposes with out the expressed written consent
      'of NateRice.com
     
      Const OpenAsDefault = -2
      Const FailIfNotExist = 0
      Const ForReading = 1
      Const ForWriting = 2
     
      Set oFTPScriptFSO = CreateObject("Scripting.FileSystemObject")
      Set oFTPScriptShell = CreateObject("WScript.Shell")
     
      sRemotePath = Trim(sRemotePath)
      sLocalFile = Trim(sLocalFile)
     
      '----------Path Checks---------
      'Here we willcheck the path, if it contains
      'spaces then we need to add quotes to ensure
      'it parses correctly.
      If InStr(sRemotePath, " ") > 0 Then
        If Left(sRemotePath, 1) <> """" And Right(sRemotePath, 1) <> """" Then
          sRemotePath = """" & sRemotePath & """"
        End If
      End If
     
      If InStr(sLocalFile, " ") > 0 Then
        If Left(sLocalFile, 1) <> """" And Right(sLocalFile, 1) <> """" Then
          sLocalFile = """" & sLocalFile & """"
        End If
      End If
     
      'Check to ensure that a remote path was
      'passed. If it's blank then pass a "\"
      If Len(sRemotePath) = 0 Then
        'Please note that no premptive checking of the
        'remote path is done. If it does not exist for some
        'reason. Unexpected results may occur.
        sRemotePath = "\"
      End If
     
      'Check the local path and file to ensure
      'that either the a file that exists was
      'passed or a wildcard was passed.
      If InStr(sLocalFile, "*") Then
        If InStr(sLocalFile, " ") Then
          FTPUpload = "Error: Wildcard uploads do not work if the path contains a " & _
          "space." & vbCRLF
          FTPUpload = FTPUpload & "This is a limitation of the Microsoft FTP client."
          Exit Function
        End If
      ElseIf Len(sLocalFile) = 0 Or Not oFTPScriptFSO.FileExists(sLocalFile) Then
        'nothing to upload
        FTPUpload = "Error: File Not Found."
        Exit Function
      End If
      '--------END Path Checks---------
     
      'build input file for ftp command
      sFTPScript = sFTPScript & "USER " & sUsername & vbCRLF
      sFTPScript = sFTPScript & sPassword & vbCRLF
      sFTPScript = sFTPScript & "cd " & sRemotePath & vbCRLF
      sFTPScript = sFTPScript & "binary" & vbCRLF
      sFTPScript = sFTPScript & "prompt n" & vbCRLF
      sFTPScript = sFTPScript & "put " & sLocalFile & vbCRLF
      sFTPScript = sFTPScript & "quit" & vbCRLF & "quit" & vbCRLF & "quit" & vbCRLF
     
     
      sFTPTemp = oFTPScriptShell.ExpandEnvironmentStrings("%TEMP%")
      sFTPTempFile = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
      sFTPResults = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
     
      'Write the input file for the ftp command
      'to a temporary file.
      Set fFTPScript = oFTPScriptFSO.CreateTextFile(sFTPTempFile, True)
      fFTPScript.WriteLine(sFTPScript)
      fFTPScript.Close
      Set fFTPScript = Nothing 
     
      oFTPScriptShell.Run "%comspec% /c FTP -i -n -s:" & sFTPTempFile & " " & sSite & _
      " > " & sFTPResults,0,True
     
      Wscript.Sleep 1000
     
      'Check results of transfer.
      Set fFTPResults = oFTPScriptFSO.OpenTextFile(sFTPResults, ForReading, _
      FailIfNotExist, OpenAsDefault)
      sResults = fFTPResults.ReadAll
      fFTPResults.Close
     
      oFTPScriptFSO.DeleteFile(sFTPTempFile)
      'oFTPScriptFSO.DeleteFile (sFTPResults)
     
      If InStr(sResults, "226 Transfer complete.") > 0 Then
        FTPUpload = True
      ElseIf InStr(sResults, "File not found") > 0 Then
        FTPUpload = "Error: File Not Found"
      ElseIf InStr(sResults, "cannot log in.") > 0 Then
        FTPUpload = "Error: Login Failed."
      Else
        FTPUpload = "Error: Unknown."
      End If
     
      Set oFTPScriptFSO = Nothing
      Set oFTPScriptShell = Nothing
    End Function
    '-------------------------------------------------------------------------------------------

  6. #6
    Membre à l'essai
    Inscrit en
    Janvier 2007
    Messages
    21
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 21
    Points : 22
    Points
    22
    Par défaut Merci
    Je viens de tomber sur ce poste qui me donne exactement ce que je cherche...

    Alors bravo et merci

  7. #7
    Membre actif
    Homme Profil pro
    Responsable déploiement systèmes
    Inscrit en
    Juin 2015
    Messages
    120
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Responsable déploiement systèmes
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Juin 2015
    Messages : 120
    Points : 246
    Points
    246
    Par défaut Ver ?
    Bonjour,

    au téléchargement du code de la version définitive de ce script, mon anti-virus détecte un ver à l'intérieur (Worm:VBS/Cinera.B)...

    Cordialement, Stéphane
    "L'erreur est humaine mais un véritable désastre nécessite un ordinateur." de William Henry, dit Bill Gates

  8. #8
    Expert éminent
    Avatar de hackoofr
    Homme Profil pro
    Enseignant
    Inscrit en
    Juin 2009
    Messages
    3 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 840
    Points : 9 224
    Points
    9 224
    Par défaut
    Citation Envoyé par steph78630 Voir le message
    Bonjour,
    au téléchargement du code de la version définitive de ce script, mon anti-virus détecte un ver à l'intérieur (Worm:VBS/Cinera.B)...
    Cordialement, Stéphane
    Oui, je l'ai constaté dernièrerment moi aussi par mon antivirus ESET !
    Bien sûr c'est une fausse alerte positive car dans la source il détecte ces deux fonctions qui ont été utilisé par des vrai vers (Worms) pour se propager sur les clés USB:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    sub DetectRoot()
        Dim fso, d, dc, s, n ,Root,u,racine
        Set fso = CreateObject("Scripting.FileSystemObject")
        Set dc = fso.Drives
        For Each d in dc
            Root = d.Driveletter & ":"
            racine = d.Driveletter & ":\"
            u= DetectAmovible(Root)
            if (( u="Fixe") and d.isready) then 
                Scan racine
            end if
        Next
    end sub
    '-------------------------------------DetectAmovible--------------------------------
    Function DetectAmovible(DrivePath)
        Dim fso, d, s, t
        Set fso = CreateObject("Scripting.FileSystemObject")
        Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(DrivePath)))
        Select Case d.DriveType
            Case 0: t = "Inconnu"
            Case 1: t = "Amovible"
            Case 2: t = "Fixe"
            Case 3: t = "Net"
            Case 4: t = "CD-ROM"
            Case 5: t = "RAM Disk"
        End Select
        DetectAmovible = t
    End Function

  9. #9
    Expert éminent sénior
    Avatar de Marc-L
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Avril 2013
    Messages
    9 468
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2013
    Messages : 9 468
    Points : 18 674
    Points
    18 674
    Par défaut
    Bonjour,

    oui beaucoup de vers profitent de VBScript, c'est pourquoi il est désactivé sur les ordinateurs sensibles …

    ___________________________________________________________________________________________________________
    Je suis Paris, Egypte, Nigeria, New-York, Mogadicio, Barcelone, London, Manchester, Stockholm, Istanbul, Berlin, Nice, Bruxelles, Charlie, …
    C'est parce que la vitesse de la lumière est plus rapide que celle du son que tant de gens paressent brillants avant d'avoir l'air con ! (Thomas Boishardy)

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 12
    Dernier message: 20/11/2009, 19h31
  2. Comment lire les fichiers dont l'extension est .tex ?
    Par condor_01 dans le forum Ubuntu
    Réponses: 3
    Dernier message: 19/10/2007, 16h24
  3. Réponses: 18
    Dernier message: 22/06/2006, 17h55
  4. Sélectionner tous les fichiers avec l'extension
    Par babarpapa dans le forum AWT/Swing
    Réponses: 3
    Dernier message: 27/03/2006, 10h25
  5. Réponses: 4
    Dernier message: 16/08/2003, 13h21

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo