Add Index Page with Start Button Redirecting to Vulnerable CMS Setup
apt install php -y<?php
$ipAddress = exec("/sbin/ifconfig enp0s3 | grep 'inet ' | awk '{print $2}'");
?>"http://<?php echo $ipAddress; ?>:8088" with port
"http://<?php echo $ipAddress; ?>" without port<VirtualHost *:80>
ServerAdmin webmaster@your_website.com
ServerName your_website.com
DocumentRoot /var/www/your_website/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/your_website/public_html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>PreviousPython3 HTTP Server Running on Port 9000 (Handling GET Requests)NextGenerate random root flags
Last updated