Test de penetración con BackTrack, Netcat | Labs DragonJAR:
'via Blog this'
martes, 30 de agosto de 2011
lunes, 29 de agosto de 2011
sábado, 27 de agosto de 2011
viernes, 26 de agosto de 2011
martes, 23 de agosto de 2011
martes, 16 de agosto de 2011
domingo, 14 de agosto de 2011
sábado, 13 de agosto de 2011
Migrar de VB6 a .NET - Equivalencias en el API de Windows
Migrar de VB6 a .NET - Equivalencias en el API de Windows: " _
Private Shared Function GetWindowText( _
ByVal hWnd As System.IntPtr, _
ByVal lpString As System.Text.StringBuilder, _
ByVal cch As Integer) As Integer
End Function"
Private Shared Function GetWindowText( _
ByVal hWnd As System.IntPtr, _
ByVal lpString As System.Text.StringBuilder, _
ByVal cch As Integer) As Integer
End Function"
jueves, 11 de agosto de 2011
miércoles, 10 de agosto de 2011
martes, 9 de agosto de 2011
lunes, 8 de agosto de 2011
sábado, 6 de agosto de 2011
Leer Atributos de un archivo Visual Basic .NET Usando GetAttributes de System.IO
Leer Atributos de un archivo Visual Basic .NET Usando GetAttributes de System.IO: "Private Sub Cargar_info_Arc()
Dim Info As FileInfo = My.Computer.FileSystem.GetFileInfo(txtUbicacion.Text)
lblTamano.Text = 'Tamaño: ' + Info.Length.ToString()
lblCreado.Text = 'Creado:' + Info.CreationTime
lblAcceso.Text = 'Ultimo Acceso: ' + Info.LastAccessTime
If (File.GetAttributes(txtUbicacion.Text) And FileAttributes.ReadOnly) = FileAttributes.ReadOnly Then
chkSoloLectura.Checked = True
End If
If (File.GetAttributes(txtUbicacion.Text) And FileAttributes.Hidden) = FileAttributes.Hidden Then
chkOculto.Checked = True
End If
If (File.GetAttributes(txtUbicacion.Text) And FileAttributes.System) = FileAttributes.System Then
chkSistema.Checked = True
End If
End Sub"
Dim Info As FileInfo = My.Computer.FileSystem.GetFileInfo(txtUbicacion.Text)
lblTamano.Text = 'Tamaño: ' + Info.Length.ToString()
lblCreado.Text = 'Creado:' + Info.CreationTime
lblAcceso.Text = 'Ultimo Acceso: ' + Info.LastAccessTime
If (File.GetAttributes(txtUbicacion.Text) And FileAttributes.ReadOnly) = FileAttributes.ReadOnly Then
chkSoloLectura.Checked = True
End If
If (File.GetAttributes(txtUbicacion.Text) And FileAttributes.Hidden) = FileAttributes.Hidden Then
chkOculto.Checked = True
End If
If (File.GetAttributes(txtUbicacion.Text) And FileAttributes.System) = FileAttributes.System Then
chkSistema.Checked = True
End If
End Sub"
viernes, 5 de agosto de 2011
miércoles, 3 de agosto de 2011
Suscribirse a:
Entradas (Atom)