NoPineapplePizza Posted September 16, 2020 Share Posted September 16, 2020 Anyone able to help me through the PKMID Attach with a Pineapple Mark VII? Tried instructions for the Nano here, but was unable to install hcxtools. Thanks! https://forums.hak5.org/topic/44213-pmkid-attack-on-wifi-pineapples/ Quote Link to comment Share on other sites More sharing options...
NoPineapplePizza Posted September 16, 2020 Author Share Posted September 16, 2020 10 minutes ago, NoPineapplePizza said: Anyone able to help me through the PKMID Attach with a Pineapple Mark VII? Tried instructions for the Nano here, but was unable to install hcxtools. Thanks! https://forums.hak5.org/topic/44213-pmkid-attack-on-wifi-pineapples/ Sorry PMKID attack. 10 minutes ago, NoPineapplePizza said: Quote Link to comment Share on other sites More sharing options...
p28312 Posted October 17, 2020 Share Posted October 17, 2020 I would be interested as well.. Quote Link to comment Share on other sites More sharing options...
jholbrookftl Posted October 17, 2020 Share Posted October 17, 2020 i messed around with this last night and it seems the git is missing some files and won't actually install, either that or i'm missing a dependency Quote Link to comment Share on other sites More sharing options...
Rinilyn Posted October 18, 2020 Share Posted October 18, 2020 The link you mentioned is a bit outdated, its no surprise it wont work. I don't own a mark 7, cant make a detailed tutorial. hcxpcaptool -z test.16800 test.pcapng This wont work as it was an older script. A good example is: hcxpcapngtool -o test.22000 test.pcapng use hcxpcapngtool -h for more info.. The hashcat command should also be changed of course, use hashcat -h to learn more. Best of luck Quote Link to comment Share on other sites More sharing options...
whizdumb Posted October 19, 2020 Share Posted October 19, 2020 (edited) I got hcxdumptool installed just fine. The rest of the install throws an error about unknown package "hcxtools" but all you really need is the dumptool on the pineapple. You can process the output on another computer where the full suite is installed anyway. Here's what I did if anyone really needs to know. Make sure that your pineapple has an internet connection. SSH into your pineapple ssh root@172.16.42.1 Download and install Git cuz it's not present on the pineapple. Then download the OpenWRT hcxtools package maintained by @Zylla (githubuser adde88). Finally use the included install script after CDing into the new install directory. opkg install git git-http git clone https://github.com/adde88/hcxtools-hcxdumptool-openwrt.git cd hcxtools-hcxdumptool-openwrt ./INSTALL.sh Try it out with something like: hcxdumptool -o output.pcapng -i wlan1 -t 5 --enable_status=3 I'm trying to write this from memory so please correct me if I hiccuped anywhere. Edited October 24, 2020 by whizdumb Added git-http package to opkg. Quote Link to comment Share on other sites More sharing options...
Hoskins355 Posted October 24, 2020 Share Posted October 24, 2020 I also needed to install opkg install git-http Quote Link to comment Share on other sites More sharing options...
Natur3kid Posted October 24, 2020 Share Posted October 24, 2020 2 hours ago, Hoskins355 said: I also needed to install opkg install git-http Or just git clone git://.... Quote Link to comment Share on other sites More sharing options...
whizdumb Posted October 24, 2020 Share Posted October 24, 2020 7 hours ago, Hoskins355 said: I also needed to install opkg install git-http You are right, I ran into the same error. But installing git-http helped. I added it to the installation notes section of my post. Cheers! Quote Link to comment Share on other sites More sharing options...
dogtoe23 Posted May 13, 2022 Share Posted May 13, 2022 How would you use hcxdumptool filters or BPF to avoid knocking your own device off of the wireless management interface when running hcxdumptool? I am unsure which interface's MAC address to filter to avoid interfering with hcxdumptool's activities while maintaining a wireless management connection. Currently, running hcxdumptool is only working through a wired connection. If I run it while managing the device wireless I am forced to restart the MK7 because the management interface becomes inaccessible. Thanks. Quote Link to comment Share on other sites More sharing options...
dark_pyrro Posted May 13, 2022 Share Posted May 13, 2022 Have you tried using filterlist_ap and filtermode? --filterlist_ap=[MAC address of mgmt AP] --filtermode=1 wlan0-1 should be used for the management AP Quote Link to comment Share on other sites More sharing options...
dogtoe23 Posted May 13, 2022 Share Posted May 13, 2022 9 hours ago, dark_pyrro said: Have you tried using filterlist_ap and filtermode? --filterlist_ap=[MAC address of mgmt AP] --filtermode=1 wlan0-1 should be used for the management AP Thanks for the info, I will try this. Quote Link to comment Share on other sites More sharing options...
dogtoe23 Posted May 13, 2022 Share Posted May 13, 2022 10 hours ago, dark_pyrro said: Have you tried using filterlist_ap and filtermode? --filterlist_ap=[MAC address of mgmt AP] --filtermode=1 wlan0-1 should be used for the management AP I tried this but I still get ejected off the management interface when connected wireless via my cell phone. Do I need to add my cell phone to the filter list also using --filterlist_client=<client MAC> ? I appreciate your help so much, thanks! Quote Link to comment Share on other sites More sharing options...
dogtoe23 Posted May 13, 2022 Share Posted May 13, 2022 26 minutes ago, dogtoe23 said: I tried this but I still get ejected off the management interface when connected wireless via my cell phone. Do I need to add my cell phone to the filter list also using --filterlist_client=<client MAC> ? I appreciate your help so much, thanks! This was my output: Quote Link to comment Share on other sites More sharing options...
dark_pyrro Posted May 13, 2022 Share Posted May 13, 2022 wlan1 is probably occupied by pineap if you haven't added any extra WiFi USB adapter. If you, for example, add a compatible 5 GHz USB WiFi adapter as wlan3, then wlan1 may be free to use for other things, such as hcxdumptool (or the other way around) Quote Link to comment Share on other sites More sharing options...
DramaKing Posted June 16, 2022 Share Posted June 16, 2022 On 10/19/2020 at 5:34 PM, whizdumb said: I got hcxdumptool installed just fine. The rest of the install throws an error about unknown package "hcxtools" but all you really need is the dumptool on the pineapple. You can process the output on another computer where the full suite is installed anyway. Here's what I did if anyone really needs to know. Make sure that your pineapple has an internet connection. SSH into your pineapple ssh root@172.16.42.1 Download and install Git cuz it's not present on the pineapple. Then download the OpenWRT hcxtools package maintained by @Zylla (githubuser adde88). Finally use the included install script after CDing into the new install directory. opkg install git git-http git clone https://github.com/adde88/hcxtools-hcxdumptool-openwrt.git cd hcxtools-hcxdumptool-openwrt ./INSTALL.sh Try it out with something like: hcxdumptool -o output.pcapng -i wlan1 -t 5 --enable_status=3 I'm trying to write this from memory so please correct me if I hiccuped anywhere. Sorry to revive an old thread, but it looks like it was updated not too long ago. Anyway, when attempting to install, I get 'Unknown package *' and 'Cannot install package *.' Quote Link to comment Share on other sites More sharing options...
DramaKing Posted June 17, 2022 Share Posted June 17, 2022 On 6/15/2022 at 11:36 PM, DramaKing said: Sorry to revive an old thread, but it looks like it was updated not too long ago. Anyway, when attempting to install, I get 'Unknown package *' and 'Cannot install package *.' Never mind. I forgot to run 'opkg update.' Quote Link to comment Share on other sites More sharing options...
DramaKing Posted June 18, 2022 Share Posted June 18, 2022 (edited) On 5/13/2022 at 11:12 AM, dogtoe23 said: I tried this but I still get ejected off the management interface when connected wireless via my cell phone. Do I need to add my cell phone to the filter list also using --filterlist_client=<client MAC> ? I appreciate your help so much, thanks! After some testing, I only got one PMKID and then had to pull the plug on the Pineapple. I tried button scripts, but nothing seemed to happen. Maybe I need to give the full path to the executable? If I'm understanding the developer correctly from this ticket, --filtermode doesn't have an effect, and BPFs should be used instead. Only hcxdumptool cannot read BPFs, no doubt because the repo only has v. 6.0.5(?), instead of 6.2.6. Edited June 18, 2022 by DramaKing Add link Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.