How can I capture other computers traffic in Wireshark on a WiFi-network?

26

Solution 1

You need a network card that can be set in 'promiscuous mode' which I don't believe the MBA allows.

You may have better luck using ADB to get logs via usb debugging in this specific case but in general you're going to need different network hardware.

Solution 2

You'd need to capture in promiscuous or monitor mode; not all Wi-Fi adapters and their drivers handle promiscuous mode, but many of them handle monitor mode, including the adapters in various flavors of MacBook and the OS X drivers for them.

If the network is encrypted (WEP/WPA), monitor mode traffic will be encrypted, and you will have to arrange that Wireshark can decrypt it.

Share:
26

Related videos on Youtube

Aventuris
Author by

Aventuris

Updated on September 17, 2022

Comments

  • Aventuris
    Aventuris over 1 year

    I have a rails app that has a model called 'Opportunity'. Say this model has several records stored in the database on my local development environment and I now want to deploy the app. With it, I want all the data in my local database to be deployed as well.

    Is this possible? I have looked at rake tasks and seeding but both do not seem to be quite what I want.

    Thanks so much for your help.

    • John C
      John C almost 10 years
      what sort of database dev and prod?