elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Guía actualizada para evitar que un ransomware ataque tu empresa


  Mostrar Mensajes
Páginas: 1 2 3 [4] 5
31  Seguridad Informática / Hacking / Re: backtrack 5 manual? en: 23 Noviembre 2013, 18:57 pm
Yo prefiero los vídeos, en youtube hay un canal que tiene un curso de backtrack muy completo. No lo pongo aquí para no hacer spam, pero lo podes buscar. Son preferibles los vídeos para algunas cosas, porque se te facilita mas.
¡Saludos!  :D
32  Foros Generales / Dudas Generales / Re: programas ya abiertos. en: 23 Noviembre 2013, 18:27 pm
Puedes revisar los programas que se inician al encender tu PC. Lo puedes hacer de la siguiente manera:
1. Abres la ventana ejecutar
2. Escribes msconfig y les das aceptar
3. Luego te vas donde dice inicio
Saludos!!
33  Foros Generales / Noticias / Re: Confirmadas las principales novedades de Windows Phone 8 GDR3 en: 14 Octubre 2013, 21:45 pm
jajajaja...!! lol
34  Foros Generales / Noticias / Re: Confirmadas las principales novedades de Windows Phone 8 GDR3 en: 14 Octubre 2013, 19:49 pm
Hermoso!!
35  Programación / Bases de Datos / Re: COLECCION 90 LIBROS DE SQL EN ESPAÑOL en: 7 Septiembre 2013, 06:33 am
Gracias!! Ya empiezo a descargar.  :D
36  Seguridad Informática / Hacking / Re: [Ayuda] Redirigir peticiones web a otra página. en: 3 Septiembre 2013, 05:10 am
Yo lo he hecho varias veces con BackTrack 5 r3 y la herramienta ettercap
37  Programación / .NET (C#, VB.NET, ASP) / Re: Codigo de una calculadora en: 1 Septiembre 2013, 23:03 pm
No No gracias ya pude resolverlo  :D
38  Programación / .NET (C#, VB.NET, ASP) / Codigo de una calculadora en: 1 Septiembre 2013, 22:18 pm
Hola amigos, vieras que soy un poco nuevo en esto de la programación y hoy estuve haciendo este código en visual studio y a la hora de compilarlo no podía, quisiera que me ayudaran a corregirlo:

Código
  1. Public Class Form1
  2.    Dim OP As String
  3.    Dim a, b, resultado As Double
  4.    Dim c As Double
  5.  
  6.    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  7.  
  8.    End Sub
  9.  
  10.    Private Sub Button11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button11.Click
  11.        If c = True Then
  12.            Text1.Text = ""
  13.        End If
  14.        Text1.Text = Text1.Text + "2"
  15.        c = False
  16.    End Sub
  17.  
  18.    Private Sub Button9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button9.Click
  19.        If c = True Then
  20.            Text1.Text = ""
  21.        End If
  22.        Text1.Text = Text1.Text + "3"
  23.        c = False
  24.    End Sub
  25.  
  26.    Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click
  27.        If c = True Then
  28.            Text1.Text = ""
  29.        End If
  30.        Text1.Text = Text1.Text + "4"
  31.        c = False
  32.    End Sub
  33.  
  34.    Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click
  35.        If c = True Then
  36.            Text1.Text = ""
  37.        End If
  38.        Text1.Text = Text1.Text + "5"
  39.        c = False
  40.    End Sub
  41.  
  42.    Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
  43.        If c = True Then
  44.            Text1.Text = ""
  45.        End If
  46.        Text1.Text = Text1.Text + "6"
  47.        c = False
  48.    End Sub
  49.  
  50.    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  51.        If c = True Then
  52.            Text1.Text = ""
  53.        End If
  54.        Text1.Text = Text1.Text + "7"
  55.        c = False
  56.    End Sub
  57.  
  58.    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
  59.        If c = True Then
  60.            Text1.Text = ""
  61.        End If
  62.        Text1.Text = Text1.Text + "8"
  63.        c = False
  64.    End Sub
  65.  
  66.    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
  67.        If c = True Then
  68.            Text1.Text = ""
  69.        End If
  70.        Text1.Text = Text1.Text + "9"
  71.        c = False
  72.    End Sub
  73.  
  74.    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
  75.        If c = True Then
  76.            Text1.Text = ""
  77.        End If
  78.        Text1.Text = Text1.Text + "0"
  79.        c = False
  80.    End Sub
  81.  
  82.    Private Sub Button17_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button17.Click
  83.        Text1.Text = Text1.Text + "."
  84.    End Sub
  85.  
  86.    Private Sub Button12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button12.Click
  87.        a = Text1.Text
  88.        Text1.Text = ""
  89.        OP = "SUMA"
  90.  
  91.    End Sub
  92.  
  93.    Private Sub Button15_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button15.Click
  94.        a = Text1.Text
  95.        Text1.Text = ""
  96.        OP = "RESTA"
  97.    End Sub
  98.  
  99.    Private Sub Button14_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button14.Click
  100.        a = Text1.Text
  101.        Text1.Text = ""
  102.        OP = "MULTIPLICACION"
  103.    End Sub
  104.  
  105.    Private Sub Button13_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button13.Click
  106.        a = Text1.Text
  107.        Text1.Text = ""
  108.        OP = "DIVISION"
  109.    End Sub
  110.  
  111.    Private Sub Button16_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button16.Click
  112.        b = Val(Text1.Text)
  113.        Select Case OP
  114.            Case "SUMA"
  115.                resultado = a + b
  116.                Text1.Text = resultado
  117.            Case "RESTA"
  118.                resultado = a - b
  119.                Text1.Text = resultado
  120.            Case "DIVISION"
  121.                resultado = a / b
  122.                Text1.Text = resultado
  123.            Case "MULTIPLICACION"
  124.                resultado = a * b
  125.                Text1.Text = resultado
  126.        End Select
  127.    End Sub
  128. End Class


39  Seguridad Informática / Hacking / Re: duda con ddos en: 30 Agosto 2013, 04:16 am
Mira quizá haciéndote un ataque con la herramienta ping a tu IP, que lo podes hacer como algo así
Código:
ping -t -l 65500 -n 999999 TU IP
ese tipo de ataque es un poco malo, pero si podría ser poderosa la herramienta ping.
Hablando de consecuencias solamente que se lentee tu sistema, pero solo mientras mantienes el ataque, ya consecuencias a largo plazo no lo hay.
Saludos!!
40  Seguridad Informática / Hacking / Re: [Hacking] Router que usa linux. en: 15 Julio 2013, 03:38 am
No se busca algún fichero de interés, pero no intentes cagarte en el router, a no ser que seas un lammer.
Saludos!!!
Páginas: 1 2 3 [4] 5
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines