Jump to content

Prox

Active Members
  • Posts

    14
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Prox's Achievements

Newbie

Newbie (1/14)

  1. Hopefully the new firmware version will remove the need for this, but I am curious to see how the Micro Python board evolves. https://www.kickstarter.com/projects/214379695/micro-python-python-for-microcontrollers I have done some reading on this, and also on the Adafruit CC3000 wifi board. My main question is "Will it run SCAPY?" Passing the recon task to a processor "shield" could add a new dimention to the pineapple. The Python board can be used with the CC3000, but no definite answer on monitor mode capabilities. I only see hints that the configuration program may be using monitor mode for a few seconds. Even without it's own wifi, perhaps the data from one of the pineapples antennas could be piped to the Python board? Lots of possibilities here, but of course, I will start with the Pineapple firmware update.
  2. Reconnaissance is a very powerful tool, especially with mac addresses from cell phones. It could be used to augment video surveilance when the pictures captured are less than perfect (at night). Matching time stamps of mac addresses with video could conceivably help identify who broke into your car at 3am. It is also conveivable that if you monitored mac addresses over a couple of weeks it would be possible to dissern between local residents, and "visitors" of your area, and even create alerts for specific scenarios. Having an OUI identification feature would help a great deal in filtering out static devices like media servers, game systems, printers etc. It could even be used as a wireless intrusion detection system. Have it track all devices connected to your wifi and alert you when a new device connects, or if new AP's start appearing with lots of people connecting to them ;)
  3. Are there any plans for an autostart.sh for Random rolls? I must have this as one of the boot switches. :)
  4. The AP's are immediately removed using the _nomap option when a devices discovers it. Is this a permanent change, or do they immediately re-add the AP once it is discovered again without the _nomap extension? I believe the latter is most likely the case because they need the integrity. I think companies that make routers should have an option that defaults "on" which adds the _nomap extension to whatever you enter as the SSID, leaving a check box for you to turn the option off if you so desire. How do they handle people who have moved their residence? They take the AP with them and the change is registered as soon as a device discovers them in their new location. I have read that sometimes, a MAC address will get reused in the manufacturing process. How does this location service handle instances of identical MAC and SSID in multiple locations? They would have to fall back on the gps, ip, or cell tower information for location verification. It seems this system is very redundant and quite resilient.
  5. The cicadas are coming this spring to the east coast. Billions of them. There is a lot of documented information on their mating call frequencies. I can not help but wonder if anyone is working on a video, or app with these tones playing in the background to prank people.
  6. This turned out to be a GPS accuracy issue. The water tower may still have been the cause.
  7. This is a great module! I love it....but it leaves a fingerprint if you use the pineapple by itself. I have noticed that even if you do not refresh the ap list, the jamming process sends a Probe Request every time. An access point sending a probe request is obvious enough to get the "finger of yagi" pointed at you. If you are using the pineapple in AP mode, shut down the AP and change the mac first! Your best bet is to piggy back the AWUS036NHA.
  8. Was not using a traditional wifi scanner, this one listens but does not transmit. I noticed it only because the Mac address matched my router. Will try to connect from those locations when I get a chance to see whats going on.
  9. While working on another project, a database I was developing, essentially mapped out my home routers transmission footprint. What was odd was that there were two specific points, both about a mile away from my home where I received a signal from my router. There is no line of sight from either location, but a large water tower is visible from all three locations. I think it is simply reflecting the signal. Has anyone else experienced this? Does anyone know a coffee shop in L.O.S. of a water tower? ;)
  10. You are absolutely correct, when he posted the code the indents were stripped. It will have to be re-indented before it will run. The purpose of the code is to search for a particular device, or type of device. The problem was that the python program continually allocated memory until the pineapple shut down. only exiting the program and restarting it freed the memory. The purpose of the post was to find a way to manage the memory more effectively. Sounds like you could write something much more efficient. -Prox ----------------------------------- My definition of "Ghost Tweet" - Posting a message on an unrelated twitter feed just long enough for it to be sent via txt message to phones, then deleting it from the feed 2 seconds later.
  11. Can't wait to try that out! Currently I have mine update on boot with: wget -qO- $(echo -e "username:password@dynupdate.no-ip.com/nic/update?hostname=$host") > /usb/dynresponse Crontabs runs the following "Notify" code every few minutes to send a text message with the IP address if an update has occured. #!/bin/bash if [ -f /usb/online ] then if [ -f /usb/dynresponse ] then tweetline="DYNresponse - "$(cat /usb/dynresponse) /usb/usr/bin/python /usb/tweet.py "$tweetline" rm /usb/dynresponse sync && echo 3 > /proc/sys/vm/drop_caches fi fi
  12. If you set up tweepy in python you will get a "Timestamp out of bounds" error when your pineapple attempts to post. The following fixed this issue on my MKIV. in /etc/config/system add the lines: config 'timeserver' list 'server' '0.openwrt.pool.ntp.org' list 'server' '1.openwrt.pool.ntp.org' list 'server' '2.openwrt.pool.ntp.org' list 'server' '3.openwrt.pool.ntp.org' You may also need/want to change line 2 to your local timezone. option 'timezone' 'UTC' Add the command 'date -k' to /etc/rc.local Simple python tweet test: -------------------------------------------------------- import os import tweepy import string import time tweetline = " " consumer_key ='ENTER YOUR CONSUMER KEY HERE' consumer_secret='ENTER YOUR CONSUMER SECRET HERE' access_token='ENTER YOUR ACCESS TOKEN HERE' access_token_secret='ENTER YOUR ACCESS TOKEN SECRET HERE' auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth) tweetline = "Pineapple tweet test" api.update_status(tweetline) ------------------------------------------------------- Did your laptop get stolen? Think you might know where it is? Instant remote 802.11 surveillance anyone?
  13. I have a usb drive on my MKIV that has a directory containing all the original files such as spoofhost, wpsscript crontabs/root, rc.local etc. along with a bash script that will copy them to their proper location. This is an easy reset for any mods. I also have other directories with the individual mods like random rick roll, chat roll, and so on, along with the respective bash script to copy the modded files into place, then reboot. It would not be difficult to add a script in crontabs that would check the contents of a specific file periodically, or even check websites for specific information (auto-adaptive?) and activate these bash scripts accordingly. A simple SCP command from a remote device could activate any of these features with very little effort. The addition of python could allow for txt message feed back from the device to your phone if needed. Might even be able to set this up with voice commands on the android for a few more cool points. This device has incredible potential, and it is only in its infancy.
  14. I am wondering if it would be possible to use an sl-1501n with RT8188CUS chipset connected to the USB port of the MKIV to provide internet? It would be a great way to eliminate the need for ICS, and mitigate the cost of 3G.
×
×
  • Create New...