Android remote administration tool
Remote adminitration tool for android
git clone https://github.com/Tomiwa-Ot/moukthar.git
/var/www/html/ and install dependenciesmv moukthar/Server/* /var/www/html/
cd /var/www/html/c2-server
composer install
cd /var/www/html/web-socket/
composer install
cd /var/www
chown -R www-data:www-data .
chmod -R 777 .
The default credentials are username: android and password: androidCREATE USER 'android'@'localhost' IDENTIFIED BY 'your-password';
GRANT ALL PRIVILEGES ON *.* TO 'android'@'localhost';
FLUSH PRIVILEGES;
c2-server/.env and web-socket/.envdatabase.sqlphp 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
/etc/apache2/sites-available/000-default.conf
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/c2-server
DirectoryIndex app.php
Options -Indexes
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
/etc/apache2/apache2.conf Comment this section
#
# Options FollowSymLinks
# AllowOverride None
# Require all denied
#
Add this
Options -Indexes
DirectoryIndex app.php
AllowOverride All
Require all granted
/etc/php/*.*/apache2/php.ini; Increase size to permit large file uploads from client
upload_max_filesize = 128M
; Set post_max_size to upload_max_filesize + 1
post_max_size = 129M
c2-server/src/View/home.php and c2-server/src/View/features/files.phpconst ws = new WebSocket('ws://IP_ADDRESS:8080');
sudo a2enmod rewrite && sudo service apache2 restart
functionality/Utils.javapublic static final String C2_SERVER = "http://localhost";
public static final String WEB_SOCKET_SERVER = "ws://localhost:8080";
No open issues yet, or sync has not completed.