Jump to content

Just_a_User

Dedicated Members
  • Posts

    1,822
  • Joined

  • Last visited

  • Days Won

    54

Everything posted by Just_a_User

  1. Just wondering if Pineapple core will be for both NANO and TETRA? or TETRA only?
  2. maybe try powering up from usb ports, its a hunch but maybe you popped the 12v->5v voltage regulator. At least this would rule it out. Also connect to serial UART. screen the usb device then power it up and and watch the output for more clues. screen /dev/ttyUSB0 115200 change device as necessary.
  3. I just did the same as OSX.hex didnt work for me. Flash twin ducky as usual then make a vidpid.bin and place it in ducky root. perl -e 'print pack "H*", "05ac0201"' > /media/username/devicename/vidpid.bin thanks to original poster, I just inserted apple USB keyboard VIDPID.
  4. take a look at some examples here you can also use the module portal auth and clone some sites - worth checking out.
  5. I went for root (/root/evilportal-logs/) directory as I wanted to avoid tmp directory and wanted easy access once ssh'd in from mobile.
  6. your right, they worked for me - but didn’t make the log with email/passwords - or at least I couldn’t find the log without modification to root location.
  7. just a thought - did you try the reset wifi config to defaults option? found on Networking page - advanced dropdown just above hostname.
  8. Hi kbeflo, I tried the templates and like them. pretty realistic! I tweaked mine to work with tetra easy enough by changing the 3x /sd/ references to /root/ in MyPortal.php. While testing I got to thinking that some of these would be great if made as injection sets for portal auth in /pineapple/modules/PortalAuth/includes/scripts/injects allowing them to be inserted into cloned pages. Just an idea tho Thanks for the templates!
  9. Looks interesting. Looking forward to learning more about it.
  10. uh oh... someone mentioned the 'F' word :) trying to cause a riot again. You know it gets us all riled up
  11. My mistake - having a poke about myself I found the following to get me somewhere: - first need monitor mode on a radio airmon-ng start wlan1 then apparently before starting pineap we need pinejector running pinejector wlan1mon then we can run pineap root@Pineapple:/pineapple/modules/PineAP/executable# pineap Usage: pineap <channel> <mac_address> Example: pineap 11 aa:bb:cc:dd:ee:ff not 100% sure if correct but maybe you could explore further, check out /usr/sbin/ you can find pineap, pinejector and pinesniffer for scans. Pinesniffer v2.1 Usage: pinesniffer <interface> <duration> <scan type> <log location> Usage: pinejector <monitor_interface> Example: pinejector mon0
  12. root@Pineapple:/# pineapple module PineAP PineAP command line utility Usage: infusion pineap <option> [arguments] Options: start - starts PineAP stop - stops PineAP dogma [start|stop] - starts / stops Dogma responder [start|stop] - starts / stops Beacon Response harvester [start|stop] - starts / stops Auto Harvester setsource [mac] - set PineAP's source. eg: aa:bb:cc:dd:ee:ff settarget [mac] - set PineAP's target. eg: aa:bb:cc:dd:ee:ff beaconinterval [low, normal, fast] - Change Beacon interval responseinterval [low, normal, fast] - Change Response interval addssid [ssid] - Adds SSID to PineAP. delssid [ssid] - Deletes SSID from PineAP. clear_ssids - Clears all SSIDs deauth [client] [AP] [channel] [multip] - Deauthenticates client from an AP. Client / AP eg: aa:bb:cc:dd:ee:ff Channel: 1-14 Multiplier (optional): Integer
  13. maybe try iodine or other tunnelling options?
  14. I thought this would get more posts :) I'm interested in seeing what others are doing too. Firmware update - as a check because some factory firmwares are not latest version Install modules - Cabinet, CursedScreech, Evil Portal, LED Controller, nmap, Papers, Portal Auth, RandomRoll, Responder, Status, dwall & tcpdump. CLI - Wifite, Horst,, recently testing Mana attack Projects - bash menu system using dialog similar to lan turtle to install my backup files/non standard packages etc. Just a hobbyist non developer - many mistaker - factory reseter :)
  15. It should do yes but each additional connector/adapter will add db's of loss to the system. if you look into the EIRP calculations loss can have an impact on total system performance. example online calculator (there are many) http://www.air-stream.org.au/technical-references/effective-isotropic-radiated-power-eirp
  16. Dont know the reasons behind the selection but I for one like USB A on the nano, I find it very flexible accommodating old and new kit. Maybe that’s the reason - for maximum backwards comparability.
  17. Although not 100% required for everything you will get more out of it by giving it internet access. You can plug it into a PC and share your internet access using the wp6 script. Or you can use one of the nano's radios (usually wlan1) in client mode. but this limits your capabilities when using the nano for certain tasks. Or you can plug in wifi dongle into the nanos usb port as a 3rd radio (also in client mode) which gives you full functionality but means you cant plug anything else into the NANO. Also some 3g/4g modems work well plugged into the nano's USB port giving a very mobile solution that leaves the radios free but again ties up the USB port. Each have advantages under different circumstances, so depends what your doing. Not to mention access to modules and updates. Hope this helps.
  18. Make sure the first line of your script reads: #!/bin/sh /etc/rc.common Copy your script to the /etc/init.d/ directory Make sure the execute bit is on chmod +x /etc/init.d/<your script> Enable your script /etc/init.d/<your script> enable Your script should now have a symlink in /etc/rc.d/ ls -lh /etc/rc.d | grep <your script> Confirm your init script is enabled: /etc/init.d/<your script> enabled && echo on If this command returns on, then you're all set. If this command doesn't return anything, then your script isn't enabled. Here you will find more information about booting http://wiki.openwrt.org/doc/techref/process.boot
  19. To start, thank you for even looking at this I know this is most likely a stupid question to you. I found some code on github written in PHP. It that allows control of a Huawei-HiLink USB modem via web API not using serial. https://github.com/BlackyPanther/Huawei-HiLink If you look you see there is a index.php with a class.php. I very crudely tried to put the index.php into the module maker module.html and positioned the class.php both in the module root and api directory (wasn’t sure). All I was getting was text (from the index.php file) output. I'm so far out of my depth im surprised I got that much out of it without breaking more, but tried it on the off chance it would work. Is it a case of having to understand the full php contents enough to rewrite it into proper module.html? if so I'm tapping out and it has to become a feature request for the official modem manager module. either way cheers for your time. Update - php5-cli Read online that a development server can be run direct from php. I tried on the pineapple but so far I haven’t been able to get it to completely work. To install opkg install php5-cli and to run use the below changing port if required. php -S 127.0.0.1:8080 I can get it to run but to get those PHP files to run on the pineapple it was missing a couple of php5-mod files. One being simplexml and when I installed it I lost part of the pineapple dashboard, even after reboot and a shutdown. I think I'm at a dead end with this so I add it here in name of sharing information. Maybe someone else could find is useful
  20. as root on your pineapple? just tested on mine and changes are saved. something not right if root is denied.
  21. Im not 100% sure but apparently it can cause damage over time, something to do with reflected waves that can add to the transmitted waves and then overload the output stage over time. some circuits monitor and protect but not all. It's just a thought but may be your problem.
  22. As far as i know it's not a good idea to power up a radio without a load (antenna) attached as it can damage it. You may have damaged your NANO by doing that.
  23. I’m also interested in being able to do something very similar to this. I found an app using a php file but would like to make it into a html file with the hope of being able to build a basic pineapple module. Any guidance very welcome. edit - is it as simple as embedding the php into a html doc? like here edit the edit - no, embedding didn’t seem to work at all :) I used @Foxtrot module maker and tried embedding the php into the html and I failed miserably lol
×
×
  • Create New...