Skip to content

A little backdoor to take screenshots from (rooted) Android devices

Notifications You must be signed in to change notification settings

sfcoding-school/ScreenStealer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

ScreenStealer

A little backdoor to take screenshots from (rooted) Android devices

Overview

This little "backdoor" is made for a university project. The client that had to be installed on the victim phone (directory ScreenStealer) is made in Java for Android devices, while the server (directory ScreenStealerServer) is written in pure Java. Directly from your PC, you will be able to take a screenshot of the victim phone and easily retrieve it whenever you wish (if the phone is connected to the Internet). The server is suited to interact with multiple phones, so you can monitor more than one device at a time. For security and forensics purposes, timestamps and file hashes are produced along with the screenshot itself.

How it works

The server is composed of two classes: the ScreenStealerService.java class, after established a connection with a PostgreSQL database used to store screenshots informations, permanently runs a ServerSocket that listen to the port 7654. When a connection comes in, the server launchs a new Thread to communicate with the victim phone. The class ClientThread.java waits for the user input to request a screenshot, that will be saved on a new PNG image. Also, useful security informations like the timestamp of the screenshot acquisition and the image file SHA-1 hash are retrieved and stored into the database. The client is composed of various classes: the MainActivity.java class is used to start the other components of the app and, when done, it hide itself from the launcher and terminate. It also asks for root privileges (necessary to take a screenshot), so the user should have the victim phone in his/her hands in order to accept this request and not show the installation to the victim. After this step the program is completely silent. The ConnectionStatusBR.java class is a BroadcastReceiver listening for changes in network availability in order to start/stop communications with the server. The ScreenStealerService.java class implements a Service that only start/stop the communications with the server and is controlled by the BroadcastReceiver. ClientThread.java is the core of the backdoor: it creates the Socket with the server and then, after sending the phone serial number to identify, it waits for its requests through it: when one comes, it takes a screenshot using the system program system/bin/screencap and saves it in a PNG image, then loads it in a Bitmap object, converts it into a byte array and sends it to the server, that will recontruct it, along with the screenshot timestamp and the byte array SHA-1 hash. When done, original PNG image is deleted in order not to leave any sign of usage.

Author

Castellini Jacopo

About

A little backdoor to take screenshots from (rooted) Android devices

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages