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

 

 


Tema destacado:


  Mostrar Mensajes
Páginas: 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 [70] 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 ... 137
691  Programación / Programación Visual Basic / Re: Sacar enlaces de google vb6??= en: 23 Agosto 2011, 16:44 pm
HOLA!!!

http://code.google.com/intl/es/apis/customsearch/v1/reference.html

Bajas el codigo xml y lees los resultados de ahi.

GRACIAS POR LEER!!!
692  Seguridad Informática / Análisis y Diseño de Malware / Re: Creacion troyano? en: 19 Agosto 2011, 19:33 pm
HOLA!!!

Queres aprender a correr sin aprender a caminar... x.x
Descargate un troyano hecho y ya...

http://foro.elhacker.net/analisis_y_diseno_de_malware/demonio_rat_30_lanzado_opensource_gplv3-t333663.0.html

Correccion quiere correr y es LISIADO!

GRACIAS POR LEER!!!
693  Foros Generales / Foro Libre / Re: Cuantos guardaespaldas tiene Ratzinger? en: 19 Agosto 2011, 19:10 pm
HOLA!!!

´´Solo dios sabe´´


 :xD

GRACIAS POR LEER!!!
694  Foros Generales / Foro Libre / Re: Donde comprar un casco de ondas cerebrales en: 19 Agosto 2011, 18:44 pm
HOLA!!!

http://www.unicrom.com/topic.asp?TOPIC_ID=5273&FORUM_ID=40&CAT_ID=13&Forum_Title=Electromedicina+%2D+Bioingenier%EDa&Topic_Title=ELECTROENCEFALOGRAMA+%28EEG%29

GRACIAS POR LEER!!!
695  Programación / Programación Visual Basic / Re: Problema con la API GetSystemPowerStatus en: 19 Agosto 2011, 18:24 pm
HOLA!!!

SO' BOLUDO' ?

XD

8 de bateria cargando
+
1 de bateria con carga alta
=
9


Pone asi y va a funcionar:
Código
  1. Private Type SYSTEM_POWER_STATUS
  2.        ACLineStatus As Byte
  3.        BatteryFlag As Byte
  4.        BatteryLifePercent As Byte
  5.        Reserved1 As Byte
  6.        BatteryLifeTime As Long
  7.        BatteryFullLifeTime As Long
  8. End Type
  9. Private Declare Function GetSystemPowerStatus Lib "kernel32" (lpSystemPowerStatus As SYSTEM_POWER_STATUS) As Long
  10. Private Sub Form_Paint()
  11.    'KPD-Team 2000
  12.    'URL: http://www.allapi.net/
  13.    'E-Mail: KPDTeam@Hotmail.com
  14.    Dim SPS As SYSTEM_POWER_STATUS
  15.    'get the battery powerstatus
  16.    GetSystemPowerStatus SPS
  17.    Me.AutoRedraw = True
  18.    'show some information
  19.    Select Case SPS.ACLineStatus
  20.        Case 0
  21.            Me.Print "AC power status: Offline"
  22.        Case 1
  23.            Me.Print "AC power status: OnLine"
  24.        Case 2
  25.            Me.Print "AC power status: Unknown"
  26.    End Select
  27.    If SPS.BatteryFlag And 1 Then Me.Print "Battery charge status: High"
  28.    If SPS.BatteryFlag And 2 Then Me.Print "Battery charge status: Low"
  29.    If SPS.BatteryFlag And 4 Then Me.Print "Battery charge status: Critical"
  30.    If SPS.BatteryFlag And 8 Then Me.Print "Battery charge status: Charging"
  31.    If SPS.BatteryFlag And 128 Then Me.Print "Battery charge status: No system battery"
  32.    If SPS.BatteryFlag And 255 Then Me.Print "Battery charge status: Unknown Status"
  33. End Sub

GRACIAS POR LEER!!!
696  Foros Generales / Foro Libre / Re: Oro, Plata y Bronce en el Foro en: 19 Agosto 2011, 15:54 pm
HOLA!!!

Aluminio para 79137913 que se me olvidó nombraros  :xD.

¬¬' Que es la medalla de aluminio... no estaba enterado de este tema, tuve que buscar mi nick para encontrarlo  :¬¬ :¬¬ :¬¬ :¬¬ :¬¬

GRACIAS POR LEER!!!
697  Seguridad Informática / WarZone / Re: Hack-Web_Foro en: 19 Agosto 2011, 14:57 pm
HOLA!!!

Estoy medio perdido con esto :S

Le calce esto:
Código:
</div&gt<script>alert('XSS');</script><div style="overflow: auto; width: 100%;">
y me devolvio:
Código:
</div><script>alert('XSS');</script><div style="overflow: auto; width: 100%;">

No se que es porque no anda  :(

GRACIAS POR LEER!!!
698  Programación / Programación Visual Basic / Re: [Duda Vb6]Acceder a un .txt subido a un servidor en: 19 Agosto 2011, 13:36 pm
HOLA!!!

Que le estan diciendo pobre chico XD

Mira aca tenes la funcion de seba123neo es buenisima:
Código
  1. Option Explicit
  2. Public Declare Function InternetOpen Lib "wininet.dll" Alias "InternetOpenA" (ByVal sAgent As String, ByVal lAccessType As Long, ByVal sProxyName As String, ByVal sProxyBypass As String, ByVal lFlags As Long) As Long
  3. Public Declare Function InternetOpenUrl Lib "wininet.dll" Alias "InternetOpenUrlA" (ByVal hInternetSession As Long, ByVal sURL As String, ByVal sHeaders As String, ByVal lHeadersLength As Long, ByVal lFlags As Long, ByVal lContext As Long) As Long
  4. Public Declare Function InternetReadFile Lib "wininet.dll" (ByVal hFile As Long, ByVal sBuffer As String, ByVal lNumBytesToRead As Long, lNumberOfBytesRead As Long) As Integer
  5. Public Declare Function InternetCloseHandle Lib "wininet.dll" (ByVal hInet As Long) As Integer
  6.  
  7. Public Const IF_FROM_CACHE = &H1000000
  8. Public Const IF_MAKE_PERSISTENT = &H2000000
  9. Public Const IF_NO_CACHE_WRITE = &H4000000
  10.  
  11. Private Const BUFFER_LEN = 256
  12.  
  13.  
  14. Public Function GetUrlSource(sURL As String) As String
  15.    Dim sBuffer As String * BUFFER_LEN, iResult As Integer, sData As String
  16.    Dim hInternet As Long, hSession As Long, lReturn As Long
  17.  
  18.    'get the handle of the current internet connection
  19.    hSession = InternetOpen("vb wininet", 1, vbNullString, vbNullString, 0)
  20.    'get the handle of the url
  21.    If hSession Then hInternet = InternetOpenUrl(hSession, sURL, vbNullString, 0, IF_NO_CACHE_WRITE, 0)
  22.    'if we have the handle, then start reading the web page
  23.    If hInternet Then
  24.        'get the first chunk & buffer it.
  25.        iResult = InternetReadFile(hInternet, sBuffer, BUFFER_LEN, lReturn)
  26.        sData = sBuffer
  27.        'if there's more data then keep reading it into the buffer
  28.        Do While lReturn <> 0
  29.            iResult = InternetReadFile(hInternet, sBuffer, BUFFER_LEN, lReturn)
  30.            sData = sData + Mid(sBuffer, 1, lReturn)
  31.        Loop
  32.    End If
  33.  
  34.    'close the URL
  35.    iResult = InternetCloseHandle(hInternet)
  36.  
  37.    GetUrlSource = sData
  38. End Function

Haces:
Código
  1. VariableStringCualquiera = GetUrlSource(UrlDelTXT)
Y listo en la variable VariableStringCualquiera tenes tu archivo de texto.

GRACIAS POR LEER!!!
699  Foros Generales / Foro Libre / Re: Que opinan de Cristina Kirchner? en: 19 Agosto 2011, 13:17 pm
HOLA!!!

Eternal Idol:
Ya repetiste las cosas 3 veces y yo tambien, no tiene sentido seguir discutiendo por esto, esta claro que vos tenes bien claro lo que queres y yo tambien tengo bien claro lo que quiero...

Si queres seguir la discucion no hay problema hay medios de contacto en mi perfil del foro.

Buena suerte.

GRACIAS POR LEER!!!
700  Comunicaciones / Redes / [CONSULTA] Red inalambrica dentro de Red local. en: 18 Agosto 2011, 20:53 pm
HOLA!!!

El tema es asi...

Tengo una red (router tplink) con los 16 slots llenos, lo que quiero hacer es lo siguiente... quiero que una pc dentro de la red distribuya internet por medio de un adaptador inalambrico usb... me entienden lo que digo?

Osea:

Red de area local -> PC conectada ->)) (wifi) Sub Red inalambrica ->)) otras PCs que se conecten a esa red (la wifi).

GRACIAS POR LEER!!!
Páginas: 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 [70] 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 ... 137
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines