Results 1 to 2 of 2

Thread: WiFi Pineapple like with Raspbbery Pi and Kali - Slow speed

  1. #1
    Join Date
    2013-Aug
    Posts
    9

    Question WiFi Pineapple like with Raspbbery Pi and Kali - Slow speed

    Hi all,

    Since hakshop.com does not ship to my country I decided to make my own WiFi pineapple. I wrote following two scripts

    ./first.run
    Code:
    #!/bin/bash
    echo Creating Bridge
      brctl addbr BR1
    echo Setting bridge ip and up the interface
      ifconfig BR1 192.168.1.8/24 up
    echo Adding eth0 to bridge
      brctl addif BR1 eth0
    
    echo Start wireless interface in monitoring mode
      airmon-ng start wlan0
    echo Start accepting probes
      airbase-ng -P -C 30 -v mon0
    Running the second script in another terminal since the first one is busy with airbase-ng

    ./second.run
    Code:
    #!/bin/bash
    echo Adding wireless interface to Bridge
     ifconfig at0 0.0.0.0 up
     brctl addif BR1 at0

    This all works great. However, throughput of this is not greater than 500kbit/s. I believe that a 700 Mhz cpu should easily handle this throughput.

    Do you guys have any idea about why I am getting so low speeds?

  2. #2
    Join Date
    2013-Aug
    Posts
    9
    I think this is what you called "the quieter you become the more you are able to hear" thich meand " I read the thread but I am so lazy to give you a reply"

    nice..

Similar Threads

  1. Why on Kali Linux Wifi internet speed is to slow ?
    By mohammad1989 in forum TroubleShooting Archive
    Replies: 0
    Last Post: 2021-03-21, 16:03
  2. Slow wifi speed when sharing wifi with kali
    By fatmeat in forum TroubleShooting Archive
    Replies: 0
    Last Post: 2020-08-16, 08:37

Posting Permissions

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