Jump to content

newbi3

Pineapple Moderators
  • Posts

    1,022
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by newbi3

  1. Well PineAP still has a lot of untapped potential such as targeted attacks, we have the Pine Plug that just came out that needs the software to catch up with it, we have endless possibilities for infusion developers to create new stuff and improve old stuff (If you saw my dev pineapple you'd see how many things are sitting there waiting to be finished and released and that probably goes for most of the infusion devs as well). What else would we need in the pineapple right now anyways? The only thing I can think of is a laser and a head attachment piece for easy mounting on sharks
  2. So is it a captive portal after you connect? Also once you connect your pineapple pull out your phone or laptop or whatver you have connect to the pineapple and sing in through there on your device
  3. What? There is only a password field where and how are you getting to that password field?
  4. definitely possible. Me and a buddy were talking about doing pretty much this exact same thing a while ago but with a smart phone not a pineapple. I'll get started working on it. I cant do the aws integration right now but definitely can do the remote host to crack
  5. Or just something that sends the WPA handshake back to a master machine in general to crack it. I'd love to develop this but don't have the money at the moment to pay for aws
  6. Since the pineapples firmware is based off of OpenWRT their documentation on everything works great. http://wiki.openwrt.org/doc/uci/network That should point you in the right direction Also I do believe that there are plans for this to be baked into the firmware coming up in some future release. Seb will confirm that or correct me if I am wrong I am sure
  7. I'm sure just about everyone on this forum could list malicious things that could have been done but we don't do bad things here
  8. Are you talking about when a user connects or all the time? If its all the time you are looking at the wrong tool, you should look at DNS Spoof (with DNS Spoof you could make google point to your evilportal)
  9. He was asking is the serial adapter would work not if the reaver pro firmware would work (thats how he got his pineapple messed up in the first place)
  10. I can't say anything official but i doubt it will happen. At least not PineAP considering the hardware limitations. Thats not to say that there wont ever be a firmware update for the MK4 but I can say with a good amount of certainty that pineAP will not make its way to the MK4 especially not in the same way it is on the mk5. If someone wanted to they could write a lot of the pineAP features and compile them to run on the mk4 but it would require people to get external hardware because pineAP required 2 radios
  11. Get a powered USB hub and Im sure that wont happen anymore
  12. You can do mac filtering on openWRT although there isn't an option in the web-interface. http://wiki.openwrt.org/doc/uci/wireless search that page for mac filtering they have instructions on how to configure it
  13. You can't white list a mac address only an SSID
  14. Its not a bug you are just using more power than what you have and it can't stay on anymore
  15. Strange although I am not surprised. SMSer is just a texting cow turd. I am working on a re-write for it that actually uses SMS no MMS and parsing and all that anymore. SMSer 3.0 will be from the gods (probably my bedroom)
  16. Please put your code in the [ " code " ] [ "/code" ] tags (remove the ""). It is to hard to read otherwise Put this in your function after you send the info: window.location = "$authtarget";
  17. Can you connect a serial cable to it and see what it is doing?
  18. If you are using company resources do not expect privacy. They should be able to monitor what you do on their equipment but they should tell you that it is monitored and to expect no privacy
  19. Please wrap your code the code tabs [ "code" ] [ "/code" ] (just remove the "") To read the input we create a new Scanner object: Scanner in = new Scanner(System.in); Then we prompt the user to enter the month. We don't want to make a new line so instead of doing println() just do print(); System.out.print("What month is it? (number form): "); Next we get the input as an integer: month = in.nextInt(); Finally we do your switch statement: switch (month) { case 1: monthString = "January"; break; case 2: monthString = "February"; break; case 3: monthString = "March"; break; case 4: monthString = "April"; break; case 5: monthString = "May"; break; case 6: monthString = "June"; break; case 7: monthString = "July"; break; case 8: monthString = "August"; break; case 9: monthString = "September"; break; case 10: monthString = "October"; break; case 11: monthString = "November"; break; case 12: monthString = "December"; break; default: monthString = "Invalid month"; break; } Here it is all together: package javaapplication1; import java.util.Scanner; public class JavaApplication1 { public static void main(String[] args) { // var String monthString = null; int month = -1; Scanner in = new Scanner(System.in); // var // Prompt the user to input the month System.out.print("What month is it? (number form): "); // Get the input from in month = in.nextInt(); // Here is your switch statement switch (month) { case 1: monthString = "January"; break; case 2: monthString = "February"; break; case 3: monthString = "March"; break; case 4: monthString = "April"; break; case 5: monthString = "May"; break; case 6: monthString = "June"; break; case 7: monthString = "July"; break; case 8: monthString = "August"; break; case 9: monthString = "September"; break; case 10: monthString = "October"; break; case 11: monthString = "November"; break; case 12: monthString = "December"; break; default: monthString = "Invalid month"; break; } // Print the month System.out.println("The month is: " + monthString); } } One thing to note is that you are expecting the user to enter an integer value so if they into a string the program will crash. I am not sure if you have learned about try and catch statements yet but if you have i suggest adding one around where you get the input
  20. You're send the info to port 8080 and there is no web server running on port 8080 in the latest version of EP
  21. sounds like you plugged in the wrong adapter and fried it
  22. I think that might win the most horrifying IT story award
  23. He had to connect to it and finish the configuration process I bet
×
×
  • Create New...