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

 

 


Tema destacado: Introducción a la Factorización De Semiprimos (RSA)


  Mostrar Mensajes
Páginas: 1 ... 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 86 87 88 89 90 ... 141
741  Programación / .NET (C#, VB.NET, ASP) / Re: Tabla en WebBrowser a DataGridView? en: 10 Julio 2012, 01:05 am
gracias seba123neo! lo estaré probando.
742  Programación / .NET (C#, VB.NET, ASP) / Re: Tabla en WebBrowser a DataGridView? en: 9 Julio 2012, 23:49 pm
algo mas feo.. se podria llenar el DataGrid con

Código
  1.  
  2. var itemList = [];
  3. var fixer = new ieee_mode_fixer("11nght20".toLowerCase(), "0");
  4. var clksel = fixer.getClkSel();
  5.  
  6. function chooseSSID(lock)
  7. {
  8. var value = $("input[name='ssid']:checked").val();
  9. if (value)
  10. {
  11. var idx = parseInt(value);
  12. window.opener.setESSID(itemList[idx], clksel, lock);
  13. window.close();
  14. }
  15. else
  16. {
  17. alert("Ningun SSID ha sido seleccionado! Por favor, seleccione uno.");
  18. }
  19.  
  20. return false;
  21. }
  22.  
  23. function processJSON(json)
  24. {
  25. itemList = json;
  26.  
  27. var mode = "tool";
  28. var tool_mode = mode == "tool";
  29. var has_ap = false;
  30.  
  31. $('#survey > tbody').empty();
  32.  
  33. var tbody = [];
  34. for (var i = 0; i < itemList.length; i++)
  35. {
  36. var row = [];
  37. row.push("<tr>");
  38.  
  39. if (!tool_mode && itemList[i].essid.length > 0 && itemList[i].mode != "Ad-Hoc")
  40. {
  41. row.push("<td><input type=\"radio\" name=\"ssid\" value=\"" + i + "\" /></td>");
  42. has_ap = true;
  43. }
  44. else
  45. {
  46. row.push("<td>&nbsp;</td>");
  47. }
  48.  
  49. row.push("<td class=\"str\">" + itemList[i].mac + "</td>");
  50. row.push("<td class=\"str\">" + itemList[i].essid + "&nbsp;</td>");
  51. row.push("<td class=\"str\">" + itemList[i].mtik_name + "&nbsp;</td>");
  52. row.push("<td>" + itemList[i].encryption.toUpperCase() + "</td>");
  53. row.push("<td>" + itemList[i].signal_level + " / " + itemList[i].noise_level + "</td>");
  54. row.push("<td>" + itemList[i].frequency + "</td>");
  55. row.push("<td>" + itemList[i].channel + "</td>");
  56.  
  57. row.push("</tr>");
  58.  
  59. tbody.push(row.join(''));
  60. }
  61.  
  62. $('#survey > tbody').append(tbody.join(''));
  63.  
  64. $("#loader").hide();
  65. $('#scan_btn').attr("disabled", false);
  66. $('#survey').show();
  67.  
  68. if (mode != "tool" && has_ap)
  69. {
  70. $("#msg_row").show();
  71. $("#lock_btn").show();
  72. $("#select_btn").show();
  73. }
  74. }
  75.  
  76. function processError(xhr, err, e)
  77. {
  78. $("#loader").hide();
  79. $('#scan_btn').attr("disabled", false);
  80. }
  81.  
  82. $(document).ready(function() {
  83. $("#loader").show();
  84. $('#scan_btn').attr("disabled", true);
  85. $('#fl-title').click(function(){
  86. $('#fl-data').toggle();
  87. return false;
  88. });
  89. $('#lock_btn').click(function() {
  90. chooseSSID(true);
  91. return false;
  92. });
  93. $('#select_btn').click(function() {
  94. chooseSSID(false);
  95. return false;
  96. });
  97.  
  98. var data = {};
  99. data["iface"] = 'ath0';
  100. $.ajax({
  101. type: "GET",
  102. url: "survey.json.cgi",
  103. dataType: "json",
  104. cache: false,
  105. data: data,
  106. success: processJSON,
  107. error: processError
  108. });
  109. });
  110.  
743  Programación / .NET (C#, VB.NET, ASP) / Tabla en WebBrowser a DataGridView? en: 9 Julio 2012, 23:24 pm
tengo una tabla similar a esta:

Código
  1. <table id="tt" class="easyui-datagrid" style="width:400px;height:auto;">  
  2.    <thead>  
  3.        <tr>  
  4.            <th field="name1" width="50">Col 1</th>  
  5.            <th field="name2" width="50">Col 2</th>  
  6.            <th field="name3" width="50">Col 3</th>  
  7.            <th field="name4" width="50">Col 4</th>  
  8.            <th field="name5" width="50">Col 5</th>  
  9.            <th field="name6" width="50">Col 6</th>  
  10.        </tr>                            
  11.    </thead>                            
  12.    <tbody>                              
  13.        <tr>                            
  14.            <td>Data 1</td>              
  15.            <td>Data 2</td>              
  16.            <td>Data 3</td>              
  17.            <td>Data 4</td>              
  18.            <td>Data 5</td>              
  19.            <td>Data 6</td>              
  20.        </tr>                            
  21.        <tr>                            
  22.            <td>Data 1</td>              
  23.            <td>Data 2</td>              
  24.            <td>Data 3</td>              
  25.            <td>Data 4</td>              
  26.            <td>Data 5</td>              
  27.            <td>Data 6</td>              
  28.        </tr>                            
  29.        <tr>                            
  30.            <td>Data 1</td>              
  31.            <td>Data 2</td>              
  32.            <td>Data 3</td>              
  33.            <td>Data 4</td>              
  34.            <td>Data 5</td>              
  35.            <td>Data 6</td>              
  36.        </tr>                            
  37.        <tr>                            
  38.            <td>Data 1</td>              
  39.            <td>Data 2</td>              
  40.            <td>Data 3</td>              
  41.            <td>Data 4</td>              
  42.            <td>Data 5</td>              
  43.            <td>Data 6</td>              
  44.        </tr>                            
  45.    </tbody>                            
  46. </table>  

y necesito moverlo directamente a un DataGridView, cada un cierto tiempo la tabla se actualiza.. y debería actualizar el DataGridView y a su ves reemplazar los datos ya tomados..  hay alguna forma de pasar estos datos si pasarlos a un textbox y luego separalos y por ultimo ingresarlos en el DataGridView?
744  Seguridad Informática / Hacking Wireless / Re: Abrir puertos en router Thomson en: 9 Julio 2012, 22:50 pm
Eso lo configuras en "Reglas de acceso a juegos & Aplicaciones": http://192.168.1.254/cgi/b/games/ov/?be=0&l0=3&l1=4

745  Programación / .NET (C#, VB.NET, ASP) / Re: [Aporte] Exportar DataGridView a Excel, PDF y HTML en: 9 Julio 2012, 09:41 am
megaupload...  :-[ :-[
746  Seguridad Informática / Materiales y equipos / Manual: Comandos Básicos de Consola sobre Equipamiento Ubiquiti en: 9 Julio 2012, 03:42 am
Manual:
Comandos Básicos de Consola
sobre Equipamiento Ubiquiti


Principalmente vamos a ver unos comandos básicos mediante telnet y dentro de nuestro equipamiento Ubiquiti. En esta ocasión se utilizara Equipamiento Ubiquiti Nanostation M2 v5.5.

Primero debemos abrir una consola, por ejemplo podemos hacer "Tecla Windows + R" y escribimos cmd y damos a ENTER, luego vamos a conectarnos con nuestro nano, para ello utilizaremos Telnet 192.168.1.20 en caso de haber modificado la IP sera la que le han asignado al nano. Nos pedira un usuario y una contraseña.. por defecto ambas son ubnt ubnt. Y ya estaremos dentro del mismo.

O para los que quieren hacerlo más rápido, pueden bajarse el UBNT-ALC (Ubiquiti AutoLoginConsole) un simple programa que nos abrirá y logueara automáticamente un terminal.

Bueno ahora vamos a los comandos:



01.- Escanear redes aproximas:

Código:
iwlist ath0 scan



02.- Lista de estaciones proximas:

Código:
iwlist ath0 peers/ap



03.- Saber el rango de potencia soportado y la potencia actual en uso:

Código:
iwlist ath0 txpower



04.- Saber la lista de canales soportados y cual esta en uso actualmente:

Código:
iwlist ath0 frequency/channel



05.- Saber el bitrate actual:

Código:
iwlist ath0 bitrate/rate



06.- Saber las autentificaciones y especificaciones:

Código:
iwlist ath0 auth



07.- Información sobre la red actual conectada:

Código:
iwlist ath0 genie



08.- Ver las interfaces actuales:

Código:
ifconfig



09.- Ver las interfaces actuales y su uso:

Código:
iwconfig



10.- Cambiar la potencia actual del equipamiento en uso:

Código:
iwconfig ath0 txpower <XXdBm>

Código:
Potencia Linea Nanostation M:

10 dBm        (10 mW)
16 dBm        (39 mW)
18 dBm        (63 mW)
20 dBm        (100 mW)
22 dBm        (158 mW)
24 dBm        (251 mW)
26 dBm        (398 mW)
28 dBm        (630 mW)

Para verificar hacemos: iwlist ath0 txpower



11.- Ver el contenido de la carpeta actual:

Código:
ls

ejemplo:

Código:
cd /bin/
ls



12.- Cambiar contraseña de usuario actual:

Código:
passwd
Nuevo password
Confirmar password



13.- Limpiar pantalla:

Código:
clear



14.- Encontrar equipamientos conectados entre si: Similar a UBNT Discovery

Código:
ubntbox discover

o

Código:
discover



15.- Testeo del Equipamiento:

Código:
factorytest

opciones:

Código:
setup
flash
rssi
throughput
ethernet
led



16.- Hacer Ping v4

Código:
ping <IPv4>



17.- Hacer Ping v6

Código:
ping <IPv6>



Entre otros comanados más... como route, etc.
747  Seguridad Informática / Materiales y equipos / Re: ALFA Network USB 6000mW 802.11b/g/n 150Mbps Wi-Fi Wireless en: 9 Julio 2012, 03:07 am
podrías leer los mensajes...
748  Seguridad Informática / Materiales y equipos / CST Studio Suite 2011 + SP3 + SP7 (Simulación de Antenas) en: 8 Julio 2012, 01:11 am

El software de simulación electromagnética CST Studio Suite es la culminación de muchos años de investigación y el desarrollo en las soluciones de cómputo más eficientes y precisos en el diseño electromagnético. Comprende herramientas OCS para el diseño y la optimización de los dispositivos que operan en una amplia gama de frecuencias estáticas a óptico. Los análisis pueden incluir los efectos térmicos y mecánicos, así como de simulación de circuitos. Todos los programas son accesibles a través de una interfaz común con el circuito y facilita cosimulación multifísica.


















Detalles:
Uploader: Arg-Wireless.com.ar
Host: Mediafire
Tamaño: Aprox. 2,2GB + 300Mb (SP3)
Soporte: Windows XP y Vista y 7.
Crack: 100% en español explicado paso a paso.

LINK: http://lix.in/-bd4cd5 (DVD+SP3)
SP7: http://lix.in/-bed376
749  Seguridad Informática / Wireless en Linux / Re: WPSCrackGUI v1.1.8 (16-06-2012) en: 4 Julio 2012, 01:39 am
@jose46lopez: Entras en las configuraciones del router y listo..

@slamet: Aun no hay ningún método para des-activar o des-bloquear el WPS.
750  Seguridad Informática / Wireless en Linux / Re: WPSCrackGUI v1.1.8 (16-06-2012) en: 3 Julio 2012, 05:20 am
P4nd3m0n1um hola buenas el wpscragui v1.1.8 lo puedes poner para slax ? por favor para probarlo haber si va mejor que los otros anteriores gracias.

Do it yourself.
Páginas: 1 ... 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 86 87 88 89 90 ... 141
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines