Results 1 to 3 of 3

Thread: ferret makes huge .pcap files

  1. #1
    Join Date
    2013-May
    Posts
    21

    ferret makes huge .pcap files

    Hi all, after migrating to new hardware and to Kali instead of BT5, i managed that ferret sidejack tool began to reproduced a real huge pcap files (Gigabytes after some opened pages).
    as i can see in hex, ferret dumps crazy amount of zeros.
    the same problem appeared with two different wifi adapters

    Code:
    08:00.0 Network controller: Intel Corporation Centrino Wireless-N 2230 (rev c4)
    Kernel driver in use: iwlwifi
    
    07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
    Kernel driver in use: r8169
    any ideas?
    ps. sorry for my poor english

  2. #2
    Join Date
    2013-Mar
    Location
    Totally lost
    Posts
    45
    I put a ticket in last month - no response yet.
    http://bugs.kali.org/view.php?id=289

  3. #3
    Join Date
    2013-May
    Posts
    21
    ok, so i made a little ugly fix to be able to use hamster.
    idea is to use tcpdump for sniffing and ferret in the file mode for generating hamster.txt log file.
    just put ferret_fix.sh to the hamster dir and execute it manually when launching hamster: ./ferret_fix.sh wlan0
    (and do not set interface in the hamster setting, because it will launch ferret in interface mode)
    Code:
    #!/bin/bash
    
    tcpdump -i $1 -w tcpdump.pcap &
    while true
      do
        sleep 4
        ferret -r tcpdump.pcap --hamster
      done

Similar Threads

  1. Replies: 492
    Last Post: 2016-10-27, 05:30
  2. ferret and easy-creds
    By migr in forum General Archive
    Replies: 2
    Last Post: 2014-04-09, 02:59
  3. WPA PSK Key in pcap/cap files?
    By Kalinoob in forum General Archive
    Replies: 1
    Last Post: 2014-01-06, 15:39

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •