Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - nexusz

#1
Buenas,les queria hacer una consulta,me estoy por comprar una notebook con un procesador  INTEL CORE I3-6100U, 4GB de memoria RAM ,queria saber si con el voy a poder correr bien las maquinas virtuales si les instalo kali linux o windows 7 o 8.1 porque con la notebook que tengo ahora si abro una maquina virutal que tiene instalado windows 7 o kali linux se tilda muchisimo y me es imposible trabajar.

desde ya gracias y un saludo
#2
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Y si existe la tabla productos, si puedes pasar una captura de tu base de datos por fa men Saludos!
ahi esta la imagen de las tablasy la base de datos





No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Lista las tablas de la base de datos como dice arthusu con "\l". Y realiza la consulta más corta para saber de donde viene el problema, por ejemplo en el WHERE utiliza sola "nombre" (y escríbelo todo en minúscula)

Saludos
ya probe en dejar solo el nombre y tambien probe en dejar solo la contraceña y me  sigue diciendo que no detecta la tabla

cambie de version a  postgresql 9.4 y no me tira mas el error ese, me tira otro es el siguiente:
Código: php
Warning: pg_connect(): Unable to connect to PostgreSQL server: could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432? in C:\xampp\htdocs\conpostgres.php on line 5


No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
cambie de version a  postgresql 9.4 y no me tira mas el error ese, me tira otro es el siguiente:
Código: php
Warning: pg_connect(): Unable to connect to PostgreSQL server: could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432? in C:\xampp\htdocs\conpostgres.php on line 5

ya esta todo solucionado, le agregue el port a la conexion y ya me detecta las tablas y todo con esta version de postgres
#3
Buenas tengo un problema con php y postgresql, estoy haciendo un login vulnerable a sql injection para practicar y me topo con estos errores:
Código: php
Warning: pg_exec(): Query failed: ERROR: no existe la relación «productos» LINE 1: SELECT * FROM Productos WHERE Nombre='admin' and Contracena=... ^ in C:\xampp\htdocs\conpostgres.php on line 17

Warning: pg_numrows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\conpostgres.php on line 24

el codigo de el login es el siguiente:

este el login.php
Código: php
<?php 
session_start();

include 'conpostgres.php';
// si se ha rellenado anteriormente el formulario ,comprobar los datos

if(isset($_POST['nombre'])){
//sentencia sql a ejecutar
$sql="SELECT * FROM Productos WHERE Nombre='".$_POST["nombre"]."' and Contracena='".$_POST["pwd"]."'";

$resultado=ejecutar_SQL($conexion,$sql);

//si hay filas,los datos de accseso eran correctos
if(numero_filas($resultado)!=0){
//obtener los datos de l usuario logado
$fila=$fila($resultado,0);
// almacenar su ID en los datos de la sesion
$_SESSION['usuario']=$fila['id'];

// dar la bienvenida
echo "<h3>Login OK</h3>
Bienvenid@,".$fila['desc']."<br>
Pulse <a href=producto.php>aqu&iacute;</a> para continuar.";
}else {
echo "<h3>Login fallido</h3>";
}


}
// si no se ha iniciado sesion,mostrar un formulario de logon

if(!isset($_SESSION['usuario'])){
print '<form method="POST" action="login.php">
<table border="1">
<tr><td colspan="2">Introduzca sus datos de acceso</td></tr>
<tr><td>Nombre:&nbsp;</td><td><input type="text" name="nombre" id="nombre"></td></tr>
<tr><td>Clave:&nbsp;</td><td><input type="password" name="pwd" id="pwd"></td></tr>
</table>
<input type="submit" value="Enviar">
</form>';
}
?>



y este es para la conexion:
Código: php
<?php
// abrir conexion con la base de datos

function conectar($host,$db,$usuario,$contraceña){
return pg_connect("host=$host dbname=$db user=$usuario password=$contraceña");
}


// cerrar conexion
function cerrar_conexion($conexion){
pg_close($conexion);
}

// ejecutar una consulta sql sobre abre unaconexion

function ejecutar_SQL($conexion,$cadena){
return pg_exec($conexion,$cadena);
}


//obtner numeros de filas de u nresultado

function numero_filas($resultado){
return pg_numrows($resultado);
}

// obtiene la fila numero $i de un resultado
// para obtener un campo de usa la sintaxis $fila_obtenida['nmbre de la columna']

function fila($resultado,$i){
return pg_fetch_array($resultado,$i);

}

$conexion=conectar('localhost','postgres','postgres','123456');

?>


que puede ser? porque cree la base de datos bien con las tablas correctas,uso xampp

un saludo y gracias
#4
Dudas y pedidos generales / Re:Problemas con iptables
Septiembre 22, 2016, 05:31:25 AM
pongo el comando que me dijiste:
Citariptables -t nat -L -n
y me sale el siguiente error:
Citariptables v1.4.14: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.
#5
Dudas y pedidos generales / Re:Problemas con iptables
Septiembre 21, 2016, 03:02:43 PM
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
¿Qué quieres hacer con esa regla?

Para listar las reglas debes hacerlo de la siguiente forma:

Código: php
# iptables -t nat -L -n


Y mostrará:

CitarChain PREROUTING (policy ACCEPT)
target prot opt source destination

Chain POSTROUTING (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination

Para mostrar una salida más completa

Código: php
# iptables -t nat -L PREROUTING -n -v


CitarChain PREROUTING (policy ACCEPT 21 packets, 4133 bytes)
pkts bytes target prot opt in out source destination

que nos informa de los paquetes y bytes que "atraviesan" una cadena y en caso de que hubiese reglas, se contarían los paquetes y bytes a los que se ha aplicado cada una.


Borrar contadores

Si queremos poner a cero los contadores de paquete que se aplican en las cadenas de una tabla:

Código: php
iptables -t nat -Z


Borrar todas las reglas de una cadena

Para borrar todas las reglas de una cadena se escribe:

Código: php
iptables -t nat -F OUTPUT


Se puede no especificar ninguna cadena, con lo que se borran todas las reglas de todas las cadenas de una tabla:

Código: php
iptables -t nat -F


Saludos

la idea es agregar estas reglas para un dns spoofing:
Citar
iptables --flush
iptables --zero
iptables --delete-chain
iptables -F -t nat
iptables --append FORWARD --in-interface "+self.interface+" --jump ACCEPT
iptables --table nat --append POSTROUTING --out-interface "+self.interface+" --jump MASQUERADE"
iptables -t nat -A PREROUTING -p tcp --dport 80 --jump DNAT --to-destination "+self.addressToRedirect
iptables -t nat -A PREROUTING -p tcp --dport 443 --jump DNAT --to-destination "+self.addressToRedirect
iptables -A INPUT -p udp -s 0/0 --sport 1024:65535 -d 192.168.1.1 --dport 53 -m state --state NEW,ESTABLISHED -j DROP
iptables -A OUTPUT -p udp -s 192.168.1.1 --sport 53 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j DROP
iptables -A INPUT -p udp -s 0/0 --sport 53 -d 192.168.1.1 --dport 53 -m state --state NEW,ESTABLISHED -j DROP
iptables -A OUTPUT -p udp -s 192.168.1.1 --sport 53 -d 0/0 --dport 53 -m state --state ESTABLISHED -j DROP

iptables -t nat -A PREROUTING -i "+self.interface+" -p udp --dport 53 -j DNAT --to "+self.addressToRedirect
iptables -t nat -A PREROUTING -i "+self.interface+" -p tcp --dport 53 -j DNAT --to "+self.addressToRedirect
#6
Dudas y pedidos generales / Problemas con iptables
Septiembre 20, 2016, 12:57:36 AM
Buenas quiero poner unos comandos con iptables porque estoy armando un programa que hace dns spoof y me tope con un problema cuando pongo el siguiente comando:iptables -F -t nat
en la consola me sale el siguiente error:
Citariptables v1.4.14: can't initialize iptables table `NAT': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.

me dice que la tabla nat no existe,que puede ser?
la version de mi linux y kernel es la siguiente
CitarLinux version 3.13.0-3-686-huayra (root@kernel-i386) (gcc version 4.7.2 (Debian 4.7.2-5) ) #1 SMP Fri Jan 31 12:49:54 ART 2014

desde ya gracias y un saludo
#7
Dudas y pedidos generales / Re:Como usar IPV6?
Septiembre 11, 2016, 06:44:28 PM
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Citarosea que no voy a poder usar evil foca y ninguno de esos programas de chema,neighbor spoofin ni el slaac? porque estaba leyendo ataques a redes ipv4 e ipv6 de 0xword estaba intetnando configurar ipv6 para probar los ataques,pero no resultaba,seguramente mi isp no da direcciones ipv6 todavia
Lo has probado?
si los probe pero no funcionaron
#8
Dudas y pedidos generales / Re:Como usar IPV6?
Septiembre 10, 2016, 06:11:50 PM
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Es cuestion de tu ISP habilitar ipv6 para sus clientes, solamente tu ISP puede asiganrte un bloque de direcciones ipv6 global unicast address y servidores DNS, con la que puedes salir a navegar usando ipv6.  Cuando haces un ipconfig aparecera siempre una direccion Link Local que se configura de forma automatica, pero eso es parecido a una direccion privada IPv4, es decir no tiene validez para navegar fuera (no es enrutable fuera de tu red local).

A lo mucho puedes hacer un tunel IPv6 pero es solo una forma de empaquetar un protocolo dentro de otro (empaquetas IPv4 dentro de un paquete IPv6), @No tienes permitido ver los links. Registrarse o Entrar a mi cuenta compartio algo sobre el tema:

No tienes permitido ver los links. Registrarse o Entrar a mi cuenta

Saludos.

osea que no voy a poder usar evil foca y ninguno de esos programas de chema,neighbor spoofin ni el slaac? porque estaba leyendo ataques a redes ipv4 e ipv6 de 0xword estaba intetnando configurar ipv6 para probar los ataques,pero no resultaba,seguramente mi isp no da direcciones ipv6 todavia
#9
Dudas y pedidos generales / Como usar IPV6?
Septiembre 10, 2016, 02:49:19 PM
Buenas,queria hacerles una consulta,como navego con ipv6?, lo tengo habilitado pero cuando desactivo ipv4 me pone coneccion limitada,me fijo con un ip config y el router no me da ninguna puerta de enlace y los servidores dns tampoco, solamente me aparece el dns de ipv4,puede que slaac este desactivado?mi sistema operativo es un windows 10.

desde ya gracias
#10
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Entonces elimina el "eth0" y deja solamente "wlan0" en el archivo isc-dhcp-server.

ya probe en hacer eso pero me sigue tirando el mismo error=S
#11
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Pero en cuál interfaz es que pretende recibir las peticiones dhcp?


Enviado desde mi iPhone utilizando Tapatalk
por la inferfaz wlan0
#12
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
A ver...

Justo como dice @No tienes permitido ver los links. Registrarse o Entrar a mi cuenta el rango de direcciones no esta muy flexible, es decir de:

192.168.1.230
192.168.1.210

Tienes un pool de solamente 20 direcciones, y a saber que lo correcto es configurarlo en orden de menor a mayor.

Asegúrate también de que la interfaz que recibirá los request, es la misma que tienes configurada en tu isc-dhcp-server

Por ejemplo: (linea 17)

Código: c
# Defaults for isc-dhcp-server (sourced by /etc/init.d/isc-dhcp-server)

# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
#DHCPDv4_CONF=/etc/dhcp/dhcpd.conf
#DHCPDv6_CONF=/etc/dhcp/dhcpd6.conf

# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
#DHCPDv4_PID=/var/run/dhcpd.pid
#DHCPDv6_PID=/var/run/dhcpd6.pid

# Additional options to start dhcpd with.
#       Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""

# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
#       Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACESv4="eth0 wlan0"
INTERFACESv6=""


Pon todas las cosas en orden, comparte el .conf y el archivo isc-dhcp-server.

Saludos.

ya cambie el rango como me dijeron y me sigue tirando el mismo error,estos son los archivos :
este es el isc-dhcp-server
Citar# Defaults for isc-dhcp-server (sourced by /etc/init.d/isc-dhcp-server)

# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
#DHCPDv4_CONF=/etc/dhcp/dhcpd.conf
#DHCPDv6_CONF=/etc/dhcp/dhcpd6.conf

# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
#DHCPDv4_PID=/var/run/dhcpd.pid
#DHCPDv6_PID=/var/run/dhcpd6.pid

# Additional options to start dhcpd with.
#       Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""

# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
#       Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACESv4="eth0 wlan0"
INTERFACESv6=""

la interfaz eth0 es de la tarjeta de red y wlan0 es el adaptador wifi usb
el archivo dhcpd.conf es el siguiente:
Citarddns-update-style ad-hoc;
    default-lease-time 600;
    default-lease-time 7200;
    authoritative;
    subnet 192.168.1.0 netmask 255.255.255.0 {
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.1;
    option domain-name "duridia";
    option domain-name-servers 192.168.1.1;
    range 192.168.1.21 192.168.1.254;

}

este es el error que me tira cuando ejecuto el comando restart
Citarroot@kali:~# /etc/init.d/isc-dhcp-server restart
[....] Restarting isc-dhcp-server (via systemctl): isc-dhcp-server.serviceJob for isc-dhcp-server.service failed because the control process exited with error code.
See "systemctl status isc-dhcp-server.service" and "journalctl -xe" for details.
failed!
#13
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
¿Has modificado el archivo dhcpd.conf? Ejemplo de los parámetros a modificar:

Código: php
subnet 192.168.100.0 netmask 255.255.255.0 {  # mascara de red de la subred
  range 192.168.100.2 192.168.100.250;   # rango de direcciones que entregará el servidor
  option domain-name-servers ns1.internal.example.org;   #
  option domain-name "internal.example.org";   
  option routers 192.168.56.1;   
  option broadcast-address 192.168.100.255;    # esta es la dirección de broadcast
  default-lease-time 600;
  max-lease-time 7200;
}


Finalmente reinicia  el servicio para que los cambios tengan efecto:

Código: bash
/etc/init.d/isc-dhcp-server restart

si modifique el archivo dhcpd.conf quedo asi
Citarddns-update-style ad-hoc;
    default-lease-time 600;
    default-lease-time 7200;
    authoritative;
    subnet 192.168.1.0 netmask 255.255.255.0 {
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.1;
    option domain-name "duridia";
    option domain-name-servers 192.168.1.1;
    range 192.168.1.230 192.168.1.210;

}

y cuando pongo /etc/init.d/isc-dhcp-server restart me aparece lo siguiente
Citarroot@kali:~# /etc/init.d/isc-dhcp-server restart
[....] Restarting isc-dhcp-server (via systemctl): isc-dhcp-server.serviceJob for isc-dhcp-server.service failed because the control process exited with error code.
See "systemctl status isc-dhcp-server.service" and "journalctl -xe" for details.
failed!
#14
Buenas estoy en kali linux intentado crear un AP falso(para practicar) y estuve configurando un servidor DHCP que se llama isc-dhcp-server, pero al momento de iniciarlo me tira el siguiente error:
Citar@No tienes permitido ver los links. Registrarse o Entrar a mi cuenta:~# /etc/init.d/isc-dhcp-server start
[....] Starting isc-dhcp-server (via systemctl): isc-dhcp-server.serviceJob for isc-dhcp-server.service failed because the control process exited with error code.
See "systemctl status isc-dhcp-server.service" and "journalctl -xe" for details.
failed!
cuando ejecuto el comando status me dice lo siguiente:
Citarroot@No tienes permitido ver los links. Registrarse o Entrar a mi cuenta:~# /etc/init.d/isc-dhcp-server status
● isc-dhcp-server.service - LSB: DHCP server
   Loaded: loaded (/etc/init.d/isc-dhcp-server; generated; vendor preset: disabled)
   Active: failed (Result: exit-code) since lun 2016-08-22 05:05:43 ART; 4min 9s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 3091 ExecStart=/etc/init.d/isc-dhcp-server start (code=exited, status=1/FAILURE)

ago 22 05:05:43 kali isc-dhcp-server[3091]: If you think you have receive...r
ago 22 05:05:43 kali isc-dhcp-server[3091]: than a configuration issue pl...g
ago 22 05:05:43 kali isc-dhcp-server[3091]: bugs on either our web page a...e
ago 22 05:05:43 kali isc-dhcp-server[3091]: before submitting a bug.  The...r
ago 22 05:05:43 kali isc-dhcp-server[3091]: process and the information w....
ago 22 05:05:43 kali isc-dhcp-server[3091]: exiting.
ago 22 05:05:43 kali systemd[1]: isc-dhcp-server.service: Control proces...=1
ago 22 05:05:43 kali systemd[1]: Failed to start LSB: DHCP server.
ago 22 05:05:43 kali systemd[1]: isc-dhcp-server.service: Unit entered f...e.
ago 22 05:05:43 kali systemd[1]: isc-dhcp-server.service: Failed with re...'.
Hint: Some lines were ellipsized, use -l to show in full.

que puede ser?, les dejo la configuracion que realize
el archivo dhcpd.conf contiene lo siguiente:

Citar
    ddns-update-style ad-hoc;
    default-lease-time 600;
    default-lease-time 7200;
    authoritative;
    subnet 192.168.1.0 netmask 255.255.255.0 {
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.1;
    option domain-name "duridia";
    option domain-name-servers 192.168.1.1;
    range 192.168.1.230 192.168.1.210;

}
y el archivo isc-dhcp-server
Citar# Defaults for isc-dhcp-server (sourced by /etc/init.d/isc-dhcp-server)

# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
#DHCPDv4_CONF=/etc/dhcp/dhcpd.conf
#DHCPDv6_CONF=/etc/dhcp/dhcpd6.conf

# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
#DHCPDv4_PID=/var/run/dhcpd.pid
#DHCPDv6_PID=/var/run/dhcpd6.pid

# Additional options to start dhcpd with.
#       Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""

# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
#       Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACESv4="eth0 wlan0"
INTERFACESv6=""

ya intente haciendo apt-get upgrade, apt-get update y sigue tirandome el mismo error, que puede estar fallando?

Desde ya gracias
#15
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Hola.

Como dice Stiuvert, las Alfa son muy buena opción.

En mi caso persona uso una Atheros AR9271.

Saludos.

aca en argentina las alfa son carisimas, esa atheros es una wifi usb? no se si estara en argentina ,en este pais de mierda no entra nada
#16
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Te esta pidiendo también la MAC, prueba:

$> sudo aireplay-ng -9 -h MAC wlan0mon
intente agregandole la mac del dispositivo inalambrico
aireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88  -D wlan0mon
me sale casi lo mismo
Citaraireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88  -D wlan0mon
The interface MAC (54:27:1E:9C:E5:81) doesn't match the specified MAC (-h).
   ifconfig wlan0mon hw ether C4:6E:1F:2F:A5:88

20:09:42  Sending Authentication Request (Open System)

20:09:45  Sending Authentication Request (Open System)

20:09:48  Sending Authentication Request (Open System)

20:09:51  Sending Authentication Request (Open System)

20:09:53  Sending Authentication Request (Open System)

20:09:55  Sending Authentication Request (Open System)

20:09:58  Sending Authentication Request (Open System)

20:10:01  Sending Authentication Request (Open System)

20:10:04  Sending Authentication Request (Open System)

20:10:07  Sending Authentication Request (Open System)

20:10:10  Sending Authentication Request (Open System)

20:10:13  Sending Authentication Request (Open System)

20:10:16  Sending Authentication Request (Open System)

20:10:19  Sending Authentication Request (Open System)

20:10:22  Sending Authentication Request (Open System)

20:10:25  Sending Authentication Request (Open System)
Attack was unsuccessful. Possible reasons:

    * Perhaps MAC address filtering is enabled.
    * Check that the BSSID (-a option) is correct.
    * Try to change the number of packets (-o option).
    * The driver/card doesn't support injection.
    * This attack sometimes fails against some APs.
    * The card is not on the same channel as the AP.
    * You're too far from the AP. Get closer, or lower
      the transmit rate.
en wireshark veo que cuando manda los paquetes de fakeauth en la parte de destination dice 00:00:00:00:00:00 y source dice la direccion de mi router wifi

Hola.

Tienes que usar la MAC del AP (BSSID). Como te dije anteriormente, si usas tu MAC estarás scaneando tu propio dispositivo.

Saludos.
por eso en el comando le agregue la mac del AP
aireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88(esta es la mac del AP) -D wlan0mon

Hola.

Según un foro tu tarjeta no es compatible para usarse con Aircrack. O al menos el usuario que presentó el problema solucionó todo cuando usó un adaptador inalámbrico para el modo monitor.

No tienes permitido ver los links. Registrarse o Entrar a mi cuenta

Saludos.
que tarjetas wifi usb me recomendas que sean compatible con aircrack?
#17
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Te esta pidiendo también la MAC, prueba:

$> sudo aireplay-ng -9 -h MAC wlan0mon
intente agregandole la mac del dispositivo inalambrico
aireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88  -D wlan0mon
me sale casi lo mismo
Citaraireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88  -D wlan0mon
The interface MAC (54:27:1E:9C:E5:81) doesn't match the specified MAC (-h).
   ifconfig wlan0mon hw ether C4:6E:1F:2F:A5:88

20:09:42  Sending Authentication Request (Open System)

20:09:45  Sending Authentication Request (Open System)

20:09:48  Sending Authentication Request (Open System)

20:09:51  Sending Authentication Request (Open System)

20:09:53  Sending Authentication Request (Open System)

20:09:55  Sending Authentication Request (Open System)

20:09:58  Sending Authentication Request (Open System)

20:10:01  Sending Authentication Request (Open System)

20:10:04  Sending Authentication Request (Open System)

20:10:07  Sending Authentication Request (Open System)

20:10:10  Sending Authentication Request (Open System)

20:10:13  Sending Authentication Request (Open System)

20:10:16  Sending Authentication Request (Open System)

20:10:19  Sending Authentication Request (Open System)

20:10:22  Sending Authentication Request (Open System)

20:10:25  Sending Authentication Request (Open System)
Attack was unsuccessful. Possible reasons:

    * Perhaps MAC address filtering is enabled.
    * Check that the BSSID (-a option) is correct.
    * Try to change the number of packets (-o option).
    * The driver/card doesn't support injection.
    * This attack sometimes fails against some APs.
    * The card is not on the same channel as the AP.
    * You're too far from the AP. Get closer, or lower
      the transmit rate.
en wireshark veo que cuando manda los paquetes de fakeauth en la parte de destination dice 00:00:00:00:00:00 y source dice la direccion de mi router wifi

Hola.

Tienes que usar la MAC del AP (BSSID). Como te dije anteriormente, si usas tu MAC estarás scaneando tu propio dispositivo.

Saludos.
por eso en el comando le agregue la mac del AP
aireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88(esta es la mac del AP) -D wlan0mon
#18
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Te esta pidiendo también la MAC, prueba:

$> sudo aireplay-ng -9 -h MAC wlan0mon
intente agregandole la mac del dispositivo inalambrico
aireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88  -D wlan0mon
me sale casi lo mismo
Citaraireplay-ng --fakeauth 10 -e Gabriel -h c4:6e:1f:2f:a5:88  -D wlan0mon
The interface MAC (54:27:1E:9C:E5:81) doesn't match the specified MAC (-h).
   ifconfig wlan0mon hw ether C4:6E:1F:2F:A5:88

20:09:42  Sending Authentication Request (Open System)

20:09:45  Sending Authentication Request (Open System)

20:09:48  Sending Authentication Request (Open System)

20:09:51  Sending Authentication Request (Open System)

20:09:53  Sending Authentication Request (Open System)

20:09:55  Sending Authentication Request (Open System)

20:09:58  Sending Authentication Request (Open System)

20:10:01  Sending Authentication Request (Open System)

20:10:04  Sending Authentication Request (Open System)

20:10:07  Sending Authentication Request (Open System)

20:10:10  Sending Authentication Request (Open System)

20:10:13  Sending Authentication Request (Open System)

20:10:16  Sending Authentication Request (Open System)

20:10:19  Sending Authentication Request (Open System)

20:10:22  Sending Authentication Request (Open System)

20:10:25  Sending Authentication Request (Open System)
Attack was unsuccessful. Possible reasons:

    * Perhaps MAC address filtering is enabled.
    * Check that the BSSID (-a option) is correct.
    * Try to change the number of packets (-o option).
    * The driver/card doesn't support injection.
    * This attack sometimes fails against some APs.
    * The card is not on the same channel as the AP.
    * You're too far from the AP. Get closer, or lower
      the transmit rate.
en wireshark veo que cuando manda los paquetes de fakeauth en la parte de destination dice 00:00:00:00:00:00 y source dice la direccion de mi router wifi

#19
No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Mas allá de que figure o no en la web esa, verificalo de esta manera:
Supongo que estas corriendo bajo un Linux, en mi caso un Debian/Ubuntu o derivados:

Pone en modo monitor la placa;
$> sudo airmon-ng start wlan0
(te va a levantar una interface nueva posiblemente con otro nombre en mi caso mon0:

Verifica y reza que injecte:
$> sudo aireplay-ng -9 mon0

Si todo va bien deberia salir algo similar.. "Injection is Working..."

Código: php
20:44:34  Trying broadcast probe requests...
20:44:34  Injection is working!
20:44:35  Found 8 APs

20:44:35  Trying directed probe requests...



Saludos.

probe lo que me dijisste con el siguiente comando:
sudo aireplay-ng -9 wlan0mon
me salio lo siguiente:
Citarsudo aireplay-ng -9 wlan0mon
23:43:50  Trying broadcast probe requests...
23:43:52  No Answer...
23:43:52  Found 1 AP

23:43:52  Trying directed probe requests...
23:43:52  C4:6E:1F:2F:A5:88 - channel: 1 - 'Gabriel'
23:43:52  Ping (min/avg/max): 4.835ms/23.539ms/52.881ms Power: -11.00
23:43:52  30/30: 100%

23:43:52  Injection is working!

intento inyectar paquetes de fakeauth de la siguiente forma:
sudo aireplay-ng --fakeauth 10 -e Gabriel -D wlan0mon
Citarsudo aireplay-ng --fakeauth 10 -e Gabriel -D wlan0mon
No source MAC (-h) specified. Using the device MAC (54:27:1E:9C:E5:81)

23:52:47  Sending Authentication Request (Open System)

23:52:49  Sending Authentication Request (Open System)

23:52:51  Sending Authentication Request (Open System)

23:52:54  Sending Authentication Request (Open System)

23:52:56  Sending Authentication Request (Open System)

23:52:58  Sending Authentication Request (Open System)

23:53:01  Sending Authentication Request (Open System)

23:53:03  Sending Authentication Request (Open System)

23:53:05  Sending Authentication Request (Open System)

23:53:08  Sending Authentication Request (Open System)

23:53:10  Sending Authentication Request (Open System)

23:53:13  Sending Authentication Request (Open System)

23:53:16  Sending Authentication Request (Open System)

23:53:18  Sending Authentication Request (Open System)

23:53:20  Sending Authentication Request (Open System)

23:53:22  Sending Authentication Request (Open System)
Attack was unsuccessful. Possible reasons:

    * Perhaps MAC address filtering is enabled.
    * Check that the BSSID (-a option) is correct.
    * Try to change the number of packets (-o option).
    * The driver/card doesn't support injection.
    * This attack sometimes fails against some APs.
    * The card is not on the same channel as the AP.
    * You're too far from the AP. Get closer, or lower
      the transmit rate.

eso es lo que me sale.
despues pongo la tarjeta en modo monitor y con wireshark empiezo a ver si me detecta la authenticacion de algun dispositivo,pruebo en conectar y desconectar mi celular de la red a ver si sale probe request,probe response,autenticacion requets,etc pero no sale, lo intente varias veces en conectarlo y deconectar el cel pero no aparece el proceso de autenticacion del AP con el cliente
#20
Buenas,estoy aprendiendo seguridad wireless pero la verdad no se si mi tarjeta no es compatible o le falta instalar drivers,puedo ponerla en modo monitor pero cuando envio paquetes de fakeauth no funciona , aveces no detecta los dispositivos conectados en el AP, y aveces captura los handshake y aveces no,los paquetes de desauth se envian perfectamente,mi tarjeta de red es la siguiete:realtek RTL8723AE 802.11n
ustedes que opinan es no es compatible o le falta los drivers?
desde ya gracias un saludo