sábado, 29 de agosto de 2020

WiFi Hacking On Tablets

Disclaimer: Don't hack anything where you don't have the authorization to do so. Stay legal.

Ever since I bought my first Android device, I wanted to use the device for WEP cracking. Not because I need it, but I want it :) After some googling, I read that you can't use your WiFi chipset for packet injection, and I forgot the whole topic.

After a while, I read about hacking on tablets (this was around a year ago), and my first opinion was: 
"This is stupid, lame, and the usage of that can be very limited".

After playing one day with it, my opinion just changed: 
"This is stupid, lame, the usage is limited, but when it works, it is really funny :-)"

At the beginning I looked at the Pwn Pad as a device that can replace a pentest workstation, working at the attacker side. Boy was I wrong. Pwn Pad should be used as a pentest device deployed at the victim's side!

You have the following options:
  1. You have 1095 USD + VAT + shipping to buy this Pwn Pad
  2. You have around 200 USD to buy an old Nexus 7 tablet, a USB OTG cable, a USB WiFi dongle (e.g. TP-Link Wireless TL-WN722N USB adapter works).



In my example, I bought a used, old 2012 Nexus WiFi. Originally I bought this to play with different custom Android ROMs, and play with rooted applications. After a while, I found this Pwn Pad hype again and gave it a shot.

The Pwn Pad community edition has an easy-to-use installer, with a proper installation description. Don't forget to backup everything from your tablet before installing Pwn Pad on it!

I don't want to repeat the install guide, it is as easy as ABC. I booted a Ubuntu Live CD, installed adb and fastboot, and it was ready-to-roll. I have not measured the time, but the whole process was around 20 minutes.


The internal WiFi chipset can be used to sniff traffic or even ARP poisoning for active MiTM. But in my case, I was not able to use the internal chipset for packet injection, which means you can't use it for WEP cracking, WPA disauth, etc. This is where the external USB WiFi comes handy. And this is why we need the Pwn Pad Android ROM, and can't use an average ROM.

There are two things where Pwn Pad really rocks. The first one is the integrated drivers for the external WiFi with monitor mode and packet injection capabilities. The second cool thing is the chroot wrapper around the Linux hacking tools. Every hacking tool has a start icon, so it feels like it is a native Android application, although it is running in a chroot Kali environment.

Wifite

The first recommended app is Wifite. Think of it as a wrapper around the aircrack - airmon - airodump suite. My biggest problem with WEP cracking was that I had to remember a bunch of commands, or have the WEP cracking manual with me every time I have to crack it. It was overcomplicated. But thanks to Wifite, that is past.

In order to crack a WEP key, you have to:
  1. Start the Wifite app
  2. Choose your adapter (the USB WiFi)

  3. Choose the target network (wep_lan in the next example)
  4. Wait for a minute 
  5. PROFIT!

SSH reverse shell

This is one of the key functionalities of the Pwn Pad. You deploy the tablet at the Victim side, and let the tablet connect to your server via (tunneled) SSH.

The basic concept of the reverse shells are that an SSH tunnel is established between the Pwn Pad tablet (client) and your external SSH server (either directly or encapsulated in other tunneling protocol), and remote port forward is set up, which means on your SSH server you connect to a localport which is forwarded to the Pwn Pad and handled by the Pwn Pad SSH server.

I believe the best option would be to use the reverse shell over 3G, and let the tablet connect to the victim network through Ethernet or WiFi. But your preference might vary. The steps for reverse shells are again well documented in the documentation, except that by default you also have to start the SSH server on the Pwn Pad. It is not hard, there is an app for that ;-) On your external SSH server you might need to install stunnel and ptunnel if you are not using Kali. The following output shows what you can see on your external SSH server after successful reverse shell.

root@myserver:/home/ubuntu# ssh -p 3333 pwnie@localhost
The authenticity of host '[localhost]:3333 ([127.0.0.1]:3333)' can't be established.
ECDSA key fingerprint is 14:d4:67:04:90:30:18:a4:7a:f6:82:04:e0:3c:c6:dc.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[localhost]:3333' (ECDSA) to the list of known hosts.
pwnie@localhost's password:
  _____      ___  _ ___ ___   _____  _____ ___ ___ ___ ___
 | _ \ \    / / \| |_ _| __| | __\ \/ / _ \ _ \ __/ __/ __|
 |  _/\ \/\/ /| .` || || _|  | _| >  <|  _/   / _|\__ \__ \
 |_|   \_/\_/ |_|\_|___|___| |___/_/\_\_| |_|_\___|___/___/

 Release Version: 1.5.5
 Release Date: 2014-01-30
 Copyright 2014 Pwnie Express. All rights reserved.

 By using this product you agree to the terms of the Rapid Focus
 Security EULA: http://pwnieexpress.com/pdfs/RFSEULA.pdf

 This product contains both open source and proprietary software.
 Proprietary software is distributed under the terms of the EULA.
 Open source software is distributed under the GNU GPL:
 http://www.gnu.org/licenses/gpl.html

pwnie@localhost:~$

Now you have a shell on a machine that is connected to the victim network. Sweet :) Now Metasploit really makes sense on the tablet, and all other command-line tools.

EvilAP and DSniff

Start EvilAP (it is again a wrapper around airobase), choose interface (for me the Internal Nexus Wifi worked), enter an SSID (e.g freewifi), enter channel, choose whether force all clients to connect to you or just those who really want to connect to you, and start.


The next step is to start DSniff, choose interface at0, and wait :) In this example, I used a popular Hungarian webmail, which has a checkbox option for "secure" login (with default off). There are sooo many problems with this approach, e.g. you can't check the certificate before connecting, and the login page is delivered over HTTP, so one can disable the secure login checkbox seamlessly in the background, etc. In this case, I left the "secure" option on default off.



In the next tutorial, I'm going to show my next favorite app, DSploit ;)

Lessons learned

Hacking has been never so easy before
In a home environment, only use WPA2 PSK
Choose a long, nondictionary passphrase as the password for WPA2
Don't share your WiFi passwords with people you don't trust, or change it when they don't need it anymore
Don't let your client device auto-connect to WiFi stations, even if the SSID looks familiar

I believe during an engagement a Pwn Plug has better "physical cloaking" possibilities, but playing with the Pwn Pad Community Edition really gave me fun moments.

And last but not least I would like to thank to the Pwn Pad developers for releasing the Community Edition!

Read more
  1. Pentest Tools For Ubuntu
  2. Hack Tools For Mac
  3. Free Pentest Tools For Windows
  4. Hacker
  5. Hackers Toolbox
  6. Hacking Tools And Software
  7. Pentest Tools Online
  8. Hacker Tools Windows
  9. Pentest Tools Subdomain
  10. Hacking Tools Github
  11. Hacker Tools Software
  12. Pentest Tools
  13. Hacking Tools And Software
  14. Hacker Tools Apk
  15. Hack Tools Mac
  16. Hacker Tools Github
  17. Pentest Tools Windows
  18. Pentest Tools Nmap
  19. Hack Tools For Games
  20. Hacker Tools For Ios
  21. Hacker Tools Windows
  22. Hack Tools For Games
  23. Hack Tools For Windows
  24. Hak5 Tools
  25. Pentest Tools Android
  26. Easy Hack Tools
  27. Pentest Tools Website Vulnerability
  28. Hacker Tools Github
  29. Wifi Hacker Tools For Windows
  30. Hack Tools For Windows
  31. Hacker Tools 2020
  32. Hacks And Tools
  33. Nsa Hack Tools Download
  34. Pentest Tools Url Fuzzer
  35. Underground Hacker Sites
  36. Pentest Tools Github
  37. Hack Apps
  38. Pentest Tools Url Fuzzer
  39. Hacking Tools Windows
  40. Hack And Tools
  41. Hack Website Online Tool
  42. Hacker Tool Kit
  43. Pentest Tools Website Vulnerability
  44. Hacker Tools Linux
  45. Hack Tools Download
  46. Computer Hacker
  47. Nsa Hack Tools
  48. Hacker Tool Kit
  49. Pentest Tools For Windows
  50. Hack Tools For Pc
  51. Hack Tools Pc
  52. Hacking Tools For Windows Free Download
  53. Pentest Reporting Tools
  54. Beginner Hacker Tools
  55. Hacking Tools Mac
  56. Hacker Hardware Tools
  57. Pentest Tools Download
  58. Github Hacking Tools
  59. Hackers Toolbox
  60. Pentest Tools Url Fuzzer
  61. Pentest Tools Find Subdomains
  62. Hacker Tools Mac
  63. Hacker Tools Github
  64. How To Install Pentest Tools In Ubuntu
  65. Pentest Tools Android
  66. Hack Tools For Windows
  67. Pentest Tools For Windows
  68. Hack Tools Online
  69. Hacking Apps
  70. Pentest Tools Url Fuzzer
  71. Pentest Reporting Tools
  72. How To Hack
  73. Hacker Tools Software
  74. Hacker Tools Windows
  75. Install Pentest Tools Ubuntu
  76. Hack Tool Apk No Root
  77. Hack Tools Online
  78. Hacking Tools 2019
  79. Hacker Hardware Tools
  80. Top Pentest Tools
  81. Hacker Tools List
  82. Easy Hack Tools
  83. Pentest Tools Alternative
  84. Hacking Tools
  85. Pentest Tools Free
  86. Hack Tools Github
  87. Hacking Tools Hardware
  88. What Is Hacking Tools
  89. Hack Tools For Games
  90. Hacking Tools For Windows 7
  91. Hack Tools For Games
  92. How To Install Pentest Tools In Ubuntu
  93. What Is Hacking Tools
  94. Hacking Tools For Pc
  95. Termux Hacking Tools 2019
  96. Hack Tools For Games
  97. Pentest Tools For Windows
  98. Hacker Tools Github
  99. Hacking Tools For Windows 7
  100. Pentest Tools Kali Linux
  101. Hacking Tools For Beginners
  102. Blackhat Hacker Tools
  103. Black Hat Hacker Tools
  104. Hacking Tools For Mac
  105. Pentest Tools Free
  106. Hacking Tools For Windows 7
  107. Hacker Tools Apk Download
  108. Pentest Tools Bluekeep
  109. Hacker Tools Apk Download
  110. Android Hack Tools Github
  111. Hacker Tools 2019
  112. Pentest Tools Nmap
  113. Pentest Tools For Mac
  114. Bluetooth Hacking Tools Kali
  115. Hacking Tools 2019
  116. Best Hacking Tools 2019
  117. Hacking Tools Github
  118. Pentest Recon Tools
  119. Pentest Tools Free
  120. Pentest Automation Tools
  121. Hack Tools
  122. Hack Tools For Mac
  123. Pentest Tools Tcp Port Scanner
  124. Hacker Tools
  125. Hacker Tools For Mac
  126. Hacker Tools For Windows
  127. Hacker Tools Software
  128. Pentest Tools Free
  129. Github Hacking Tools
  130. Pentest Tools Kali Linux
  131. Beginner Hacker Tools
  132. Pentest Recon Tools
  133. Pentest Tools Github
  134. Hacker Hardware Tools
  135. Hacking Tools Free Download
  136. Hack Tools For Windows
  137. Pentest Tools Windows
  138. Tools 4 Hack
  139. Hacking Tools For Windows Free Download
  140. Hack Tools Pc
  141. How To Make Hacking Tools
  142. Termux Hacking Tools 2019
  143. Hacking Tools Software
  144. Hacking Tools For Pc
  145. Pentest Tools Free
  146. Hak5 Tools
  147. Hacker Tools 2020
  148. Wifi Hacker Tools For Windows
  149. Hackers Toolbox
  150. Hacker Tools Mac
  151. Hacker Tools 2020
  152. Hacking Tools Download
  153. Hacker Tools For Mac
  154. Hacker Tool Kit
  155. Pentest Reporting Tools
  156. Underground Hacker Sites
  157. Wifi Hacker Tools For Windows
  158. Kik Hack Tools
  159. Pentest Tools Tcp Port Scanner
  160. Pentest Tools Download
  161. Nsa Hack Tools
  162. Android Hack Tools Github
  163. Hack Tools For Windows
  164. Hacker
  165. Hack Tools For Games
  166. What Are Hacking Tools
  167. Bluetooth Hacking Tools Kali

Nenhum comentário: