How To: Exploit Routers on an Unrooted Android Phone

Exploit Routers on an Unrooted Android Phone

RouterSploit is a powerful exploit framework similar to Metasploit, working to quickly identify and exploit common vulnerabilities in routers. And guess what. It can be run on most Android devices.

I initially covered RouterSploit on Kali Linux and macOS (OS X), but this tutorial will walk you through setting up RouterSploit to work on an unrooted Android phone. This allows you to pwn any vulnerable router you can connect your smartphone to. Doing so takes seconds and shows the power of running Debian Linux tools on the device you carry everywhere.

RouterSploit vs Routers

Routers are our gateway to the world. They route our internet traffic, encrypt our traffic to protect our privacy, and link us to other devices on our local networks and on the World Wide Web.

Most people take this wonderful device for granted, assuming once one is plugged in and providing the internet, the job of setting it up is done. Not knowing the router is actually its own Linux computer, most people simply leave the default password on the router's administrator panel or never bother logging in to install any security updates.

If this sounds like you, you should probably go change the password on your router before reading the rest of this tutorial.

Because routers are neglected, they frequently have commonly known vulnerabilities that can be exploited with the right program. RouterSploit takes advantage of the most common vulnerabilities and default settings, allowing you to quickly assess and exploit a router from any device the supports the Python script.

Debian Linux on Android

In order to run hacking tools on an Android phone, most tools require root access, which is not always easily done or safe. In order to run RouterSploit on the best available phone, an app called GNURootDebian takes the work out of setting up a Debian system, which is what Kali is, on an Android phone.

We've got RouterSploit running on an unrooted Android! Image by SADMIN/Null Byte

Kali helpfully ensures that the majority of our dependencies are installed, so we'll need to install a lot more dependencies on our Android version of Debian to make sure we have everything we need. This method doesn't require root or any weird permissions and can be used to run Linux Python tools from an Android phone. While packet injection isn't supported, frameworks like RouterSploit work and are very effective.

Using an Attack Framework on Android

The Android environment allows for a neat stack of wireless attack technologies to guide your tactics. Within one device, various apps will help you detect, connect to, and defeat any open AP. My "stack" of Android apps to defeat routers is as follows.

  • For detection and identification of wireless networks in an area, Wigle Wifi Wardriving allows you to see, log, and interact with any and all wireless networks transmitting in your area
  • For scanning of networks and identification of likely targets by manufacturer, IP address, and services available, Fing Network Scanner will scan the entirety of any network you are connected to and return detailed information about each connected device.
  • Once a device has been targeted on the network to attack, RouterSploit's Autopwn scanner will throw every available exploit at the target and see which stick, often taking less than a minute on a Samsung Galaxy phone.
Target variables are set. Image by SADMIN/Null Byte

Unrooted Android Burner Phones as Attack Platforms

Using powerful Linux frameworks on Android gives us another way to use something common to hack in plain sight. Even if someone knows what you're doing on your phone isn't normal, it's still a lot less suspicious than pulling out custom hardware to preform a task a generic burner Android phone can accomplish.

It is often said that the best weapon to use during a moment of opportunity is the one you know you'll have with you, and hacking tools are no exception. With the ability to quickly set up an Android phone for offensive use, GNURoot Debian allows anyone to begin auditing router security without any specialized tools. Soon, you will learn to seize control of these precious, internet-giving devices while appearing like you're still looking for Pokémon.

What You Need to Get Started

The beauty of this setup is that you just need an Android phone. I'm using a Samsung Galaxy S8 because carrying around a giant piece of curved screen glass reminds me of how fragile life is, but you can use any Android phone that supports GNURoot Debian.

Step 1: Installing GNURoot Debian

To begin, we'll install GNURoot Debian, which will give us the ability to run Debian Linux on an unrooted Android device. In the Google Play Store, search for GNURoot Debian or follow this link.

You can tell he's a good time because of the goatee. Image by SADMIN/Null Byte

Download the app (at 60 MB, it may take a bit on a slow connection). Once the app is installed, it's time for your first run. On starting for the first time, you'll see the Debian environment being set up as a bunch of text scrolling very quickly across the screen.

More dependencies loading. Image by SADMIN/Null Byte

Let the setup complete for a few minutes, and you should see the following screen when installation is complete.

Debian Linux is running on Android. Image by SADMIN/Null Byte

Once Debian Linux is installed, it's time to start installing dependencies.

Step 2: Installing Dependencies

Debian Linux on Android doesn't come with any special dependencies preinstalled like Kali, so we'll have to start from scratch on a lot of things. In particular, we'll need Python to run our desired module. First, let's update our version of Debian with the following.

apt-get update

Next, let's install some of the tools we'll need to fetch and install RouterSploit:

apt-get install sudo
sudo apt-get install git-core

This will install git and sudo, so you can fetch RouterSploit from GitHub and execute commands as sudo.

sudo apt-get install python-dev python-pip libncurses5-dev git

Step 3: Installing RouterSploit

Once the dependencies are all installed, it's time to grab RouterSploit by typing the following.

git clone https://github.com/reverse-shell/routersploit

Look at all these beautiful dependencies. Image by SADMIN/Null Byte

Step 4: Running RouterSploit for the First Time

Upon installing RouterSploit, you'll want to run it for the first time to check that it's working. Navigate to the home folder by typing the following.

cd routersploit

Then run the Python script with this:

sudo python ./rsf.py

After a few seconds to load, you should see the RouterSploit splash screen. From here, the interface is similar to Metasploit, with the primary commands being:

  • use (module)
  • set (variable)
  • show options (shows module options)
  • check (checks to see if target is vulnerable to exploit)
  • run (runs the exploit module against the target)

The module we'll be running is Autopwn, which we can select by typing the following.

use scanners/autopwn

This will open the Autopwn scanner to begin scanning a target.

Step 5: Setting & Prosecuting a Target

With the Wigle Wifi Wardriving app installed on your Android phone, it's easy to see nearby wireless networks. As soon as you gain access to a Wi-Fi network, either an open network or by gaining the password, you'll be able to scan the network to find all devices on it with Fing or another network scanner.

Once you locate the IP address of your target, it's time to put it into Autopwn. To see the available options on any module, type the following.

show options

In this case, we'll be setting the target IP to that of the router we want to attack. To do so, enter this into the terminal:

set target IP_address_here

Here, we set the target for the Autopwn scan with the IP address of the target.

Replace IP_address_here with the IP address of the router, and hit enter. This should set the target to the router. To double check, type show options again. When you're satisfied with the result, type run and hit enter to begin the module. The module will run, presenting a list of found vulnerabilities at the end of the scan.

Here, we see a scanning run starting against a target.

Step 6: Exploiting Found Vulnerabilities

When Autopwn finds a vulnerability, exploiting it couldn't be easier. After the scan is complete, type use and then copy and paste the path provided by Autopwn to the exploit. For example, running the exploits/cameras/dlink/dcs_9301_9321_auth_bypass would be done by typing:

use exploits/cameras/dlink/dcs_9301_9321_auth_bypass

As before, we can set the target with:

set target IP_address_here

Once the target is set to our desired IP address, you can run check to verify the device is vulnerable. When you're ready to exploit, type run and the exploit module will run.

This device is vulnerable! Image by SADMIN/Null Byte

Warning

Even if the router is left completely undefended and is easy to pwn, that doesn't make it legal. Make sure you have permission to audit the router you're pwning, as the Autopwn scanner makes a lot of noise and may be detected by active security measures.

If you have any questions, ask them here or @sadmin2001 on Twitter or Instagram.

Just updated your iPhone? You'll find new emoji, enhanced security, podcast transcripts, Apple Cash virtual numbers, and other useful features. There are even new additions hidden within Safari. Find out what's new and changed on your iPhone with the iOS 17.4 update.

Cover photo and screenshots by SADMIN/Null Byte

31 Comments

Great tutorial, i wish people would make more tutorials about portable hacking using phones etc. Thanks.

This what I am getting trying to get past step 2

Would this work for other programs/scripts on android?

Yes

nice one tell us how to root a samsung gt-s7562

Great tutorial.
My question is :
Can I install metasploit now in my android phone too ?

*too and yes, you should be able to, if you are ever in doubt, just try it.

Thanks for correcting me and for the reply :)

Could you do this using termux instead?

Hi, I'm a beginner on this site, sorry my english is not very good ,but I'm fascinated by 'white hat hacking'. I'd like to know what the (port) option is, because I tested it with all the best known ports and did not return anything, only on Port 80 http I got vulnerabilities, I believe it is related to vulnerabilities of different services and different protocols, but I would like to hear this from a master, Thanks.

PS: I would love to see a tutorial to take control of cameras exploiting vulnerabilities in the DSC.

PSS: If I know the external ip of my target, can I exploit its vulnerabilities using another network? I have not had time to test this yet.

so I followd the instructions perfectly but when it got to the oint were I had to type in sudo pthon ./rsf.py it said no modules found and didn't load the thing. I tried using commands like use and show options but it would sa command not fond

Nice tutorial, thank you!
I'm a newbie trying to crack my own tablet with my phone and PC for like some hours now...

I found some possible exploits with your method, but don't know what to do with them now. Is there any chance I could damage my devices if I just try some of those out (without knowing what I'm actually doing...)?

Always a chance you could damage the config or software on your router if it was susceptible to one of the found exploits.

This script (Routersploit) mainly deals with router exploits so it does not quite pertain to cracking other devices.

Can we install other kali tools in this app??

I reckon some would as long as their dependencies were installed. A lot of packages will be missing though eg not even whois is installed or dig

I got Wifite to nearly work although I think it needs an external wireless adapter (not sure if the phone supported Monitor mode). Try it out on the command line to see if you can get it to work: sudo apt-get install wifite

You seem to have missed a few steps in the guide...
Namely everything between apt-get update and running the script itself. Might want to go back and reread the steps.

And running:
/routersploit# python rsf.py
?

Try python rsf.py that help me

Is it works with a static exploits list? I'm trying to access my home router. It's a Pace c6500 and this vendor isn't on the list. All the steps worked good but I didn't found my router on exploits list... Do you have other tutorial that works with any routers? Like bruteforce to broke admin passwd or something like this? Tks

doesn't work i cant get past the sudo python ./rsf.py like others, any update on this

Termux is better than gnuroot and u can do hacking via termux without root

at step 4 typing (sudo python ./rsf.py) nothing happens insted it gives back error command (sudo:python: command not found)

help pls

I had done all the previous steps correctly but now it's displaying this message..
Please help!

Run
Apt-get install python2
Then
Python3 rsf.py

Might be time for an update/refresh for this article.
GNURootDebian is broken and redirects to UserLand.

Step 4 falls apart pretty quickly: RouterSploit now only supports python3 so the instructions guide you to install the incorrect version. Once that is fixed, the RouterSpolit script pukes on pip dependencies. I had enough problems trying to resolve "future" for pip that I gave up completely.

I think a lot of people would appreciate a refresh of the article with currently-working instructions, if that is even possible.

73

After running the routersploit it works but then when I use try to use the "use scanners/autopwn" it exits and stop the routersploit program..

Any help would be appreciated

Share Your Thoughts

  • Hot
  • Latest