The humble Raspberry Pi has evolved far beyond its origins in learning programming and DIY projects. With its compact form factor, low power consumption, and impressive capabilities, Raspberry Pi makes a great platform for portable hacking. In this article, I’d like to begin a series about using the Raspberry Pi as a hacking platform. Today, […]
The post Hacking with the Raspberry Pi: Cracking Wi‑Fi first appeared on Hackers Arise.
The humble Raspberry Pi has evolved far beyond its origins in learning programming and DIY projects. With its compact form factor, low power consumption, and impressive capabilities, Raspberry Pi makes a great platform for portable hacking.
In this article, I’d like to begin a series about using the Raspberry Pi as a hacking platform. Today, we’re going to set up Kali Linux ARM edition on the Pi and prepare the environment for Wi-Fi hacking.
Step #1: Download the Software
Our first step is visiting kali.org to download Kali Linux ARM edition.

While the download is in progress, you can visit https://www.raspberrypi.com/software/ and download Raspberry Pi Imager—a tool for installing operating systems onto SD cards, ready for use with your Raspberry Pi.
After downloading, start the Imager. You’ll see a screen like the one below.

Here you should choose the version of your Raspberry Pi, choose the OS (scroll down and use a custom .img), and storage. After that, you’ll be greeted by a window that asks for changing some options. Don’t forget to set up SSH access if you don’t have an opportunity to connect a monitor to the Pi.
If everything is set up correctly after connecting the Pi to the power, you should be able to connect to it.
raspberrypi> ssh user@pi-ip

Step #2: Getting Started with Wifite
To conduct Wi-Fi attacks, we need a Wi-Fi adapter that supports monitor mode. If you’re not sure which adapter to choose, check the aircrack-ng website’s compatibility page.
After connecting an external Wi-Fi adapter, check if it’s visible in the system:
raspberrypi> iwconfig

You should see at least two network interfaces. After that, we can try to run wifite:
raspberrypi> sudo wifite

Here we can see missing applications. Let’s install them and try running wifite again:
raspberrypi> sudo apt install hcxdumptool -y
raspberrypi> sudo apt install hcxtools -y

Now, we can select the appropriate interface and start attacking.

To learn more about wifite, read the following article.
Summary
In this article, we turned your Raspberry Pi into a portable wireless‑penetration‑testing platform using Kali Linux and Wifite. With a straightforward setup, you now have a ready‑to‑go system that includes everything you need.
The post Hacking with the Raspberry Pi: Cracking Wi‑Fi first appeared on Hackers Arise.
Source: HackersArise
Source Link: https://hackers-arise.com/hacking-with-the-raspberry-pi-cracking-wi%e2%80%91fi/