Jump to content

Sailor

Active Members
  • Posts

    64
  • Joined

  • Last visited

  • Days Won

    3

Recent Profile Visitors

1,270 profile views

Sailor's Achievements

Newbie

Newbie (1/14)

  1. You can use the following script and set it as a boot script for your dip configuration. Make sure you change the log directories or create them (/sd/log/ and /sd/log/archive/) #!/bin/bash logger '***** Start boot script *****' DATE=$(date +"%Y%m%d%H%M") # Clean up older files from log directory and archive them mv -n /sd/log/*.pcap* /sd/log/archive/ >/dev/null sleep 5 # Start tcp dump logger '***** Start tcp dump *****' tcpdump -n -C 10 -W 100 -i br-lan -w /sd/log/packetlog-$DATE.pcap >/dev/null 2>&1 & logger '***** Finished boot script *****'
  2. Without the HDK but directly on the pins I did some experiments : Connecting an LED matrix and motorized a directional antenna. See: And: And: https://forums.hak5.org/index.php?/topic/31961-arduino-pineapple-led-matrix/
  3. I experience the same but it is not related to this infusion but more likely to the load you put on the pineapple. Did you check your logs? In my case the usb-device has hick-ups when transferring big files on a fast network when under load. You can try to limit the download speed in WinSCP, this helps for me (and off course apply the suggestion made by WinSCP: turn of the optimization of the buffer size).
  4. You could do it in a similar set up in which I did a small proof of concept: https://forums.hak5.org/index.php?/topic/31961-arduino-pineapple-led-matrix/ In this case it would be easier to use a Raspberry Pi with a camera module: - Connect the serial interfaces on the Pineapple and the Raspberry - Write a shell script on the Pineapple that writes something to /dev/tty/ATH0 when someone connects or is in range (for instance grep on a probe or connect in the karma log) - Have a small (python) program watch the serial port for that command you'll send in the step above - Take a picture
  5. It is most probably a binary, that is why you cannot find this. I managed to add a timestamp with the following command (read the log file, in this example I filter only the connects, and redirect to a new file). You can also redirect to a remote server, the sink as you call it. tail -f /tmp/karma-phy0.log | grep 'pass\|AP-STA-DISCONNECTED\|Successful' | awk '{ print strftime("%Y-%m-%d %H:%M:%S"), $0; }' >> /sd/karma.log
  6. I switched (back) to using a USB drive for processes that require I/O on the disk. Especially tools like tcpdump, sslstrip/sslsplit or downloading bigger logfiles via ssh/scp cause problems on my sd but run fine when configured to use USB. Look in your syslog and dmesg for message like: usb 1-1.4: reset high-speed USB device number 5 using ehci-platform This device is the "Multi Flash reader" for the sd card
  7. Good tip. You can find the file with these values under /etc/pineapple/ssid_file You can easily copy/clear this file via ssh, maybe even use a dip config to load different ssid_files per deployment environment
  8. Agree. PenturaLabs did some analysis: http://penturalabs.wordpress.com/2013/10/27/naked-wifi-pineapple-mark-v/ I haven't had time to do some research myself but I guess it is fairly straight-forward to use the GPIO pins since the packages are already there.
  9. I haven't tried the batteries from the bundle but have good experiences with an Anker (10000+ mAh). It will run 12-14 hours on it. http://www.amazon.com/b/ref=sr_1_1_acs_h_1i_2528932011&node=2528932011?ie=UTF8&qid=1399356684&sr=8-1-acs
  10. You could try this: tail -f /sd/karma-phy0.log | grep 'pass\|AP-STA-DISCONNECTED\|Successful' Or leave out the grep part to see everything that is logged. Make sure to check the location of the karma log file (/sd in my case).
  11. Try the datalocker infusion for this...
  12. Can you check if it gets written to /overlay/sd/logs? That is where it ends up in my configuration.
  13. Did you install to internal memory? You can access the map on port 9090 with your browser as well, you could try that... http://<pineapple-ip>:9090
  14. Great! My RTL-SDR showed up immediately and after installing the ADS-B tracker infusion you can see the planes around you on http://<pineapple-ip>:9090
×
×
  • Create New...